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
libXext/buildlink3.mk, now that it is included there.
Leave the places where its API version is set or variables from it
are used directly (about 3 packages).
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
not enebled per depault anymore upstream (this doesn't add
dependencies, so it doesn't hurt)
from Helge Muehlmeier per PR pkg/43267
-make faac support optional (off per default) because the needed
library cannot be freely redistributed for patent reasons
bump PKGREVISION
changes:
-v4l improvements
-tcdemux: drop the builtin limit of streams selectable for passthrough
-Fixed the x264 module to work with libx264 >= 76
-Update the video stabilization plugins to version 0.61
-Made libmpeg2 an optional dependency
pkgsrc notes:
-v4l is not supported yet
-added x264 option (on per default)
-libmpeg2 is still mandatory
* bump FFmpeg libraries requisite to SVN >= 20080705. Drop old header
layout support. Drop static linking support (unsupported from ages).
Update user documentation accordingly.
* make AVIStreamHeader structure (more) 64 bit safe.
* keep up with lastest ffmpeg API changes.
PkgSrc:
* Fix buildling with newer ImageMagick
#include <libpostproc/postprocess.h> to
#include <postprocess.h>
As is no longer needed (and breaks configure) with latest ffmpeg,
and instead patch filter_pp.c to include "libpostproc/postprocess.h"
instead of "postprocess.h"
Bump PKGREVISION