diff options
author | agc <agc@pkgsrc.org> | 1999-08-18 08:46:53 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-08-18 08:46:53 +0000 |
commit | f32d265e28922dd76fe0c6e90f6d08ffd48b86de (patch) | |
tree | 1f968fa7f164ddc5b4fb7d19bf3d67c5dfdfd213 | |
parent | 1d08b0cf69a471288b994c6d198e5a48ae7b2e28 (diff) | |
download | pkgsrc-f32d265e28922dd76fe0c6e90f6d08ffd48b86de.tar.gz |
Record build options in the BuildInfo file via BUILD_DEFS. These can be
displayed using the -B option to pkg_info(1).
-rw-r--r-- | mail/majordomo/Makefile | 4 | ||||
-rw-r--r-- | mail/mutt/Makefile | 4 | ||||
-rw-r--r-- | mail/nmh/Makefile | 4 | ||||
-rw-r--r-- | www/communicator/Makefile | 5 | ||||
-rw-r--r-- | www/navigator/Makefile | 5 |
5 files changed, 17 insertions, 5 deletions
diff --git a/mail/majordomo/Makefile b/mail/majordomo/Makefile index 446e16d87bb..b779dbff75c 100644 --- a/mail/majordomo/Makefile +++ b/mail/majordomo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1999/06/08 18:26:02 bad Exp $ +# $NetBSD: Makefile,v 1.5 1999/08/18 08:46:53 agc Exp $ DISTNAME= majordomo-1.94.4 CATEGORIES= mail @@ -38,6 +38,8 @@ EXDIRS= archives archives/example-l digests digests/example-l-digest lists EXFILES= example-l.passwd example-l.info EXLISTS= example-l example-l-digest +BUILD_DEFS+= MAJORDOMO_USER MAJORDOMO_GROUP MAJORDOMO_TMPDIR + require-uid: ${_PKG_SILENT}${_PKG_DEBUG} \ if finger ${MAJORDOMO_USER} 2>&1 | ${GREP} "Login: ${MAJORDOMO_USER}" >/dev/null && ${GREP} -s "^${MAJORDOMO_GROUP}\:" /etc/group 2>/dev/null 1>&2 ; \ diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index e97c831751f..02652cda4ff 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 1999/08/18 00:22:33 tron Exp $ +# $NetBSD: Makefile,v 1.27 1999/08/18 08:49:23 agc Exp $ DISTNAME= mutt-${MUTT_VERSION} CATEGORIES= mail @@ -22,6 +22,8 @@ CONFIGURE_ARGS+= --with-curses=${LOCALBASE} --with-exec-shell=/bin/ksh \ --enable-pop --enable-imap LDFLAGS+= -s +BUILD_DEFS+= MUTT_INTERNATIONAL MUTT_VERSION + .include "../../mk/bsd.pkg.mk" MUTT_BASE_VERSION= 0.95.7 diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index 28e050b4dfc..c4ea1bd3961 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 1999/05/03 23:39:22 tv Exp $ +# $NetBSD: Makefile,v 1.27 1999/08/18 08:53:33 agc Exp $ # FreeBSD Id: Makefile,v 1.2 1997/08/04 06:51:28 markm Exp # @@ -42,6 +42,8 @@ RESTRICTED= uses Kerberos encryption code DOCDIR= share/doc/nmh +BUILD_DEFS+= USE_KERBEROS4 NMH_MTA NMH_EDITOR NMH_PAGER + # Since we patch the autoconf files as well as their outputs, avoid attempt # to regenerate header input files with 'autoheader' by Makefile. post-patch: diff --git a/www/communicator/Makefile b/www/communicator/Makefile index ce117bd7b47..fc2b3181c34 100644 --- a/www/communicator/Makefile +++ b/www/communicator/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 1999/08/13 21:24:12 abs Exp $ +# $NetBSD: Makefile,v 1.19 1999/08/18 08:56:12 agc Exp $ # # Every effort has been made to keep the communicator and navigator # Makefiles as similar as possible. @@ -7,6 +7,9 @@ BINNAME= communicator NS_VERS= 4.61 NS_VERS_SHORT= 461 NS_ENCRYPTION?= export + +BUILD_DEFS+= NS_ENCRYPTION + # .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" && ${MACHINE_ARCH} == "sparc" diff --git a/www/navigator/Makefile b/www/navigator/Makefile index 1522c3696f5..fd9d2948a47 100644 --- a/www/navigator/Makefile +++ b/www/navigator/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 1999/08/13 21:24:11 abs Exp $ +# $NetBSD: Makefile,v 1.18 1999/08/18 08:56:13 agc Exp $ # # Every effort has been made to keep the communicator and navigator # Makefiles as similar as possible. @@ -7,6 +7,9 @@ BINNAME= navigator NS_VERS= 4.61 NS_VERS_SHORT= 461 NS_ENCRYPTION?= export + +BUILD_DEFS+= NS_ENCRYPTION + # .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" && ${MACHINE_ARCH} == "sparc" |