diff options
author | wiz <wiz> | 2001-01-29 11:34:21 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-01-29 11:34:21 +0000 |
commit | 6e5db71f33d6f19d9bc2ccef08527c4fd58ea7ba (patch) | |
tree | 86f14acd24842161759a420487862022044c2b4b /security/smtpd/Makefile | |
parent | e79bc93dd230b17193ddcfca298d9cf5d3cf7205 (diff) | |
download | pkgsrc-6e5db71f33d6f19d9bc2ccef08527c4fd58ea7ba.tar.gz |
Add automatic ${VARIABLE} handling for MESSAGE files.
Convert most MESSAGE files to new syntax (${VARIABLE} gets replaced,
not @VARIABLE@, nor @@VARIABLE@@).
By default, substitutions are done for LOCALBASE, PKGNAME, PREFIX,
X11BASE, X11PREFIX; additional patterns can be added via MESSAGE_SUBST.
Clean up some packages while I'm there; add RCS tags to most MESSAGEs.
Remove some uninteresting MESSAGEs.
Diffstat (limited to 'security/smtpd/Makefile')
-rw-r--r-- | security/smtpd/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/security/smtpd/Makefile b/security/smtpd/Makefile index 2d34c46d6fe..a84f4a8ddd9 100644 --- a/security/smtpd/Makefile +++ b/security/smtpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/09/03 13:22:31 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2001/01/29 11:34:41 wiz Exp $ # DISTNAME= smtpd-2.0 @@ -11,7 +11,6 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.obtuse.com/smtpd.html SPOOL= /var/spool/smtpd -MESSAGE_FILE= ${WRKDIR}/MESSAGE pre-install: -${MKDIR} ${SPOOL}/etc @@ -20,8 +19,4 @@ pre-install: ${CHMOD} -R g=,o= ${SPOOL} ${CP} /etc/localtime /etc/resolv.conf ${SPOOL}/etc -post-build: - ${SED} -e 's#@PREFIX@#${PREFIX}#g' <${PKGDIR}/MESSAGE \ - >${MESSAGE_FILE} - .include "../../mk/bsd.pkg.mk" |