diff options
Diffstat (limited to 'net/irrd/Makefile')
-rw-r--r-- | net/irrd/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net/irrd/Makefile b/net/irrd/Makefile new file mode 100644 index 00000000000..e9a9e23e363 --- /dev/null +++ b/net/irrd/Makefile @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/10/28 19:50:18 kim Exp $ +# + +DISTNAME= irrd-1.5-beta-Sept-24-1999 +PKGNAME= irrd-1.5-beta-19990924 +CATEGORIES= net +MASTER_SITES= http://www.merit.edu/radb/irrd/source/ + +MAINTAINER= kim@tac.nyc.ny.us +HOMEPAGE= http://www.irrd.net/ + +BUILD_DEPENDS= autoreconf:../../devel/autoconf + +.include "../../mk/bsd.prefs.mk" + +.ifdef IRRD_USE_PGP +.if ${IRRD_USE_PGP} == 5 +DEPENDS+= pgp-5.*:../../security/pgp5 +.elif ${IRRD_USE_PGP} == 2 +DEPENDS+= pgp-2.*:../../security/pgp2 +#.else +# IRRd will be built with pgpv or pgp if found! +#CONFIGURE_ARGS+=--without-pgp +.endif +.endif + +WRKSRC= ${WRKDIR}/irrd-1.5 + +HAS_CONFIGURE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-db1 + +pre-configure: + @(cd ${WRKSRC} && autoreconf) + +.include "../../mk/bsd.pkg.mk" |