diff options
author | agc <agc> | 2001-09-09 20:36:07 +0000 |
---|---|---|
committer | agc <agc> | 2001-09-09 20:36:07 +0000 |
commit | 10ab8c4a3a9386cf6af1611fcb6fed36f0c7837e (patch) | |
tree | 3fd1a2f535365e26fdc0e751d53fad480118cea2 /misc | |
parent | bcd8cfcceceb6d12e34ad9af489c74c7e1e63619 (diff) | |
download | pkgsrc-10ab8c4a3a9386cf6af1611fcb6fed36f0c7837e.tar.gz |
Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:
WRKSRC= ${WRKDIR}
This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).
Diffstat (limited to 'misc')
-rw-r--r-- | misc/9menu/Makefile | 4 | ||||
-rw-r--r-- | misc/astrolog/Makefile | 4 | ||||
-rw-r--r-- | misc/fep/Makefile | 4 | ||||
-rw-r--r-- | misc/ibutton-pdkit/Makefile | 4 | ||||
-rw-r--r-- | misc/root/Makefile | 5 |
5 files changed, 11 insertions, 10 deletions
diff --git a/misc/9menu/Makefile b/misc/9menu/Makefile index 20d192adf68..d25cc59db39 100644 --- a/misc/9menu/Makefile +++ b/misc/9menu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/02/17 18:08:49 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2001/09/09 20:36:36 agc Exp $ # FreeBSD Id: Makefile,v 1.4 1997/09/08 12:23:55 tg Exp # @@ -15,7 +15,7 @@ COMMENT= Simple menu patterened after plan9 MANCOMPRESSED= yes .endif -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} EXTRACT_CMD= ${GZCAT} ${DOWNLOADED_DISTFILE} | ${SH} USE_X11= yes diff --git a/misc/astrolog/Makefile b/misc/astrolog/Makefile index ab3a8b6a231..f5db0f160ae 100644 --- a/misc/astrolog/Makefile +++ b/misc/astrolog/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2001/06/08 00:41:35 jtb Exp $ +# $NetBSD: Makefile,v 1.16 2001/09/09 20:36:36 agc Exp $ # FreeBSD Id: Makefile,v 1.12 1997/08/10 22:31:15 fenner Exp # @@ -26,7 +26,7 @@ USE_X11BASE= yes EXTRACT_CMD= ${SH} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}.shr DIST_SUBDIR= astrolog ALL_TARGET= astrolog -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} do-install: @${INSTALL_DATA_DIR} ${PREFIX}/lib/astrolog diff --git a/misc/fep/Makefile b/misc/fep/Makefile index cc54dfda13e..393304cb0a1 100644 --- a/misc/fep/Makefile +++ b/misc/fep/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/06/08 01:16:45 jtb Exp $ +# $NetBSD: Makefile,v 1.8 2001/09/09 20:36:36 agc Exp $ # FreeBSD Id: Makefile,v 1.2 1996/11/11 05:49:31 obrien Exp # @@ -15,7 +15,7 @@ RESTRICTED= Do not redistribute for a fee NO_SRC_ON_CDROM=${RESTRICTED} NO_BIN_ON_CDROM=${RESTRICTED} -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} MANCOMPRESSED= yes .include "../../mk/bsd.pkg.mk" diff --git a/misc/ibutton-pdkit/Makefile b/misc/ibutton-pdkit/Makefile index 8d0fb4d5d26..0555f7c52f7 100644 --- a/misc/ibutton-pdkit/Makefile +++ b/misc/ibutton-pdkit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/02/17 18:09:07 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2001/09/09 20:36:36 agc Exp $ # DISTNAME= ulinuxgnu @@ -11,7 +11,7 @@ MAINTAINER= damon@brodiefamily.org HOMEPAGE= http://ibutton.com COMMENT= 1-Wire Public Domain Kit Version 2.00 -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} MAKEFILE= makefile SCRIPTS_ENV+= SED=${SED} diff --git a/misc/root/Makefile b/misc/root/Makefile index 4c98ba3571b..cea14c2054a 100644 --- a/misc/root/Makefile +++ b/misc/root/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2001/03/27 03:20:08 hubertf Exp $ +# $NetBSD: Makefile,v 1.8 2001/09/09 20:36:37 agc Exp $ DISTNAME= root_v2.23.08.source PKGNAME= root-2.23 -NO_WRKSUBDIR= yes CATEGORIES= misc MASTER_SITES= ftp://root.cern.ch/root/ @@ -18,6 +17,8 @@ USE_XPM= YES ALL_TARGET= netbsd MAKE_ENV= LD_LIBRARY_PATH=${WRKDIR}/lib ROOTSYS=${WRKDIR} +WRKSRC= ${WRKDIR} + do-configure: ${CP} ${FILESDIR}/Makefile.netbsd ${WRKDIR}/src ${INSTALL_PROGRAM_DIR} ${WRKDIR}/bin |