diff options
author | petef <petef@FreeBSD.org> | 2004-01-14 12:35:54 +0800 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2004-01-14 12:35:54 +0800 |
commit | e50b97e297b32390acae0df9d3aa771c5d9b56ce (patch) | |
tree | 8a7161028dceae36ff5cc679cb018c450168219c /mail/qmhandle | |
parent | 1b16cb330464f5e08b456f91e9679f79f5c12871 (diff) | |
download | freebsd-ports-gnome-e50b97e297b32390acae0df9d3aa771c5d9b56ce.tar.gz freebsd-ports-gnome-e50b97e297b32390acae0df9d3aa771c5d9b56ce.tar.zst freebsd-ports-gnome-e50b97e297b32390acae0df9d3aa771c5d9b56ce.zip |
Make the command we use for finding a PID really work. Bump PORTREVISION.
Submitted by: Shawn Yeager <mail@shawnyeager.com>
Diffstat (limited to 'mail/qmhandle')
-rw-r--r-- | mail/qmhandle/Makefile | 1 | ||||
-rw-r--r-- | mail/qmhandle/files/patch-qmHandle | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mail/qmhandle/Makefile b/mail/qmhandle/Makefile index f3cca218c284..d2bfb860ac20 100644 --- a/mail/qmhandle/Makefile +++ b/mail/qmhandle/Makefile @@ -7,6 +7,7 @@ PORTNAME= qmHandle PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= qmhandle diff --git a/mail/qmhandle/files/patch-qmHandle b/mail/qmhandle/files/patch-qmHandle index f894d23c0365..e0b05bfe1b91 100644 --- a/mail/qmhandle/files/patch-qmHandle +++ b/mail/qmhandle/files/patch-qmHandle @@ -24,7 +24,7 @@ $FreeBSD$ -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 3'; ++my ($pidcmd) = 'ps -U qmails | grep qmail-send | cut -s -d " " -f 1'; + #################### USER CONFIGURATION END #################### |