summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2008-09-17 16:11:28 +0000
committerjoerg <joerg@pkgsrc.org>2008-09-17 16:11:28 +0000
commit59a7666aee7ed7a8573fc35fd422f0651499fc3b (patch)
tree1020c9878124b19e6ee721f30f48349353cc1a63 /security
parentea2ab00d693b61b08ef2f0eeef8b6e2a5e43957c (diff)
downloadpkgsrc-59a7666aee7ed7a8573fc35fd422f0651499fc3b.tar.gz
Fix build with newer awk in netbsd-current.
Diffstat (limited to 'security')
-rw-r--r--security/kth-krb4/distinfo3
-rw-r--r--security/kth-krb4/patches/patch-ae13
2 files changed, 15 insertions, 1 deletions
diff --git a/security/kth-krb4/distinfo b/security/kth-krb4/distinfo
index a92bb795ea0..a1e0fba1038 100644
--- a/security/kth-krb4/distinfo
+++ b/security/kth-krb4/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2006/09/07 08:46:20 wennmach Exp $
+$NetBSD: distinfo,v 1.12 2008/09/17 16:11:28 joerg Exp $
SHA1 (krb4-1.2.2.tar.gz) = 41379763161d0b94646adb8847b83f92e5c985a4
RMD160 (krb4-1.2.2.tar.gz) = 585f19767c610c31ca5be59d8cf61724739969f1
@@ -7,5 +7,6 @@ SHA1 (patch-aa) = 0585d1b3a0242c013dbe09b61c28049cbae0cb92
SHA1 (patch-ab) = 94e4abdeeb0263eac7207fac120e10d190fb0f30
SHA1 (patch-ac) = 8e3f1ea92fdb45c1d48c5f1719dcf3eb0ed2a52d
SHA1 (patch-ad) = 48ebf93893662ecc10e56e0653351f80359b12b0
+SHA1 (patch-ae) = 654d92268a6c693d566acde1a7c881dc6dea2166
SHA1 (patch-ah) = 5d09fc774b0d35070036aebd1339b32ed38137de
SHA1 (patch-ai) = dc9db52ff819cc08753e8fe98397187df1dd0310
diff --git a/security/kth-krb4/patches/patch-ae b/security/kth-krb4/patches/patch-ae
new file mode 100644
index 00000000000..c483640e0b2
--- /dev/null
+++ b/security/kth-krb4/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.5 2008/09/17 16:11:28 joerg Exp $
+
+--- lib/roken/roken.awk.orig 2008-09-17 17:44:57.000000000 +0200
++++ lib/roken/roken.awk
+@@ -15,7 +15,7 @@ BEGIN {
+ print "puts(\"\");"
+ }
+
+-$1 == "\#ifdef" || $1 == "\#ifndef" || $1 == "\#if" || $1 == "\#else" || $1 == "\#elif" || $1 == "\#endif" || $1 == "#ifdef" || $1 == "#ifndef" || $1 == "#if" || $1 == "#else" || $1 == "#elif" || $1 == "#endif" {
++$1 == "#ifdef" || $1 == "#ifndef" || $1 == "#if" || $1 == "#else" || $1 == "#elif" || $1 == "#endif" || $1 == "#ifdef" || $1 == "#ifndef" || $1 == "#if" || $1 == "#else" || $1 == "#elif" || $1 == "#endif" {
+ print $0;
+ next
+ }