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.
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.
1) This release fixes an inappropriate change to the internal
library version number (.soname or equivalent) made in 5.2.8.
All distributors should immediately apply this update to their
distributions to avoid other software linking against
libgutenprint breaking.
2) Duplicate Transparency entries in the media types for Canon
iP4100 and similar printers have been removed.
3) The range of fine position adjustment of CD media has been
increased for Epson printers.
4) The German translation has been updated.
5) Canon PIXMA Pro9000 plain media high quality mode bug fix.
* Changes from 5.2.7
1) The Canon driver has been significantly overhauled for this
release, and output (and in some cases functionality) may be
significantly different from previous releases. We expect to
perform further work in future releases. Specific changes
include:
[Massive list of Canon printers with changes]
2) New printers supported in this release:
[many]
3) A problem whereby printing did not work at all on some Linux
distributions has been fixed (3299815 CUPS PPD broken on Linux).
4) A crash with the EPSON Stylus Photo R3000 has been fixed.
5) Printing on the Epson Stylus NX200, SX200, and SX205 is believed
to be corrected.
6) A build problem with libgutenprintui2 and testpattern on certain
platforms has been fixed.
7) Chinese (Mandarin), Galician, and Ukrainian translations have
been added.
8) (API) Added function stp_vars_copy_from() to override settings in
one settings object with those in another.
for full details):
1) New printers supported in this release:
- Canon inkjet printers (many):
- Epson inkjet printers (many):
- Dye sublimation printers:
Kodak EasyShare G600 Printer Dock
Kodak PD-4000
Kodak PD-6000
Kodak Photo Printer
Kodak Photo Printer 500
Kodak Printer Dock Plus
Kodak Printer Dock Plus S3
2) Corrected color matching profile used for Mac OS X 10.5.x.
sRGB will now be used instead of Generic RGB. Users with work-
flows dependant on the previously used Generic RGB can select
this color profile in the print window by using ColorSync to
choose the profile rather than using VendorMatching.
9) Corrected base density for Photo Paper on printers using Claria
ink (use 20% less ink). The default results in heavy ink
puddling in some cases.
12) A problem whereby certain malformed PPD files would cause the
PostScript driver to crash has been fixed. In addition, the
PostScript driver now runs considerably faster.
* Changes from 5.2.3
1) New printers supported in this release:
Canon PIXMA iX4000
Canon SELPHY CP-520
EPSON Stylus Photo R2880
EPSON Stylus DX4000
2) Printing to the Epson PM-D600 has been corrected.
3) Printing using the manual sheet guide on the Epson Stylus Photo
R2400 has been corrected.
4) Printing to the EPSON Artisan 700 and 800 and Stylus Photo
P/TX700 and 800 series printers has been corrected. Among other
issues, it should now be possible to print reliably using the
photo tray.
5) The names of the following Epson printers have been corrected:
EPSON Stylus Photo PX700W
EPSON Stylus Photo TX700W
EPSON Stylus Photo PX800FW
EPSON Stylus Photo TX800FW
6) The names of various Ricoh and Ricoh-based printers have been
corrected to match Ricoh's model names and the OpenPrinting
database.
7) The EPSON inkjet utility, escputil, now correctly prints the
color name for low ink warnings.
8) Printing resolution names have been fixed in non-English locales
in CUPS PPD files.
9) A Russian translation has been added. The Danish and Italian
translations have been updated.
10) Support has been added for L-size paper with tear-off borders.
11) The ordering of inks in quadtone ink sets on Epson printers has
been corrected. In addition, support has been added for MIS
quadtone and 6 tone inks.
12) It is now possible to adjust the ink parameters for quadtone
inks in CUPS. Previously, these parameters could only be
adjusted in the enhanced Print plugin for GIMP and other native
Gutenprint applications.
13) Updating CUPS PPD files is now faster.
were moved or renamed.
This was for some from 2008 and 2009 and one from 2001.
Also I noticed that a CHANGES entry was wrong as said "Renamed"
when should have said "Moved" (lua-OSBF) because PKGBASE stayed the
same.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.