diff options
author | delphij <delphij@FreeBSD.org> | 2009-06-16 00:42:41 +0800 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2009-06-16 00:42:41 +0800 |
commit | c7ede1e5d1a213358720a2baa75741d955980f46 (patch) | |
tree | b816d030ef55db799acff4fca01dd9cc88ed72b8 /mail/prayer | |
parent | 5c0dda265c642b1ce5d1af98965e2ce837255ea9 (diff) | |
download | freebsd-ports-gnome-c7ede1e5d1a213358720a2baa75741d955980f46.tar.gz freebsd-ports-gnome-c7ede1e5d1a213358720a2baa75741d955980f46.tar.zst freebsd-ports-gnome-c7ede1e5d1a213358720a2baa75741d955980f46.zip |
Fix incorrect paths to gzip, chown, and chgrp.
PR: ports/135414
Submitted by: Antonio Querubin <tony lava net>
Approved by: maintainer
Diffstat (limited to 'mail/prayer')
-rw-r--r-- | mail/prayer/Makefile | 1 | ||||
-rw-r--r-- | mail/prayer/files/patch-utils__prayer-cyclog.SRC | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/mail/prayer/Makefile b/mail/prayer/Makefile index 6f6e395e20d5..ea47ec9637d0 100644 --- a/mail/prayer/Makefile +++ b/mail/prayer/Makefile @@ -7,6 +7,7 @@ PORTNAME= prayer PORTVERSION= 1.3.1 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/prayer/ diff --git a/mail/prayer/files/patch-utils__prayer-cyclog.SRC b/mail/prayer/files/patch-utils__prayer-cyclog.SRC new file mode 100644 index 000000000000..9591941713d7 --- /dev/null +++ b/mail/prayer/files/patch-utils__prayer-cyclog.SRC @@ -0,0 +1,20 @@ +--- utils/prayer-cyclog.SRC 2003/04/15 13:00:03 1.1 ++++ utils/prayer-cyclog.SRC 2003/07/30 18:43:46 +@@ -4,9 +4,16 @@ + suffix=gz + # Following is correct for Linux. +-compress="/bin/gzip" +-chown="/bin/chown" +-chgrp="/bin/chgrp" ++#compress="/bin/gzip" ++#chown="/bin/chown" ++#chgrp="/bin/chgrp" ++#mv="/bin/mv" ++#rm="/bin/rm" ++ ++# Following is correct for FreeBSD ++compress="/usr/bin/gzip" ++chown="/usr/sbin/chown" ++chgrp="/usr/bin/chgrp" + mv="/bin/mv" + rm="/bin/rm" |