summaryrefslogtreecommitdiff
path: root/www/seamonkey
diff options
context:
space:
mode:
authorrillig <rillig>2006-10-20 10:28:51 +0000
committerrillig <rillig>2006-10-20 10:28:51 +0000
commit9d6a223fb2f60c5ea4ad6c52f735c39e557123d7 (patch)
tree3f71e5d32846bbd19d664a21af3e420198d79fe6 /www/seamonkey
parentfdade202676a650d7aeba6d94c3970be722b57e4 (diff)
downloadpkgsrc-9d6a223fb2f60c5ea4ad6c52f735c39e557123d7.tar.gz
Fixed "test ==".
Diffstat (limited to 'www/seamonkey')
-rw-r--r--www/seamonkey/distinfo3
-rw-r--r--www/seamonkey/patches/patch-ec13
2 files changed, 15 insertions, 1 deletions
diff --git a/www/seamonkey/distinfo b/www/seamonkey/distinfo
index 761ae9ae8d3..3095cb957a1 100644
--- a/www/seamonkey/distinfo
+++ b/www/seamonkey/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2006/10/19 10:25:36 markd Exp $
+$NetBSD: distinfo,v 1.12 2006/10/20 10:28:51 rillig Exp $
SHA1 (seamonkey-1.0.5.source.tar.bz2) = 60be0112e369a06958c0295ad2de995ab476cef1
RMD160 (seamonkey-1.0.5.source.tar.bz2) = 9f99f4a542c3a4e1c7e054e73c9ca08cd7252e63
@@ -60,3 +60,4 @@ SHA1 (patch-dt) = 9eef43663de12721ecc38124d5bd4a90a825eefc
SHA1 (patch-du) = c6e66bb420ce9ea988f89b57d1c20a247704cfcf
SHA1 (patch-dv) = a380d261d4c2771a672d2b0f4f1f23821e3e5266
SHA1 (patch-dw) = 263a64d06c6b62041c62ed4532858339d37e1873
+SHA1 (patch-ec) = 925a6f76bbfa77661256d46b0d14e847c16a865f
diff --git a/www/seamonkey/patches/patch-ec b/www/seamonkey/patches/patch-ec
new file mode 100644
index 00000000000..9cefcd150bc
--- /dev/null
+++ b/www/seamonkey/patches/patch-ec
@@ -0,0 +1,13 @@
+$NetBSD: patch-ec,v 1.1 2006/10/20 10:28:51 rillig Exp $
+
+--- build/autoconf/mozconfig2configure.orig 2006-02-22 16:41:28.000000000 +0000
++++ build/autoconf/mozconfig2configure
+@@ -79,7 +79,7 @@ ac_add_options() {
+ ac_add_app_options() {
+ APP=$1
+ shift;
+- if [ "$APP" == "$MOZ_BUILD_APP" ]; then
++ if [ "$APP" = "$MOZ_BUILD_APP" ]; then
+ ac_add_options "$*";
+ fi
+ }