From: Stuart Cassoff Subject: Re: [UPDATE] comms/hylafax 6.0.6 -> 6.0.7 To: Larry Moore Cc: OpenBSD Ports Date: Sat, 21 Feb 2026 15:05:57 -0500 On Thu, 19 Feb 2026, Larry Moore wrote: > The port has been updated to version 6.0.7. Hi Larry, thanks for your help with this! Sorry, I wanted to CC you in my last mesage but it slipped my mind. Here's a port for 7.0.11 with your changes incorporated. The diff is long so I just attached the port. New: jpeg support. The port is pretty much done. Could use some notes. The PLIST has a lot of @'s. Maybe needa a massage? Looks a bit weird. This old port has been broken/unbroken many times, and has accumulated some cruft, as evidenced by the overkill of patching and setting options and vars to change the same thing. From your changes: This patching isn't needed with 7.0.11. +-PATH=/bin:/usr/bin:/etc ++PATH=$OPATH:/bin:/usr/bin:/etc This isn't needed but maybe it's better to specify anyway? --with-FAXGID="dialer" From the old port: Unless I'm missing something, removing the backslash accomplishes nothing; it will disappear on its own. $ tail -14 patch-configure *-0|*-0.gz|*-0.Z|*-gz|*-Z|*-z) suf=`echo $MANSCHEME | $SED 's/.*-/./'` A='`echo $$i | sed' B='`' # workaround shell bugs - MANCAPPNAME="$A s/\\\\.1\$\$/$suf/$B" - MANCFILENAME="$A s/\\\\.4f\$\$/$suf/$B" - MANSAPPNAME="$A s/\\\\.1m\$\$/$suf/$B" - MANSFILENAME="$A s/\\\\.4f\$\$/$suf/$B" + MANCAPPNAME="$A s/\\\\.1\$$/$suf/$B" + MANCFILENAME="$A s/\\\\.4f\$$/$suf/$B" + MANSAPPNAME="$A s/\\\\.1m\$$/$suf/$B" + MANSFILENAME="$A s/\\\\.4f\$$/$suf/$B" ;; bsd-*-strip) MANCAPPNAME='$$i' Still trying to wrap my head around the intention here. $ head patch-etc_faxsetup_sh_in --- etc/faxsetup.sh.in.orig Wed Jun 6 02:58:38 2012 +++ etc/faxsetup.sh.in Mon Jul 9 15:06:31 2012 @@ -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 "# OpenBSD does not have JBIG-in-TIFF support" Why not? Can it be added? Stu