52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.34 2009/10/18 20:18:54 zafer Exp $
|
|
|
|
DISTNAME= gated-3-5-11
|
|
PKGNAME= gated-3.5.11
|
|
PKGREVISION= 3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.nic.funet.fi/pub/unix/tcpip/gated/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gated.org/
|
|
COMMENT= Routing protocol daemon
|
|
LICENSE= gated-license
|
|
|
|
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}
|
|
|
|
NOT_FOR_PLATFORM= Interix-*-* # no userland routing table support
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
RCD_SCRIPTS= gated
|
|
RCD_SCRIPT_SRC.gated= ${FILESDIR}/gated
|
|
|
|
BUILD_TARGET= gated
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man8 sbin share/doc/gated
|
|
|
|
post-extract:
|
|
@${SED} -e 's#@PREFIX@#${PREFIX}#' <${FILESDIR}/configuration \
|
|
>${WRKSRC}/src/configs/netbsd
|
|
@${SED} -e 's#@PREFIX@#${PREFIX}#' <${FILESDIR}/configuration \
|
|
>${WRKSRC}/src/configs/dragonfly
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}/src; \
|
|
obj=obj.`util/archtype`; \
|
|
${MKDIR} $$obj; \
|
|
${CP} configs/${LOWER_OPSYS} $$obj/Config; \
|
|
${RM} -f Config
|
|
|
|
post-install:
|
|
${CHMOD} -w ${PREFIX}/bin/gdc ${PREFIX}/bin/ospf_monitor
|
|
cd ${WRKSRC}/doc && pax -rw . ${PREFIX}/share/doc/gated
|
|
${CHOWN} -R ${SHAREOWN} ${PREFIX}/share/doc/gated
|
|
${CHGRP} -R ${SHAREGRP} ${PREFIX}/share/doc/gated
|
|
${FIND} ${PREFIX}/share/doc/gated -type f -print | \
|
|
${XARGS} ${CHMOD} -x
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|