summaryrefslogtreecommitdiff
path: root/net/irrd/Makefile
diff options
context:
space:
mode:
authorfredb <fredb@pkgsrc.org>2000-09-13 15:14:40 +0000
committerfredb <fredb@pkgsrc.org>2000-09-13 15:14:40 +0000
commit56d5db9c07556c3855113f16c3ab98b9ae1866e0 (patch)
treecbe039161aabdfb843a18ba4fe3e35ba468cd6ca /net/irrd/Makefile
parent52dd4865e0917290aaebf225daf1d85831468d18 (diff)
downloadpkgsrc-56d5db9c07556c3855113f16c3ab98b9ae1866e0.tar.gz
Fix some configure goofiness:
- - Don't pull in /sys/sys/include just for ipv6 support! - - Package wants "bison"; give it bison. - - Don't pull in "libpthreads" just becuase it exists on the build system. - - Likewise for "pgp", unless IRRD_USE_PGP is specified. Also, - - Rearrange package Makefile, so that only that which is "prefs" goes after ".include ../../mk/bsd.prefs.mk". TODO: - - Make the package use pgp5 or pgp2 by default?
Diffstat (limited to 'net/irrd/Makefile')
-rw-r--r--net/irrd/Makefile25
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"