diff options
author | mat <mat@FreeBSD.org> | 2014-01-09 06:52:19 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2014-01-09 06:52:19 +0800 |
commit | fc6130506071793536193cc6383de0d4ebaea5cd (patch) | |
tree | a031fd3e68cc16facae7350c8304f007aa7ef87b /dns/bind98 | |
parent | 5192371e75eaf07e6aaffa90feda9731256288d8 (diff) | |
download | freebsd-ports-gnome-fc6130506071793536193cc6383de0d4ebaea5cd.tar.gz freebsd-ports-gnome-fc6130506071793536193cc6383de0d4ebaea5cd.tar.zst freebsd-ports-gnome-fc6130506071793536193cc6383de0d4ebaea5cd.zip |
Fixup rndc.conf.sample installation
Spotted by: antoine
Diffstat (limited to 'dns/bind98')
-rw-r--r-- | dns/bind98/Makefile | 6 | ||||
-rw-r--r-- | dns/bind98/pkg-plist | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dns/bind98/Makefile b/dns/bind98/Makefile index 12be4645f25b..2bc1c440a64e 100644 --- a/dns/bind98/Makefile +++ b/dns/bind98/Makefile @@ -2,7 +2,7 @@ PORTNAME= bind98 PORTVERSION= 9.8.6 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -151,9 +151,9 @@ CONFIGURE_ARGS+= --prefix=${PREFIX} \ PLIST_SUB+= BIND_DESTETC="${BIND_DESTETC}" .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000100 -PLIST_SUB+= NOBASE="" +PLIST_SUB+= NOBASE="" BASE="@comment " .else -PLIST_SUB+= NOBASE="@comment " +PLIST_SUB+= NOBASE="@comment " BASE="" .endif post-patch: diff --git a/dns/bind98/pkg-plist b/dns/bind98/pkg-plist index a63c5308ac38..c71aabffa11a 100644 --- a/dns/bind98/pkg-plist +++ b/dns/bind98/pkg-plist @@ -332,8 +332,11 @@ sbin/named-journalprint sbin/nsec3hash sbin/rndc sbin/rndc-confgen -@unexec rm -f %%BIND_DESTETC%%/rndc.conf.sample +%%BASE%%@unexec rm -f %%BIND_DESTETC%%/rndc.conf.sample %%NOBASE%%etc/rc.d/named +%%NOBASE%%@unexec if cmp -s %D/%%ETCDIR%%/rndc.conf.sample %D/%%ETCDIR%%/rndc.conf; then rm -f %D/%%ETCDIR%%/rndc.conf; fi +%%NOBASE%%%%ETCDIR%%/rndc.conf.sample +%%NOBASE%%@exec if [ ! -f %D/%%ETCDIR%%/rndc.conf ] ; then cp -p %D/%F %B/rndc.conf; fi %%NOBASE%%@unexec if cmp -s %D/%%ETCDIR%%/named.conf.sample %D/%%ETCDIR%%/named.conf; then rm -f %D/%%ETCDIR%%/named.conf; fi %%NOBASE%%%%ETCDIR%%/named.conf.sample %%NOBASE%%@exec if [ ! -f %D/%%ETCDIR%%/named.conf ] ; then cp -p %D/%F %B/named.conf; fi |