blob: 0e17d7507843f2ee73e9adbaec2ca4eea7e4983f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: AquaGatekeeper
# Date created: 2 November 2003
# Whom: Eugene Grosbein <eugen@grosbein.pp.ru>
#
# $FreeBSD$
#
PORTNAME= AquaGatekeeper
PORTVERSION= 1.22
PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= ftp://ftp.aqua.comptek.ru/pub/GateKeeper/ \
ftp://www.kuzbass.ru/pub/FreeBSD/ports/distfiles/
EXTRACT_SUFX= .tgz
MAINTAINER= eugen@grosbein.pp.ru
COMMENT= Aqua H323 Gatekeeper and proxy
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
ONLY_FOR_ARCHS= amd64 i386
MD5_FILE= ${MASTERDIR}/distinfo.${ARCH}
RESTRICTED= No commercial redistribution
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
IS_INTERACTIVE= yes
.endif
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/AquaGatekeeper ${PREFIX}/sbin/
@${INSTALL_SCRIPT} ${FILESDIR}/agk.sh.sample ${PREFIX}/etc/rc.d/
@${INSTALL_DATA} ${WRKSRC}/Config/AquaGatekeeper.cfg ${PREFIX}/etc/AquaGatekeeper.cfg.sample
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${WRKSRC}/Config/Example.cfg ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@for docfile in ${WRKSRC}/Help/*; \
do ${INSTALL_MAN} $$docfile ${DOCSDIR}; \
done
@${MKDIR} ${DOCSDIR}/Rus
@for docfile in ${WRKSRC}/Help.Rus/*; \
do ${INSTALL_MAN} $$docfile ${DOCSDIR}/Rus; \
done
.endif
post-install:
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${SED} "s'%%PREFIX%%'${PREFIX}'" < pkg-message
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 400000
BROKEN= "Supported only on 4.x systems and later"
.elif ${OSVERSION} >= 500000 && ${ARCH} == "i386"
LIB_DEPENDS= c.4:${PORTSDIR}/misc/compat4x
.elif ${OSVERSION} >= 600000 && ${ARCH} == "amd64"
LIB_DEPENDS= c.5:${PORTSDIR}/misc/compat5x
.endif
.if ${ARCH} == "amd64"
DISTNAME= AquaGatekeeper122FreeBSDamd64Build131
.else
DISTNAME= AquaGatekeeper122FreeBSDBuild131
.endif
.include <bsd.port.post.mk>
|