openbsd-ports/comms/hylafax/patches/patch-etc_faxsetup_sh_in
giovanni 2086b9c2f3 Major update to 6.0.5
lot of bug fixes and improvements
old protocol has been removed
Full changelog available at
http://git.hylafax.org/HylaFAX?a=blob;f=doc/RELEASENOTES-6.0.txt;hb=6.0
2011-05-24 16:24:35 +00:00

38 lines
1.6 KiB
Plaintext

$OpenBSD: patch-etc_faxsetup_sh_in,v 1.2 2011/05/24 16:24:35 giovanni Exp $
--- etc/faxsetup.sh.in.orig Wed Sep 15 16:42:36 2010
+++ etc/faxsetup.sh.in Wed Apr 20 15:12:06 2011
@@ -45,7 +45,7 @@ PATH=/bin:/usr/bin:/etc
test -d /usr/ucb && PATH=$PATH:/usr/ucb # Sun and others
test -d /usr/bsd && PATH=$PATH:/usr/bsd # Silicon Graphics
test -d /usr/5bin && PATH=/usr/5bin:$PATH:/usr/etc # Sun and others
-test -d /usr/sbin && PATH=/usr/sbin:$PATH # 4.4BSD-derived
+test -d /sbin && PATH=/usr/sbin:$PATH # 4.4BSD-derived
test -d /usr/local/bin && PATH=$PATH:/usr/local/bin # for GNU tools
AWK=@AWK@ # awk for use below
@@ -76,8 +76,8 @@ UUENCODE="@UUENCODE@" # uuencode command to dump in s
FAX=@FAXUID@ # identity of the fax user
SERVICES=/etc/services # location of services database
-INETDCONF=/usr/etc/inetd.conf # default location of inetd configuration file
-ALIASES=/usr/lib/aliases # default location of mail aliases database file
+INETDCONF=/etc/inetd.conf # default location of inetd configuration file
+ALIASES=/etc/mail/aliases # default location of mail aliases database file
PASSWD=/etc/passwd # where to go for password entries
PROTOUID=@FAXUID@ # user who's uid we use for FAX user
defPROTOUID=3 # use this uid if PROTOUID doesn't exist
@@ -2265,12 +2265,7 @@ if onServer; then
findproc()
{
- # NB: ps ax should give an error on System V, so we try it first!
- pid="`ps ax 2>/dev/null | $AWK \"\
- /[\/ (]$1[ )]/ {print \\$1;}
- /[\/ ]$1\$/ {print \\$1;}\"`"
- test "$pid" ||
- pid="`ps -e 2>/dev/null | $AWK \"/ $1[ ]*\$/ {print \\$1;}\"`"
+ pid="`/usr/bin/pgrep $1`"
echo "$pid"
}