NEW IN VERSION 3.5.23
------------------------
- Djview3 has been deprecated by djview4 whose source comes in
its own tarball. Use configure option --enable-djview to force
the compilation of djview3.
- Set ddjvuapi_version to 19.
- Added ddjvu_document_create_by_filename_utf8
- Generate icons with rsvg rather than imagemagick.
- djvused: correctly outputs escape characters.
- djvumake: added options to generate foreground colors.
- Various bug fixes.
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
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.
after the last update.
(due to use of a locking primitive which is only available on 486+
while gcc defaults to -march=i386)
This might also fix PR pkg/40630 by Kamel Derouiche.
bump PKGREVISION
NEW IN VERSION 3.5.19
---------------------
- License change. Starting with version 3.5.19,
DjVuLibre is distributed under either version 2 of the GPL
or (at your option) any later version.
Previous version were released strictly under
the GPL version 2.
NEW IN VERSION 3.5.18
---------------------
- Renamed djview as djview3.
- Various enhancement of DDJVUAPI.
- Partial support for page titles instead of page numbers.
- Clarification of metadata information.
- Fixed djvumake mask separation feature.
- Complain when given a so-called "secure" djvu file.
- Fixed handling of urls with cgi arguments
- Fixed bug related to caching and ddjvuapi
- Reorganized ${datadir}/djvu
- Provide scripts in ${datadir}/djvu/*/desktop to register
the djvu mime types and the djview menu entries.