alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in *; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" "$i"
fi
done
done
The Changes are too much to list here.
See the file in build directory
hylafax-4.4.7/doc/RELEASENOTES-4.3.txt
hylafax-4.4.7/doc/RELEASENOTES-4.4.txt
Note that versions of related packages for now are
comms/hylafax 4.2.5
wip/hylafax 4.4.7
wip/hylafax-devel 4.4.0
the minor update for 'configure' made version 4.3.4 packages OK,
the fix pulled out from comms/hylafax.
(although PKG_DESTDIR_SUPPOR is not yet)
.. sorry for separate commit with patch/patch-ae ..
hylafax is a release spin off from wip/hylafax-devel.
hylafax will stay with releases and get imports
to its (cvs speek) vendor branch, whenever hylafax-devel reaches the next release.
It is thought as the hylafax source for pkgsrc-imports.
hylafax-devel will continue to be a testbed for the next release.