diff options
Diffstat (limited to 'net/irrd/Makefile')
-rw-r--r-- | net/irrd/Makefile | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/net/irrd/Makefile b/net/irrd/Makefile index 94f35e7d6b4..5d83f95e672 100644 --- a/net/irrd/Makefile +++ b/net/irrd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2000/05/24 23:29:48 fredb Exp $ +# $NetBSD: Makefile,v 1.5 2000/09/13 15:14:40 fredb Exp $ # DISTNAME= irrd-1.5-beta-Sept-24-1999 @@ -10,6 +10,17 @@ MAINTAINER= kim@tac.nyc.ny.us HOMEPAGE= http://www.irrd.net/ BUILD_DEPENDS+= autoreconf:../../devel/autoconf +BUILD_DEPENDS+= bison:../../devel/bison + +WRKSRC= ${WRKDIR}/irrd-1.5 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --without-gdbm --with-db1 +CONFIGURE_ARGS+= --disable-thread --disable-wall +CONFIGURE_ENV+= YACC=bison + +pre-configure: + @(cd ${WRKSRC} && autoreconf) .include "../../mk/bsd.prefs.mk" @@ -19,8 +30,7 @@ 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 +CONFIGURE_ARGS+= --without-pgp .endif .endif @@ -28,13 +38,4 @@ DEPENDS+= pgp-2.*:../../security/pgp2 CONFIGURE_ARGS+= --disable-ipv6 .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" |