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 /mail | |
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
Diffstat (limited to 'mail')
-rw-r--r-- | mail/cyrus/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
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/-/' |