blob: 364151f714b7d78245697e404cefc44dc276231b (
plain)
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
|
# $NetBSD: Makefile,v 1.24 2006/04/22 09:22:12 rillig Exp $
DISTNAME= gated-3-5-11
PKGNAME= gated-3.5.11
PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= http://ftp.rge.com/pub/networking/gated/ \
http://www.zcu.cz/ftp/pub/security/merit/gated/ \
http://www.funet.fi/pub/unix/tcpip/gated/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.gated.org/
COMMENT= Routing protocol daemon
NOT_FOR_PLATFORM= Interix-*-* # no userland routing table support
RESTRICTED= Required license from Merit
NO_SRC_ON_FTP= ${RESTRICTED}
NO_SRC_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_FTP= ${RESTRICTED}
NO_BIN_ON_CDROM= ${RESTRICTED}
RCD_SCRIPTS= gated
RCD_SCRIPT_SRC.gated= ${FILESDIR}/gated
BUILD_TARGET= gated
post-extract:
@${SED} -e 's#@PREFIX@#${PREFIX}#' <${FILESDIR}/configuration \
>${WRKSRC}/src/configs/netbsd
do-configure:
cd ${WRKSRC}/src; \
obj=obj.`util/archtype`; \
${MKDIR} $$obj; \
${CP} configs/${LOWER_OPSYS} $$obj/Config; \
${RM} -f Config
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gated
cd ${WRKSRC}/doc && ${PAX} -rw -pe . ${PREFIX}/share/doc/gated
${CHOWN} -R ${SHAREOWN} ${PREFIX}/share/doc/gated
${CHGRP} -R ${SHAREGRP} ${PREFIX}/share/doc/gated
.include "../../mk/bsd.pkg.mk"
|