diff options
author | agc <agc@pkgsrc.org> | 1999-08-18 09:16:40 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-08-18 09:16:40 +0000 |
commit | 1ea71c2b8f4603e859b8b3442853e8f6100f07bd (patch) | |
tree | a0d4840f1966b4a8f429d408a4b112caee5cf0f1 | |
parent | aa3f19e7cc8fe615ee523290430de221d8b7bb56 (diff) | |
download | pkgsrc-1ea71c2b8f4603e859b8b3442853e8f6100f07bd.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 WINDOWMAKER_OPTIONS and WINDOWMAKER_THEMES, and include the preferences
file before defining the variable.
-rw-r--r-- | x11/windowmaker/Makefile | 4 | ||||
-rw-r--r-- | x11/wmthemes/Makefile | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/x11/windowmaker/Makefile b/x11/windowmaker/Makefile index 5e25c139c4c..a08cabc8d7f 100644 --- a/x11/windowmaker/Makefile +++ b/x11/windowmaker/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 1999/06/21 07:38:29 tron Exp $ +# $NetBSD: Makefile,v 1.33 1999/08/18 09:16:40 agc Exp $ DISTNAME= WindowMaker-0.60.0 PKGNAME= windowmaker-0.60.0 @@ -38,6 +38,8 @@ WINDOWMAKER_OPTIONS?= gnome kde PLIST_SRC= ${WRKDIR}/.PLIST_SRC_WM +BUILD_DEFS+= WINDOWMAKER_OPTIONS + .include "../../mk/bsd.prefs.mk" .for OPTION in ${WINDOWMAKER_OPTIONS} diff --git a/x11/wmthemes/Makefile b/x11/wmthemes/Makefile index c8f8139bc07..56676215951 100644 --- a/x11/wmthemes/Makefile +++ b/x11/wmthemes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 1999/06/21 04:53:15 jlam Exp $ +# $NetBSD: Makefile,v 1.15 1999/08/18 09:16:40 agc Exp $ DISTNAME= wmthemes-0.60 CATEGORIES= x11 @@ -18,12 +18,16 @@ NO_CHECKSUM= yes NO_PATCH= yes NO_WRKSUBDIR= yes -WINDOWMAKER_THEMES?= FreeBSD-theme - PLIST_SRC= ${WRKDIR}/PLIST THEME_SUBDIRS= Backgrounds IconSets Icons Pixmaps Sounds Styles Themes WM_DATADIR= share/WindowMaker +BUILD_DEFS+= WINDOWMAKER_THEMES + +.include "../../mk/bsd.prefs.mk" + +WINDOWMAKER_THEMES?= FreeBSD-theme + do-install: @${RM} -f ${PLIST_SRC} @${TOUCH} ${PLIST_SRC} |