diff options
author | rillig <rillig> | 2006-11-03 21:29:45 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-11-03 21:29:45 +0000 |
commit | 788ccc43fdb78d36ca98b052225176272a95f86b (patch) | |
tree | dcc01382851e43040e70a97750d90a33cba4725b /www/screws | |
parent | 282a4e3f072ded2db82b245e44ad7e0efbc7013f (diff) | |
download | pkgsrc-788ccc43fdb78d36ca98b052225176272a95f86b.tar.gz |
Fixed the installation, which I broke yesterday. This fixes PR 34981.
Fixed PKGMANDIR.
Diffstat (limited to 'www/screws')
-rw-r--r-- | www/screws/Makefile | 7 | ||||
-rw-r--r-- | www/screws/distinfo | 3 | ||||
-rw-r--r-- | www/screws/patches/patch-ai | 18 |
3 files changed, 26 insertions, 2 deletions
diff --git a/www/screws/Makefile b/www/screws/Makefile index 94f8097039b..5f8de277c53 100644 --- a/www/screws/Makefile +++ b/www/screws/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2006/08/14 22:36:47 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2006/11/03 21:29:45 rillig Exp $ # DISTNAME= screws-0.56 @@ -32,6 +32,11 @@ SUBST_STAGE.paths= pre-configure SUBST_FILES.paths= src/Utils/screwsctl SUBST_SED.paths= -e 's|/var/log|${VARBASE}/log|g' +SUBST_CLASSES+= man +SUBST_STAGE.man= pre-configure +SUBST_FILES.man= Makefile +SUBST_SED.man= -e 's,PREFIX}/man,PREFIX}/${PKGMANDIR},g' + # The HSML files do not really contain a script interpreter, only # something very similar. CHECK_INTERPRETER_SKIP+= *.hsml diff --git a/www/screws/distinfo b/www/screws/distinfo index b1307969327..98e81b32dac 100644 --- a/www/screws/distinfo +++ b/www/screws/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2006/11/02 18:48:53 rillig Exp $ +$NetBSD: distinfo,v 1.13 2006/11/03 21:29:45 rillig Exp $ SHA1 (screws-0.56.tar.gz) = 3335e7e7116561499ee7164831c31df4ecebe403 RMD160 (screws-0.56.tar.gz) = 5d7f1af67a42cd5726f0d4708713bb13c4c8fe21 @@ -11,3 +11,4 @@ SHA1 (patch-ae) = 081cb01537481d48cbc37a96ea72e242db76e7ae SHA1 (patch-af) = 9ac19813079a67c8f01ea5d2b3a85c309db00f95 SHA1 (patch-ag) = cd3b907cd839f51fd0180e1f0bb40102f01c41f2 SHA1 (patch-ah) = 90ba05b735295caa1ce6974ac5d7c1d35799c49f +SHA1 (patch-ai) = 76c15330b3f3ba3c9d7442d98ea461e6b89ce33d diff --git a/www/screws/patches/patch-ai b/www/screws/patches/patch-ai new file mode 100644 index 00000000000..2f5c2daa821 --- /dev/null +++ b/www/screws/patches/patch-ai @@ -0,0 +1,18 @@ +$NetBSD: patch-ai,v 1.1 2006/11/03 21:29:45 rillig Exp $ + +Tags: pkgsrc-specific + +--- src/Exec/Makefile.orig 2004-09-17 00:05:58.000000000 +0200 ++++ src/Exec/Makefile 2006-11-03 22:00:08.000000000 +0100 +@@ -5,7 +5,7 @@ all: + + install: + mkdir -p ${PREFIX}/libexec/screws/ +- for A in `ls . | grep -v Makefile`; do \ +- echo ... $$A; \ +- cp -rf $$A ${PREFIX}/libexec/screws/ ;\ +- done ++ pax -wr \ ++ -s',^Makefile$$,,' \ ++ -s',.*\.orig$$,,' \ ++ * ${PREFIX}/libexec/screws/ |