summaryrefslogtreecommitdiff
path: root/wm/wmii/patches
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2018-05-14 10:31:14 +0000
committermaya <maya@pkgsrc.org>2018-05-14 10:31:14 +0000
commit3d3322fe6190391d986de78eb9ee42a237eda9f6 (patch)
tree9c71a9403e851eda02a4e065d260de49bb11246c /wm/wmii/patches
parentd4ba0b9bf2eeeba9d627425eef84121e00b20988 (diff)
downloadpkgsrc-3d3322fe6190391d986de78eb9ee42a237eda9f6.tar.gz
wmii: remove some debug things, re-introduce @@ things
that got mangled via mkpatches, appease the pkglint gods
Diffstat (limited to 'wm/wmii/patches')
-rw-r--r--wm/wmii/patches/patch-aa4
-rw-r--r--wm/wmii/patches/patch-util_compile24
2 files changed, 18 insertions, 10 deletions
diff --git a/wm/wmii/patches/patch-aa b/wm/wmii/patches/patch-aa
index a7ab8ab6a25..2aea3fa77b0 100644
--- a/wm/wmii/patches/patch-aa
+++ b/wm/wmii/patches/patch-aa
@@ -1,4 +1,6 @@
-$NetBSD: patch-aa,v 1.11 2018/05/14 10:20:57 maya Exp $
+$NetBSD: patch-aa,v 1.12 2018/05/14 10:31:14 maya Exp $
+
+pkgsrc-friendly paths, don't force /usr/local PREFIX.
--- config.mk.orig 2010-06-10 07:24:04.000000000 +0000
+++ config.mk
diff --git a/wm/wmii/patches/patch-util_compile b/wm/wmii/patches/patch-util_compile
index 7c9532d4782..de4addf939d 100644
--- a/wm/wmii/patches/patch-util_compile
+++ b/wm/wmii/patches/patch-util_compile
@@ -1,13 +1,19 @@
-$NetBSD: patch-util_compile,v 1.2 2018/05/14 10:20:57 maya Exp $
+$NetBSD: patch-util_compile,v 1.3 2018/05/14 10:31:14 maya Exp $
+
+Allow substituing sh, bin, awk, egrep.
--- util/compile.orig 2010-06-10 07:24:04.000000000 +0000
+++ util/compile
-@@ -4,7 +4,7 @@ CC=$1
+@@ -1,10 +1,10 @@
+-#!/bin/sh -f
++#!@SH@ -f
+
+ CC=$1
CFLAGS=$2; shift 2
outfile="$1"; shift
-bin="$(echo $0 | sed 's,/[^/]*$,,')"
-+bin="$(echo $0 | /usr/bin/sed 's,/[^/]*$,,')"
++bin="$(echo $0 | @SED@ 's,/[^/]*$,,')"
# Derived from Russ Cox's 9c in plan9port.
@@ -16,7 +22,7 @@ $NetBSD: patch-util_compile,v 1.2 2018/05/14 10:20:57 maya Exp $
[ $? -eq 0 ] || echo $CC -o $outfile $CFLAGS $@ >&2
-base=$(echo $BASE | sed 's/,/\\,/g')
-+base=$(echo $BASE | /usr/bin/sed 's/,/\\,/g')
++base=$(echo $BASE | @SED@ 's/,/\\,/g')
re='\([^[:space:]/]*\..:[0-9]\)'
undup() { # GCC is crap.
@@ -29,11 +35,11 @@ $NetBSD: patch-util_compile,v 1.2 2018/05/14 10:20:57 maya Exp $
- sed 's/ .first use in this function.$//; s/\"\([^\"][^\"]*\)\", line \([0-9][0-9]*\)/\1:\2/g' |
- awk '$1 == "warning:"{t=$2" "$1; sub(/^[^ ]+ [^ ]+ /, ""); $0 = t" "$0}; //' |
- awk '{sub(/\[/, ": [", $1); print}' |
-+cat $xtmp | /usr/bin/sed "s,^$re,$base&,g; s,\([[:space:]]\)$re,\1$base\2,g" |
-+ /usr/bin/egrep -v ': error: .Each undeclared identifier|: error: for each function it appears|is dangerous, better use|is almost always misused|: In function |: At top level:|support .long long.|use of C99 long long|ISO C forbids conversion|warning:.*warn_unused_result' |
-+ /usr/bin/sed 's/ .first use in this function.$//; s/\"\([^\"][^\"]*\)\", line \([0-9][0-9]*\)/\1:\2/g' |
-+ /usr/bin/awk '$1 == "warning:"{t=$2" "$1; sub(/^[^ ]+ [^ ]+ /, ""); $0 = t" "$0}; //' |
-+ /usr/bin/awk '{sub(/\[/, ": [", $1); print}' |
++cat $xtmp | @SED@ "s,^$re,$base&,g; s,\([[:space:]]\)$re,\1$base\2,g" |
++ @EGREP@ -v ': error: .Each undeclared identifier|: error: for each function it appears|is dangerous, better use|is almost always misused|: In function |: At top level:|support .long long.|use of C99 long long|ISO C forbids conversion|warning:.*warn_unused_result' |
++ @SED@ 's/ .first use in this function.$//; s/\"\([^\"][^\"]*\)\", line \([0-9][0-9]*\)/\1:\2/g' |
++ @AWK@ '$1 == "warning:"{t=$2" "$1; sub(/^[^ ]+ [^ ]+ /, ""); $0 = t" "$0}; //' |
++ @AWK@ '{sub(/\[/, ": [", $1); print}' |
undup 1>&2
rm -f $xtmp