diff options
author | wiz <wiz@pkgsrc.org> | 2009-10-18 23:53:37 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-10-18 23:53:37 +0000 |
commit | aed6ea89343d803eb4871877830331667fb1b0ed (patch) | |
tree | 091e38a6e8eff2d247a24a6ae5ac870783c97fa0 /net | |
parent | 3db10886c035bff24bc7e13bdaa3071cb8774115 (diff) | |
download | pkgsrc-aed6ea89343d803eb4871877830331667fb1b0ed.tar.gz |
Add patch against "==" in test(1).
Diffstat (limited to 'net')
-rw-r--r-- | net/kdenetwork4/distinfo | 3 | ||||
-rw-r--r-- | net/kdenetwork4/patches/patch-ae | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/kdenetwork4/distinfo b/net/kdenetwork4/distinfo index 732bd068a99..4cd4d39fc8c 100644 --- a/net/kdenetwork4/distinfo +++ b/net/kdenetwork4/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2009/10/11 08:13:39 markd Exp $ +$NetBSD: distinfo,v 1.3 2009/10/18 23:53:37 wiz Exp $ SHA1 (kdenetwork-4.3.2.tar.bz2) = 7b384e11b551c9d1113cc39d318ca1b9d7712864 RMD160 (kdenetwork-4.3.2.tar.bz2) = 45dccc0ad35041be39bbea3d014927362cfbe307 Size (kdenetwork-4.3.2.tar.bz2) = 7378385 bytes SHA1 (patch-aa) = 0359cd86501c57197242c398d63c1fc77c60a4d0 SHA1 (patch-ab) = 0743b3b6c994623c507b8bcd52ee01dad31cf56f +SHA1 (patch-ae) = 765d48550d2d8b7a59a1593a669b0909fef3bd96 diff --git a/net/kdenetwork4/patches/patch-ae b/net/kdenetwork4/patches/patch-ae new file mode 100644 index 00000000000..fc92fe2e728 --- /dev/null +++ b/net/kdenetwork4/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2009/10/18 23:53:37 wiz Exp $ + +--- kopete/protocols/winpopup/winpopup-install.orig 2009-10-18 22:56:13.000000000 +0000 ++++ kopete/protocols/winpopup/winpopup-install +@@ -11,7 +11,7 @@ else + fi + + # Check if winpopup-send exist +-if [ "$WPSEND" == "" ] || [ ! -f "$WPSEND" ]; then ++if [ "$WPSEND" = "" ] || [ ! -f "$WPSEND" ]; then + echo "Cant find script winpopup-send" + echo "Run: $0 <script winpopup-send with path>" + exit 1 |