diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-04-21 09:14:53 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-04-21 09:14:53 +0800 |
commit | d82251d8694d75650cdf2dff7ca96e8f401b10a0 (patch) | |
tree | 29c21ef4643c2e80bbb495e2ef81216309e740b4 /dns/yadifa | |
parent | a27d93fdfe0d297bfe3376fcee7a129f1667e8c5 (diff) | |
download | freebsd-ports-gnome-d82251d8694d75650cdf2dff7ca96e8f401b10a0.tar.gz freebsd-ports-gnome-d82251d8694d75650cdf2dff7ca96e8f401b10a0.tar.zst freebsd-ports-gnome-d82251d8694d75650cdf2dff7ca96e8f401b10a0.zip |
- Fix plist to have proper 'rmdir DIR' ordering.
Pkgng will not detect the directory otherwise. This was due to
incorrectly advise in the check-stagedir.sh script, fixed in
r351587
With hat: portmgr
Diffstat (limited to 'dns/yadifa')
-rw-r--r-- | dns/yadifa/Makefile | 2 | ||||
-rw-r--r-- | dns/yadifa/pkg-plist | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dns/yadifa/Makefile b/dns/yadifa/Makefile index ec2e3dcd5c7f..8dca9c528d18 100644 --- a/dns/yadifa/Makefile +++ b/dns/yadifa/Makefile @@ -3,7 +3,7 @@ PORTNAME= yadifa PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -2880 CATEGORIES= dns ipv6 MASTER_SITES= http://cdn.yadifa.eu/sites/default/files/releases/ diff --git a/dns/yadifa/pkg-plist b/dns/yadifa/pkg-plist index 29c423f82198..dec0d746c22e 100644 --- a/dns/yadifa/pkg-plist +++ b/dns/yadifa/pkg-plist @@ -147,11 +147,11 @@ sbin/yadifad /var/yadifa/masters/localhost.zone /var/yadifa/masters/localhost6.zone /var/yadifa/masters/somedomain.eu.zone -@unexec rmdir >/dev/null 2>&1 /var/yadifa/xfr || : -@unexec rmdir >/dev/null 2>&1 /var/yadifa/slaves || : -@unexec rmdir >/dev/null 2>&1 /var/yadifa/masters || : -@unexec rmdir >/dev/null 2>&1 /var/yadifa/keys || : -@unexec rmdir >/dev/null 2>&1 /var/yadifa || : +@unexec rmdir "/var/yadifa/xfr" >/dev/null 2>&1 || : +@unexec rmdir "/var/yadifa/slaves" >/dev/null 2>&1 || : +@unexec rmdir "/var/yadifa/masters" >/dev/null 2>&1 || : +@unexec rmdir "/var/yadifa/keys" >/dev/null 2>&1 || : +@unexec rmdir "/var/yadifa" >/dev/null 2>&1 || : %%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% @dirrmtry include/dnszone @dirrmtry include/dnsdb |