diff options
author | agc <agc@pkgsrc.org> | 2001-09-09 20:36:07 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-09-09 20:36:07 +0000 |
commit | a16fc84f19dd8bf3201242f9e04334979fbebb2f (patch) | |
tree | 3fd1a2f535365e26fdc0e751d53fad480118cea2 /mail | |
parent | 9a53280dd16ed46cdf17cd6040cbfa62bcc8319a (diff) | |
download | pkgsrc-a16fc84f19dd8bf3201242f9e04334979fbebb2f.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 'mail')
-rw-r--r-- | mail/drac/Makefile | 5 | ||||
-rw-r--r-- | mail/fromto/Makefile | 4 | ||||
-rw-r--r-- | mail/imap-uw-utils/Makefile | 4 | ||||
-rw-r--r-- | mail/mailserv/Makefile | 4 | ||||
-rw-r--r-- | mail/mush/Makefile | 4 |
5 files changed, 11 insertions, 10 deletions
diff --git a/mail/drac/Makefile b/mail/drac/Makefile index a1018c833a8..0ae6c6efbeb 100644 --- a/mail/drac/Makefile +++ b/mail/drac/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2001/02/17 18:24:43 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2001/09/09 20:36:33 agc Exp $ # DISTNAME= drac PKGNAME= drac-1.10 -NO_WRKSUBDIR= yes CATEGORIES= mail MASTER_SITES= ftp://ftp.cc.umanitoba.ca/src/ EXTRACT_SUFX= .tar.Z @@ -12,4 +11,6 @@ MAINTAINER= groo@netbsd.org HOMEPAGE= http://mail.cc.umanitoba.ca/drac/ COMMENT= Dynamic Relay Authorization Control +WRKSRC= ${WRKDIR} + .include "../../mk/bsd.pkg.mk" diff --git a/mail/fromto/Makefile b/mail/fromto/Makefile index fd3764ee2f2..3db1a491810 100644 --- a/mail/fromto/Makefile +++ b/mail/fromto/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/06/04 21:30:51 jtb Exp $ +# $NetBSD: Makefile,v 1.4 2001/09/09 20:36:33 agc Exp $ # DISTNAME= fromto-1.5 @@ -12,7 +12,7 @@ COMMENT= Sendmail logfile viewer RESTRICTED= "Redistribution allowed for non-commercial purposes only" USE_PERL5= yes -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} do-extract: ${MKDIR} ${WRKSRC} diff --git a/mail/imap-uw-utils/Makefile b/mail/imap-uw-utils/Makefile index 3719fad78ea..3bd9678d05c 100644 --- a/mail/imap-uw-utils/Makefile +++ b/mail/imap-uw-utils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/06/22 03:52:25 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2001/09/09 20:36:33 agc Exp $ DISTNAME= imap-utils PKGNAME= imap-uw-utils-20001220 @@ -11,7 +11,7 @@ HOMEPAGE= http://www.washington.edu/imap/ COMMENT= UW IMAP mailbox utilities DIST_SUBDIR= ${PKGNAME} -NO_WRKSUBDIR= # defined +WRKSRC= ${WRKDIR} USE_BUILDLINK_ONLY= # defined SRCDIRS= chkmail dmail icat ifrom imapcopy imapxfer \ diff --git a/mail/mailserv/Makefile b/mail/mailserv/Makefile index 367160b9a39..03b35511c68 100644 --- a/mail/mailserv/Makefile +++ b/mail/mailserv/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2001/08/01 14:09:38 rh Exp $ +# $NetBSD: Makefile,v 1.3 2001/09/09 20:36:34 agc Exp $ # DISTNAME= mailserv PKGNAME= ${DISTNAME}-3.27 -NO_WRKSUBDIR= YES CATEGORIES= mail MASTER_SITES= http://www.csicop.org/~fitz/www/mailserv/ @@ -13,6 +12,7 @@ COMMENT= WWW interface to several types of mailing list servers USE_PERL5= YES NO_BUILD= YES +WRKSRC= ${WRKDIR} do-configure: .for file in mailserv cgi-lib.pl diff --git a/mail/mush/Makefile b/mail/mush/Makefile index a38a68f1dca..ade8b5b8f36 100644 --- a/mail/mush/Makefile +++ b/mail/mush/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/06/04 22:05:19 jtb Exp $ +# $NetBSD: Makefile,v 1.9 2001/09/09 20:36:34 agc Exp $ DISTNAME= mush-7.2.5 PKGNAME= mush-7.2.6.b4.pl1 @@ -23,7 +23,7 @@ LICENSE= mush-license DIST_SUBDIR= mush -NO_WRKSUBDIR= yes +WRKSRC= ${WRKDIR} pre-configure: ${SED} -e 's:__PREFIX:'${PREFIX}':g'< ${WRKSRC}/config.h-dist > ${WRKSRC}/config.h |