summaryrefslogtreecommitdiff
path: root/mail/postfix
diff options
context:
space:
mode:
authormartti <martti>2006-10-18 05:50:42 +0000
committermartti <martti>2006-10-18 05:50:42 +0000
commit2878bef14ab6bd22995d5e308312899f3ffdc777 (patch)
tree5e87761e8ec10edf1fb2634a28c3eadf3612d8ac /mail/postfix
parentd54c765c126128e3bf27706d61b994a7a422384a (diff)
downloadpkgsrc-2878bef14ab6bd22995d5e308312899f3ffdc777.tar.gz
Fix for test ... == ...
Diffstat (limited to 'mail/postfix')
-rw-r--r--mail/postfix/distinfo3
-rw-r--r--mail/postfix/patches/patch-ab26
2 files changed, 28 insertions, 1 deletions
diff --git a/mail/postfix/distinfo b/mail/postfix/distinfo
index a859370cccc..2e5f948eb5b 100644
--- a/mail/postfix/distinfo
+++ b/mail/postfix/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.104 2006/09/16 15:29:36 hira Exp $
+$NetBSD: distinfo,v 1.105 2006/10/18 05:50:42 martti Exp $
SHA1 (postfix/postfix-2.3.3.tar.gz) = 8fb8cff36b18468e75d21cf6c668269f941b4a41
RMD160 (postfix/postfix-2.3.3.tar.gz) = 9e1550b09e98e7802ffcd1eaba65cf4420fd8ea5
Size (postfix/postfix-2.3.3.tar.gz) = 2777045 bytes
SHA1 (patch-aa) = e53bc6644c2b7898b73f4604489021cb85514610
+SHA1 (patch-ab) = 6aef72d5f53694d68e413b7e6962164d019ba1da
SHA1 (patch-ag) = db654a29edb15c52915e98b6a2babbcf13686f0e
SHA1 (patch-ai) = b4887cea0b4a2b373cb827c28fc20e253497aa02
diff --git a/mail/postfix/patches/patch-ab b/mail/postfix/patches/patch-ab
new file mode 100644
index 00000000000..20379995111
--- /dev/null
+++ b/mail/postfix/patches/patch-ab
@@ -0,0 +1,26 @@
+$NetBSD: patch-ab,v 1.12 2006/10/18 05:50:42 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