diff options
author | agc <agc@pkgsrc.org> | 1999-08-18 09:28:01 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-08-18 09:28:01 +0000 |
commit | 69696f9b820cbbd6bfdd1bb9eada3b8288d74a55 (patch) | |
tree | 6e1530a1eb6f1886124756b99897cb65983c53b2 | |
parent | 0b7af58b917dddc6b032b67839535374b8264b49 (diff) | |
download | pkgsrc-69696f9b820cbbd6bfdd1bb9eada3b8288d74a55.tar.gz |
Record build options in the BuildInfo file via BUILD_DEFS. These can be
displayed using the -B option to pkg_info(1).
Add USE_KERBEROS4 to BUILD_DEFS
-rw-r--r-- | databases/openldap/Makefile | 5 | ||||
-rw-r--r-- | mail/cyrus/Makefile | 10 | ||||
-rw-r--r-- | net/radius/Makefile | 4 | ||||
-rw-r--r-- | net/zephyr/Makefile | 4 |
4 files changed, 17 insertions, 6 deletions
diff --git a/databases/openldap/Makefile b/databases/openldap/Makefile index 6cababc84b3..db01771de63 100644 --- a/databases/openldap/Makefile +++ b/databases/openldap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1999/05/18 21:27:01 hwr Exp $ +# $NetBSD: Makefile,v 1.10 1999/08/18 09:28:01 agc Exp $ # DISTNAME= openldap-1.2.1 @@ -23,7 +23,10 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-dns --enable-cldap \ --enable-wrappers --enable-passwd --enable-shell +BUILD_DEFS+= USE_KERBEROS4 + .include "../../mk/bsd.prefs.mk" + .if !defined(USE_KERBEROS4) CONFIGURE_ARGS+=--without-kerberos .else diff --git a/mail/cyrus/Makefile b/mail/cyrus/Makefile index 22cdaeda60c..7ad64082c9e 100644 --- a/mail/cyrus/Makefile +++ b/mail/cyrus/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 1999/06/12 03:01:44 kim Exp $ +# $NetBSD: Makefile,v 1.6 1999/08/18 09:28:02 agc Exp $ DISTNAME= cyrus-imapd-v1.5.14 CATEGORIES= mail @@ -24,11 +24,15 @@ CONFIGURE_ARGS+= --with-statedir=/var/run CONFIGURE_ARGS+= --includedir=${LOCALBASE}/include/tcl8.0 CONFIGURE_ARGS+= --enable-netscapehack -.include "../../mk/bsd.pkg.mk" +BUILD_DEFS+= USE_KERBEROS4 -PKGNAME!= ${ECHO} "${DISTNAME}" | ${SED} -e 's/-imapd-v/-/' +.include "../../mk/bsd.prefs.mk" .if defined(USE_KERBEROS4) CONFIGURE_ARGS+= --with-login=krb RESTRICTED= uses Kerberos encryption code .endif + +.include "../../mk/bsd.pkg.mk" + +PKGNAME!= ${ECHO} "${DISTNAME}" | ${SED} -e 's/-imapd-v/-/' diff --git a/net/radius/Makefile b/net/radius/Makefile index a99123f07fc..f66f90b1bd3 100644 --- a/net/radius/Makefile +++ b/net/radius/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 1999/07/23 21:39:41 tron Exp $ +# $NetBSD: Makefile,v 1.12 1999/08/18 09:28:02 agc Exp $ # # Tempted to install another radius package? # @@ -37,6 +37,8 @@ MAKE_ENV+= RADLIBS="${RADLIBS} -lskey" LIBS=-lcrypt \ #RESTRICTED= uses Kerberos encryption code #.endif +BUILD_DEFS+= USE_KERBEROS4 + .include "../../mk/bsd.prefs.mk" pre-patch: diff --git a/net/zephyr/Makefile b/net/zephyr/Makefile index adc1dda9883..498b89aaef0 100644 --- a/net/zephyr/Makefile +++ b/net/zephyr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 1999/05/03 23:39:23 tv Exp $ +# $NetBSD: Makefile,v 1.16 1999/08/18 09:28:02 agc Exp $ # DISTNAME= zephyr-2.0.4 @@ -8,6 +8,8 @@ MASTER_SITES= ftp://athena-dist.mit.edu/pub/ATHENA/zephyr/dist/ MAINTAINER= mycroft@netbsd.org HOMEPAGE= http://web.mit.edu/olh/Zephyr/index.html +BUILD_DEFS+= USE_KERBEROS4 + .include "../../mk/bsd.prefs.mk" .if defined(USE_KERBEROS4) |