diff options
author | dholland <dholland> | 2008-07-27 16:47:46 +0000 |
---|---|---|
committer | dholland <dholland> | 2008-07-27 16:47:46 +0000 |
commit | 1fbe6b7886feb2cf2fa1983f9b16837f9762bef3 (patch) | |
tree | 6d22198c0514399a52522a9182fd05e7d81427da /sysutils/lavaps/patches | |
parent | f3371c8733928b3f79fa509f5d215f96c4502fcd (diff) | |
download | pkgsrc-1fbe6b7886feb2cf2fa1983f9b16837f9762bef3.tar.gz |
Prevent this from trying to install a GConf schema file into the root
directory. PKGREVISION++.
If you installed this since the previous update, you may want to check
for and delete /lavaps.schemas.
Diffstat (limited to 'sysutils/lavaps/patches')
-rw-r--r-- | sysutils/lavaps/patches/patch-ah | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/lavaps/patches/patch-ah b/sysutils/lavaps/patches/patch-ah new file mode 100644 index 00000000000..ebc7ef293bf --- /dev/null +++ b/sysutils/lavaps/patches/patch-ah @@ -0,0 +1,31 @@ +$NetBSD: patch-ah,v 1.1 2008/07/27 16:47:46 dholland Exp $ + +--- src/Makefile.in~ 2004-12-24 21:42:03.000000000 -0500 ++++ src/Makefile.in 2008-07-27 12:36:30.000000000 -0400 +@@ -471,20 +471,22 @@ + install-schemaDATA: $(schema_DATA) + @$(NORMAL_INSTALL) + test -z "$(schemadir)" || $(mkdir_p) "$(DESTDIR)$(schemadir)" +- @list='$(schema_DATA)'; for p in $$list; do \ ++ @if [ "$PKGSRC_INSTALL_SCHEMAS" = "yes" ]; then \ ++ list='$(schema_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(schemaDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(schemadir)/$$f'"; \ + $(schemaDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(schemadir)/$$f"; \ +- done ++ done; fi + + uninstall-schemaDATA: + @$(NORMAL_UNINSTALL) +- @list='$(schema_DATA)'; for p in $$list; do \ ++ @if [ "$PKGSRC_INSTALL_SCHEMAS" = "yes" ]; then \ ++ list='$(schema_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(schemadir)/$$f'"; \ + rm -f "$(DESTDIR)$(schemadir)/$$f"; \ +- done ++ done; fi + + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. |