r1341 - in /experimental/libquicktime/debian: changelog rules
fabian-guest at users.alioth.debian.org
fabian-guest at users.alioth.debian.org
Mon Aug 11 09:31:53 UTC 2008
Author: fabian-guest
Date: Mon Aug 11 09:31:52 2008
New Revision: 1341
URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=1341
Log:
* debian/rules:
+ Introduced the "externalcodecs" keyword as in the ffmpeg-debian packages.
Set this in DEB_BUILD_OPTIONS to enable support for additional codecs via
external libraries.
Modified:
experimental/libquicktime/debian/changelog
experimental/libquicktime/debian/rules
Modified: experimental/libquicktime/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-multimedia/experimental/libquicktime/debian/changelog?rev=1341&op=diff
==============================================================================
--- experimental/libquicktime/debian/changelog (original)
+++ experimental/libquicktime/debian/changelog Mon Aug 11 09:31:52 2008
@@ -9,10 +9,14 @@
+ Changed to use the "©" symbol instead of "Copyright (C)".
* debian/libquicktime-docs, debian/rules:
+ Moved documentation from libquicktime-dev to libquicktime-doc.
+ * debian/rules:
+ + Introduced the "externalcodecs" keyword as in the ffmpeg-debian packages.
+ Set this in DEB_BUILD_OPTIONS to enable support for additional codecs via
+ external libraries.
* debian/watch:
+ Mangled version to remove the "+debian" string.
- -- Fabian Greffrath <fabian at debian-unofficial.org> Fri, 8 Aug 2008 10:00:00 +0100
+ -- Fabian Greffrath <fabian at debian-unofficial.org> Mon, 11 Aug 2008 11:30:00 +0100
libquicktime (2:1.0.3+debian-1) experimental; urgency=low
Modified: experimental/libquicktime/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/experimental/libquicktime/debian/rules?rev=1341&op=diff
==============================================================================
--- experimental/libquicktime/debian/rules (original)
+++ experimental/libquicktime/debian/rules Mon Aug 11 09:31:52 2008
@@ -7,6 +7,17 @@
VERSION := `dpkg-parsechangelog | grep 'Version: '| sed 's/Version: //g' | cut -d ':' -f 2 | cut -d '+' -f 1`
DEB_CONFIGURE_EXTRA_FLAGS += --enable-gpl --with-libdv
+
+# Support for additional external codecs
+ifneq (,$(findstring externalcodecs,$(DEB_BUILD_OPTIONS)))
+ weak-build-deps += libmp3lame-dev | liblame-dev
+ DEB_CONFIGURE_EXTRA_FLAGS += --with-lame
+ weak-build-deps += libfaac-dev
+ DEB_CONFIGURE_EXTRA_FLAGS += --with-faac
+ weak-build-deps += libx264-dev
+ DEB_CONFIGURE_EXTRA_FLAGS += --with-x264
+ $(warning Make sure these packages are installed: $(weak-build-deps))
+endif
DEB_DH_INSTALL_SOURCEDIR := debian/tmp
More information about the pkg-multimedia-commits
mailing list