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.
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
Version 1.2.1 (released 18 Apr 2009)
* Remove signbit() from ProjectionIcosagnomonic.cpp
* Add shadows from satellites on Saturn's rings, let brightness of
rings go to zero as Saturn approaches equinox.
* Add trail_output option to satellite files to print out
satellite positions.
* Calculate eclipse shadows a little past the terminator so they
don't get cut off sharply.
* Reload satellite files in case TLE files are updated between
renderings. Suggested by Lutz M
* Added Lambert Equal Area projection
* Check that -origin above or below is not specified for the Sun.
* Added a definition for signbit() in ProjectionIcosagnomonic.cpp
* Add patch from Doug Hawkins to support marker_* keywords in
config file.
* Added the -label_body option. This is useful in conjunction
with -separation to specify which body the label should apply to.
* Added the -separation option. This places the observer at a
point in space where two bodies have the specified separation.
* Allow -glare 0 to remove sun glare.
* Fixed a bug where arcs were sometimes not drawn if they were
vertical or horizontal lines.
* A thickness value may now be specified for arcs.
* Added max_radius and min_radius keywords to marker files. This
disables drawing of the marker if the planet radius is larger than
or smaller than the specified value, respectively.
* Fixed a bug where the arc color was not reset to the default
color for subsequent arcs in the file.
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or
via buildlink3.mks
- introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm
in the !modular case
- fix some cases where the check for libX11 couldn't work at all by using
C++ for compilation without including the proper headers
Verified using a full X11_TYPE=xorg bulk build without additional
breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.