2014-05-31 17:57:19 by Thomas Klausner | Files touched by this commit (18) |
Log message:
Stop using mk/giflib, use giflib/bl3.mk directly.
|
2014-05-31 17:44:06 by Thomas Klausner | Files touched by this commit (3) |
Log message:
Use mk/giflib instead of libungif.
|
2012-10-29 00:40:34 by Thomas Klausner | Files touched by this commit (3) |
Log message:
As promised a week ago, remove arts and aalib from default suggested
options.
arts is obsolete and aalib only ever was a nice hack, not something
to be enabled by default.
|
2012-10-03 17:09:47 by Aleksej Saushev | Files touched by this commit (124) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
|
2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78) |
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-09-14 15:03:31 by Aleksey Cheusov | Files touched by this commit (3) |
Log message:
Update to mplayer-20100913.
sourceforge.net/projects/commondistfiles is used as a master site.
Clean-ups.
|
2010-09-13 15:34:22 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
remove http://mx1.nygren.pp.se/misc/ from master sites as requested by tnn@
|
2010-09-12 11:24:24 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
Add --with-dvdnav-config and --with-dvdread-config tp CONFIGURE_ARGS
|
2010-09-11 22:55:28 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
Remove --realcodecsdir and --win32codecsdir from CONFIGURE_ARGS, they are
not provided by configure script anymore.
Fix for dvdnav option.
|
2010-09-11 22:11:14 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
Fix in DEPENDS: s/MPLAYER_PKG_VERSION/MPLAYER_VERSION/
|