2011-05-02 13:15:42 by Adam Ciarcinski | Files touched by this commit (9) |
Log message:
Changes 20110222:
* 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...
|
2011-04-22 15:45:23 by OBATA Akio | Files touched by this commit (2234) |
Log message:
recursive bump from gettext-lib shlib bump.
|
2011-03-09 17:46:34 by Matthias Drochner | Files touched by this commit (1) |
Log message:
libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV
|
2011-01-24 13:08:26 by Thomas Klausner | Files touched by this commit (3) |
Log message:
Complete fix for png-1.5.
|
2011-01-24 11:36:58 by Thomas Klausner | Files touched by this commit (2) |
Log message:
First part of png-1.5 fix.
|
2011-01-13 14:52:54 by Thomas Klausner | Files touched by this commit (13) |
Log message:
Update patches for png-1.5.
|
2011-01-13 14:40:12 by Thomas Klausner | Files touched by this commit (1644) |
Log message:
png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.
|
2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254) |
Log message:
Mechanically replace references to graphics/jpeg with the suitable
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
|
2010-12-07 17:58:13 by Matthias Drochner | Files touched by this commit (5) |
Log message:
-make this pkg work with pkg-1.4.x
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
|
2010-10-10 20:44:54 by Thomas Klausner | Files touched by this commit (3) |
Log message:
Fix stack overflow, reported to pkgsrc-users by Nicolas Thauvin using
patch from
http://sourceforge.net/mailarchive/forum.php?thread_name=4C5D676B.3000509%40limes.com.pl&forum_name=fontforge-devel
Bump PKGREVISION.
|