aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorgarga <garga@FreeBSD.org>2008-05-21 02:26:27 +0800
committergarga <garga@FreeBSD.org>2008-05-21 02:26:27 +0800
commit19f4ee256f94a3dc40cc1e78f24200200a0267ff (patch)
tree51dc3077e2a85e8e2f8c6e7979d6dd293399ded2 /mail
parentbc0ba2b5c97db5a0e4d75c97c205c642c29be508 (diff)
downloadfreebsd-ports-gnome-19f4ee256f94a3dc40cc1e78f24200200a0267ff.tar.gz
freebsd-ports-gnome-19f4ee256f94a3dc40cc1e78f24200200a0267ff.tar.zst
freebsd-ports-gnome-19f4ee256f94a3dc40cc1e78f24200200a0267ff.zip
- Use pgrep to get qmail-send pid and prevent some problems when pid has less
than 5 digits - Bump PORTREVISION PR: ports/123724 Submitted by: mitsuru@riken.jp
Diffstat (limited to 'mail')
-rw-r--r--mail/qmhandle/Makefile1
-rw-r--r--mail/qmhandle/files/patch-qmHandle6
2 files changed, 4 insertions, 3 deletions
diff --git a/mail/qmhandle/Makefile b/mail/qmhandle/Makefile
index df68b17934f8..7489e835285f 100644
--- a/mail/qmhandle/Makefile
+++ b/mail/qmhandle/Makefile
@@ -7,6 +7,7 @@
PORTNAME= qmhandle
PORTVERSION= 1.3.2
+PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= SF
diff --git a/mail/qmhandle/files/patch-qmHandle b/mail/qmhandle/files/patch-qmHandle
index 847e079d7361..a38814cfcffd 100644
--- a/mail/qmhandle/files/patch-qmHandle
+++ b/mail/qmhandle/files/patch-qmHandle
@@ -1,5 +1,5 @@
---- qmHandle.old Tue Aug 7 17:32:57 2007
-+++ qmHandle Tue Aug 7 17:34:55 2007
+--- qmHandle.orig 2007-07-20 02:03:45.000000000 -0300
++++ qmHandle 2008-05-20 15:20:39.000000000 -0300
@@ -26,13 +26,17 @@
# ### Be sure to uncomment only ONE of each variable declarations ###
@@ -27,7 +27,7 @@
-my ($pidcmd) = 'pidof qmail-send';
+#my ($pidcmd) = 'pidof qmail-send';
+# This is for FreeBSD with a standard qmail installation:
-+my ($pidcmd) = 'ps -U qmails | grep qmail-send | cut -s -d " " -f 1';
++my ($pidcmd) = 'pgrep qmail-send';
+
#################### USER CONFIGURATION END ####################