diff options
author | jmmv <jmmv> | 2004-01-23 17:51:24 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2004-01-23 17:51:24 +0000 |
commit | d47d552a34e5be813497f36887543f9c29c7577b (patch) | |
tree | ff4f2afe93d116a19a2888b4c3151ac096292d78 /devel/GConf2 | |
parent | bf588e8d6e8a6d94dfeb7caeb0897eb6ca2ec979 (diff) | |
download | pkgsrc-d47d552a34e5be813497f36887543f9c29c7577b.tar.gz |
Avoid creating an empty directory that is later not available in binary
packages and produces a warning message when pkg_delete'ing.
Bump PKGREVISION to 1.
Diffstat (limited to 'devel/GConf2')
-rw-r--r-- | devel/GConf2/Makefile | 3 | ||||
-rw-r--r-- | devel/GConf2/PLIST | 3 | ||||
-rw-r--r-- | devel/GConf2/distinfo | 3 | ||||
-rw-r--r-- | devel/GConf2/patches/patch-af | 15 |
4 files changed, 20 insertions, 4 deletions
diff --git a/devel/GConf2/Makefile b/devel/GConf2/Makefile index ac83beff388..19ba31951fa 100644 --- a/devel/GConf2/Makefile +++ b/devel/GConf2/Makefile @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.19 2003/12/14 19:44:38 jmmv Exp $ +# $NetBSD: Makefile,v 1.20 2004/01/23 17:51:24 jmmv Exp $ # .include "../../devel/GConf2/Makefile.common" PKGNAME= ${DISTNAME:S/GConf/GConf2/} +PKGREVISION= 1 USE_PKGINSTALL= YES diff --git a/devel/GConf2/PLIST b/devel/GConf2/PLIST index 2db66285667..64e0bf3f83f 100644 --- a/devel/GConf2/PLIST +++ b/devel/GConf2/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2003/12/14 19:44:38 jmmv Exp $ +@comment $NetBSD: PLIST,v 1.12 2004/01/23 17:51:24 jmmv Exp $ bin/gconftool-2 include/gconf/2/gconf/gconf-changeset.h include/gconf/2/gconf/gconf-client.h @@ -78,7 +78,6 @@ share/sgml/gconf/gconf-1.0.dtd @dirrm share/gconf/schemas @unexec ${RMDIR} -p %D/share/gconf 2>/dev/null || ${TRUE} @dirrm share/examples/GConf2 -@dirrm share/doc/html/gconf @dirrm lib/GConf/2 @unexec ${RMDIR} -p %D/lib/GConf 2>/dev/null || ${TRUE} @dirrm include/gconf/2/gconf diff --git a/devel/GConf2/distinfo b/devel/GConf2/distinfo index 0cfeddbc2a8..47f46d170f5 100644 --- a/devel/GConf2/distinfo +++ b/devel/GConf2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2003/12/28 14:24:49 jmmv Exp $ +$NetBSD: distinfo,v 1.9 2004/01/23 17:51:24 jmmv Exp $ SHA1 (GConf-2.4.0.1.tar.bz2) = 190ed06d34699976a9a425e9e14d4ccb26220ba8 Size (GConf-2.4.0.1.tar.bz2) = 1288876 bytes @@ -7,3 +7,4 @@ SHA1 (patch-ab) = eb9ffa0ec87fe21b0f754aef019221d619b37b11 SHA1 (patch-ac) = de42b523072ff5eac020525c2ccb4ce93ed792c6 SHA1 (patch-ad) = 50b0d919768b179d0209c49aee25a7c64ca5b497 SHA1 (patch-ae) = 292895b5a71e9b21963d258c6eeed976c9b01d30 +SHA1 (patch-af) = 1ea380a3cef4ea2cc561269f4389a89a7b44e7b6 diff --git a/devel/GConf2/patches/patch-af b/devel/GConf2/patches/patch-af new file mode 100644 index 00000000000..b58852c5b57 --- /dev/null +++ b/devel/GConf2/patches/patch-af @@ -0,0 +1,15 @@ +$NetBSD: patch-af,v 1.1 2004/01/23 17:51:24 jmmv Exp $ + +The package does not install documentation, so avoid creating the directory +that should contain it. + +--- doc/gconf/Makefile.in.orig 2004-01-23 18:41:17.000000000 +0100 ++++ doc/gconf/Makefile.in +@@ -381,6 +381,7 @@ maintainer-clean-local: clean + cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + + install-data-local: ++dontdo-install-data-local: + $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) + (installfiles=`echo $(srcdir)/html/*`; \ + if test "$$installfiles" = '$(srcdir)/html/*'; \ |