changes:
Documentation updates (including translations)
Updated UI translations
Fixes and an enhancement to the Scripter
Additional build options
Major and minor bugfixes, ranging from crashes in some corner cases to
usability improvements
pkgsrc notes:
-the new hunspell based spell checker didn't do anything useful for
me, still using aspell for now
-enabled cups (hard to diasable, cmake picks it up even if not bl3'd
changes:
-Addition of the GiveLife Color System(R) swatch palettes
-Addition of undo steps for path operations and page moving
-Enhancements to scripter
-Translation updates
-Relocation of profiles and swatches to the share directory
-bugfixes
pkgsrc note: switched from lcms1 to lcms2 -- this was not necessary
technically, but it is harder to keep cmake from picking up lcms2
if both versions are present
this is the first stable release after the 1.3.9 development cycle
changes:
-bugfixes
-documentation updates
-translation updates
Warning: Documents created by this pkg cannot be read by
version 1.3.3.x (pkgsrc/print/scribus).
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