Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.
Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.
Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.
Whitespace cleanups and other nits corrected, where necessary.
changes:
The Barcode Writer has been updated and supports many more barcodes,
including QR.
The Galaxy Gauge# color matching system and color tools have been included.
New color palettes from government agencies (Canada, Germany,
The Netherlands, United Kingdom) have been included.
More Open Source color palettes have been included.
Improvements to the build system.
Improvements to the Preflight Verifier.
The A4 page size limit of TeX-rendered graphics in Render Frames has been
removed.
The Short Words plug-in now supports Danish.
Many updates to the Online Manual.
Bugfixes
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.
While doing that, also bump freetype2 dependency to current pkgsrc
version.
Suggested by tron in PR 47882
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
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