summaryrefslogtreecommitdiff
path: root/mail/postfix-current
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2006-10-18 05:50:42 +0000
committermartti <martti@pkgsrc.org>2006-10-18 05:50:42 +0000
commit51fda70284bf6c39097a4ea0b90cc8ffb46d7f6b (patch)
tree5e87761e8ec10edf1fb2634a28c3eadf3612d8ac /mail/postfix-current
parent2844cf5e673bc6c2734b916748092c216d336f13 (diff)
downloadpkgsrc-51fda70284bf6c39097a4ea0b90cc8ffb46d7f6b.tar.gz
Fix for test ... == ...
Diffstat (limited to 'mail/postfix-current')
-rw-r--r--mail/postfix-current/distinfo3
-rw-r--r--mail/postfix-current/patches/patch-ab26
2 files changed, 28 insertions, 1 deletions
diff --git a/mail/postfix-current/distinfo b/mail/postfix-current/distinfo
index 6901def8043..acb558d953b 100644
--- a/mail/postfix-current/distinfo
+++ b/mail/postfix-current/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.28 2006/10/16 09:48:00 martti Exp $
+$NetBSD: distinfo,v 1.29 2006/10/18 05:52:26 martti Exp $
SHA1 (postfix/postfix-2.4-20061015.tar.gz) = ef1dfb806025223eaf2c4bac9002a21c917717f4
RMD160 (postfix/postfix-2.4-20061015.tar.gz) = fb27fa03459ea4c15bea6a8c99126e16ad32c77b
Size (postfix/postfix-2.4-20061015.tar.gz) = 2816332 bytes
SHA1 (patch-aa) = 3f45ca9b05bf080bd0f9ef3c9f8c24a1ef992edd
+SHA1 (patch-ab) = 6aef72d5f53694d68e413b7e6962164d019ba1da
SHA1 (patch-ag) = 8eb496390981c30842f2988c5dfdb17e8aa813ad
SHA1 (patch-ai) = 7797f14838cf8278684139a287dcbdbb271641f6
diff --git a/mail/postfix-current/patches/patch-ab b/mail/postfix-current/patches/patch-ab
new file mode 100644
index 00000000000..3c463049a9b
--- /dev/null
+++ b/mail/postfix-current/patches/patch-ab
@@ -0,0 +1,26 @@
+$NetBSD: patch-ab,v 1.10 2006/10/18 05:52:26 martti Exp $
+
+--- auxiliary/MacOSX/Postfix.StartupItem/Postfix.orig 2006-10-18 08:42:33.000000000 +0000
++++ auxiliary/MacOSX/Postfix.StartupItem/Postfix 2006-10-18 08:43:13.000000000 +0000
+@@ -20,18 +20,18 @@
+ # Start mail server
+ ##
+
+-if [ "$1" == "start" ]
++if [ "$1" = "start" ]
+ then
+ if [ "${POSTFIX:=-NO-}" = "-YES-" ]
+ then
+ ConsoleMessage "Starting Postfix mail services"
+ /usr/sbin/postfix start
+ fi
+-elif [ "$1" == "stop" ]
++elif [ "$1" = "stop" ]
+ then
+ ConsoleMessage "Stopping Postfix mail services"
+ /usr/sbin/postfix stop
+-elif [ "$1" == "restart" ]
++elif [ "$1" = "restart" ]
+ then
+ if [ "${POSTFIX:=-NO-}" = "-YES-" ]
+ then