the symptom being that ftttdrv.h (from freetype2) is not found. It
turns out that native X11 doesn't install ftttdrv.h for some reason
(probably an oversight) but that the lack is easily compensated
because the whole file contains only two substantive lines, neither of
which appears to be especially important.
PR 50902.
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
* Did a lot of work to improve the accuracy in remove overlap. Improved
accuracy means that it is less likely to do the wrong thing. Problems happen
when there are points or intersections very close to each other.
(So quadratic glyphs are more likely to have problems than cubics simply
because they have more points, on average).
* Fix various error messages.
* Remove some obsolete documentation.
* Technical fixes to stroking code.
* Add a miterlimit to stroking code.
* FontForge was using the wrong MIME type for svg files. W3C has changed it and
it's now "image/svg+xml" not "image/svg-xml" or "image/svg".
* Since Inkscape images tend to be at unexpected y positions, force the view to
rescale/recenter itself if the result after a paste/import is outside the
current window. (Inkscape tends to put things at the top of a page, but the
origin is at the bottom, and FF looks at the origin.
* A line joint of 180 degrees (which shouldn't have happened in stroking, but
did) caused an infinite loop.
* Typo in add extrema code (again).
* More...
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 fix is a hack. There is code to deal with png versions, but it is
not complete for 1.4.x, and fooled by bl3 wrappers renaming
the library behind the pkg's back.
-patch format string problems leading to possible buffer overflow
(CVE-2010-4259), from Redhat bug#659359
bump PKGREV
* Add support for friendly names attached to style set features (New in OTF 1.6)
* Add support for Mark Sets (New in OTF 1.6)
* Serhij Dubyk has provided a Ukrainian UI
* Alexandre Prokoudine has updated the Russian UI
* Updated Polish translation from Michal
* Various patches from Michal fixing some out of bound array references.
* Added a cvt.find method to the python cvt object which returns the index
in the cvt table of a given value (or -1 if not found)
* more...
* Support composites (references) in bitmap fonts.
* Support for the JSTF table (sfd extension).
* Added a set of new python functions for manipulating CID keyed fonts.
* Added support for reading/writing version 1.8 of Adobe's feature file format.