diff options
author | jperkin <jperkin@pkgsrc.org> | 2016-11-02 19:57:04 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2016-11-02 19:57:04 +0000 |
commit | 1d59b5716c238a00c1044d1609ab3739a514b940 (patch) | |
tree | 030095b9cc2acb7df3cbd74f2cfdfd68a0f75453 /sysutils/dbus | |
parent | 11570ad6be936a5b42bec208028450ae1971f486 (diff) | |
download | pkgsrc-1d59b5716c238a00c1044d1609ab3739a514b940.tar.gz |
Remove broken and incorrect DEINSTALL script, these directories are
correctly handled by OWN_DIRS. Bump PKGREVISION.
Diffstat (limited to 'sysutils/dbus')
-rw-r--r-- | sysutils/dbus/DEINSTALL | 20 | ||||
-rw-r--r-- | sysutils/dbus/Makefile | 3 |
2 files changed, 2 insertions, 21 deletions
diff --git a/sysutils/dbus/DEINSTALL b/sysutils/dbus/DEINSTALL deleted file mode 100644 index 81de0538eb1..00000000000 --- a/sysutils/dbus/DEINSTALL +++ /dev/null @@ -1,20 +0,0 @@ -# $NetBSD: DEINSTALL,v 1.2 2011/10/29 15:17:17 dholland Exp $ - -# DEINSTALL is used rather than @pkgdir because the automatic directory -# deletion mechanism makes dbus services remove these directories first, -# and thus "Directory disappeared" messages will likely appear under @pkgdir - -case ${STAGE} in -POST-DEINSTALL) - CYCLE="@PREFIX@/share/dbus-1/system-services \ - @PREFIX@/share/dbus-1/services \ - @PREFIX@/libexec/dbus-1" - for dbuspath in ${CYCLE}; do - if [ -d ${dbuspath} ]; then - if [ -n `${LS} -A ${dbuspath}` ]; then - ${RMDIR} ${dbuspath} - fi - fi - done - ;; -esac diff --git a/sysutils/dbus/Makefile b/sysutils/dbus/Makefile index d25442333a9..f538c86d9a8 100644 --- a/sysutils/dbus/Makefile +++ b/sysutils/dbus/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.102 2016/10/10 13:16:44 wiz Exp $ +# $NetBSD: Makefile,v 1.103 2016/11/02 19:57:04 jperkin Exp $ DISTNAME= dbus-1.10.12 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/ |