diff options
author | hans <hans> | 2012-02-16 15:36:31 +0000 |
---|---|---|
committer | hans <hans> | 2012-02-16 15:36:31 +0000 |
commit | 01e4ec450580bed82ce87600ad9aa5f875f8fcd3 (patch) | |
tree | 158c8733fbb43bd12c489daceedae85104452190 /chat | |
parent | 642ce630310f43dbc366278905a10fda11211b83 (diff) | |
download | pkgsrc-01e4ec450580bed82ce87600ad9aa5f875f8fcd3.tar.gz |
Fix destdir build.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/scrollz/distinfo | 3 | ||||
-rw-r--r-- | chat/scrollz/patches/patch-Makefile.in | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/chat/scrollz/distinfo b/chat/scrollz/distinfo index 4e968363c7a..9afd54eb54b 100644 --- a/chat/scrollz/distinfo +++ b/chat/scrollz/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.7 2007/09/29 12:18:16 rillig Exp $ +$NetBSD: distinfo,v 1.8 2012/02/16 15:36:31 hans Exp $ SHA1 (ScrollZ-1.9.5.tar.gz) = 33496b0e8f4e87b3de9ce78a47d5b77b66b155c0 RMD160 (ScrollZ-1.9.5.tar.gz) = 8817697f6c47f47bcecef196793cb1cffc0031ba Size (ScrollZ-1.9.5.tar.gz) = 906167 bytes +SHA1 (patch-Makefile.in) = 87449d920da8bd05200f8806da5117654dcffdea SHA1 (patch-aa) = 8c30f9e340a291ff2badcf733861f74e4a44f413 diff --git a/chat/scrollz/patches/patch-Makefile.in b/chat/scrollz/patches/patch-Makefile.in new file mode 100644 index 00000000000..f2451031a28 --- /dev/null +++ b/chat/scrollz/patches/patch-Makefile.in @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.in,v 1.1 2012/02/16 15:36:31 hans Exp $ + +--- Makefile.in.orig 2004-05-12 17:53:07.000000000 +0200 ++++ Makefile.in 2012-01-21 01:44:49.816033366 +0100 +@@ -216,8 +216,8 @@ installdirs: + + installhelp: + $(INSTALL_HELP_CMD) +- find $(HELP_DIR) -type d -print | xargs chmod a+rx +- find $(HELP_DIR) -type f -print | xargs chmod a+r ++ find $(DESTDIR)/$(HELP_DIR) -type d -print | xargs chmod a+rx ++ find $(DESTDIR)$(HELP_DIR) -type f -print | xargs chmod a+r + + installtranslation: installdirs + $(INSTALL_TRANSLATION_CMD) |