diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2013-10-23 05:30:14 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2013-10-23 05:30:14 +0800 |
commit | f791465e8c10fa2c0f2f21b10c4c46d35a8492b2 (patch) | |
tree | c88dccb143362cd8e0bc7d6a8e59588f1bfb90c2 /dns | |
parent | 3f223a12db597d0dcb1c7e87e2f2598f26d8f3db (diff) | |
download | freebsd-ports-gnome-f791465e8c10fa2c0f2f21b10c4c46d35a8492b2.tar.gz freebsd-ports-gnome-f791465e8c10fa2c0f2f21b10c4c46d35a8492b2.tar.zst freebsd-ports-gnome-f791465e8c10fa2c0f2f21b10c4c46d35a8492b2.zip |
Support staging
Diffstat (limited to 'dns')
-rw-r--r-- | dns/dnswall/Makefile | 1 | ||||
-rw-r--r-- | dns/nslint/Makefile | 6 | ||||
-rw-r--r-- | dns/vizone/Makefile | 9 | ||||
-rw-r--r-- | dns/zonenotify/Makefile | 3 |
4 files changed, 7 insertions, 12 deletions
diff --git a/dns/dnswall/Makefile b/dns/dnswall/Makefile index 9d006edcd82c..36042cc85496 100644 --- a/dns/dnswall/Makefile +++ b/dns/dnswall/Makefile @@ -25,7 +25,6 @@ AUTOTOOLSFILES= aclocal.m4 OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include <bsd.port.options.mk> post-patch: diff --git a/dns/nslint/Makefile b/dns/nslint/Makefile index 7af1da5acb03..ad0994608c32 100644 --- a/dns/nslint/Makefile +++ b/dns/nslint/Makefile @@ -19,15 +19,13 @@ INSTALL_TARGET= install BOOTFILE?= /etc/namedb/named.boot CONFFILE?= /etc/namedb/named.conf -MAN8= nslint.8 -PLIST_FILES= bin/nslint +PLIST_FILES= bin/nslint man/man8/nslint.8.gz -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '/^\ \{4\}V_CCOPT/d' ${WRKSRC}/configure @@${REINPLACE_CMD} -e 's|/etc/named.boot|${BOOTFILE}|; \ s|/etc/named.conf|${CONFFILE}|' \ ${WRKSRC}/${PORTNAME}.c \ - ${WRKSRC}/${MAN8} + ${WRKSRC}/${PORTNAME}.8 .include <bsd.port.mk> diff --git a/dns/vizone/Makefile b/dns/vizone/Makefile index da52757fb0e8..ef062f7e8e5e 100644 --- a/dns/vizone/Makefile +++ b/dns/vizone/Makefile @@ -18,14 +18,13 @@ SHEBANG_FILES= updserial PORTEXAMPLES= example.tld PLIST_FILES= bin/vizone bin/updserial -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/updserial ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/updserial ${STAGEDIR}${PREFIX}/bin .if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/example.tld ${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/example.tld ${STAGEDIR}${EXAMPLESDIR} .endif .include <bsd.port.mk> diff --git a/dns/zonenotify/Makefile b/dns/zonenotify/Makefile index 35b694288017..9113f617611c 100644 --- a/dns/zonenotify/Makefile +++ b/dns/zonenotify/Makefile @@ -13,9 +13,8 @@ COMMENT= DNS notify sender written in C PLIST_FILES= bin/zonenotify WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \ + @${REINPLACE_CMD} -e 's|/usr/local|${STAGEDIR}${PREFIX}|' \ ${WRKSRC}/Makefile do-build: |