r1347 - in /unstable/a52dec/debian: changelog control lintian/ rules
fabian-guest at users.alioth.debian.org
fabian-guest at users.alioth.debian.org
Tue Aug 19 13:56:48 UTC 2008
Author: fabian-guest
Date: Tue Aug 19 13:56:48 2008
New Revision: 1347
URL: http://svn.debian.org/wsvn/pkg-multimedia/?sc=1&rev=1347
Log:
* debian/control:
+ Removed the "XS-" prefix from the Vcs-Svn and Vcs-Browser fields.
+ Added Homepage field, removed links from package descriptions.
* debian/lintian/liba52-0.7.4-dev, debian/rules:
+ Removed lintian overrides file.
* debian/rules:
+ Fixed debian-rules-ignores-make-clean-error.
+ Changed to copy /usr/share/misc/config.{sub,guess} in place just before
the ./configure call and remove the files in the clean target.
Removed:
unstable/a52dec/debian/lintian/
Modified:
unstable/a52dec/debian/changelog
unstable/a52dec/debian/control
unstable/a52dec/debian/rules
Modified: unstable/a52dec/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/a52dec/debian/changelog?rev=1347&op=diff
==============================================================================
--- unstable/a52dec/debian/changelog (original)
+++ unstable/a52dec/debian/changelog Tue Aug 19 13:56:48 2008
@@ -1,8 +1,20 @@
a52dec (0.7.4-12) UNRELEASED; urgency=low
+ [ Loic Minier ]
* Let liba52-0.7.4-dev depend on ${shlibs:Depends}; thanks Niko Tyni.
- -- Loic Minier <lool at dooz.org> Thu, 17 Jan 2008 18:48:45 +0100
+ [ Fabian Greffrath ]
+ * debian/control:
+ + Removed the "XS-" prefix from the Vcs-Svn and Vcs-Browser fields.
+ + Added Homepage field, removed links from package descriptions.
+ * debian/lintian/liba52-0.7.4-dev, debian/rules:
+ + Removed lintian overrides file.
+ * debian/rules:
+ + Fixed debian-rules-ignores-make-clean-error.
+ + Changed to copy /usr/share/misc/config.{sub,guess} in place just before
+ the ./configure call and remove the files in the clean target.
+
+ -- Fabian Greffrath <fabian at debian-unofficial.org> Tue, 19 Aug 2008 15:00:00 +0200
a52dec (0.7.4-11) unstable; urgency=low
Modified: unstable/a52dec/debian/control
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/a52dec/debian/control?rev=1347&op=diff
==============================================================================
--- unstable/a52dec/debian/control (original)
+++ unstable/a52dec/debian/control Tue Aug 19 13:56:48 2008
@@ -5,8 +5,9 @@
Uploaders: Fabian Greffrath <fabian at debian-unofficial.org>, Sam Hocevar (Debian packages) <sam+deb at zoy.org>
Build-Depends: debhelper (>= 5), dpatch, autotools-dev
Standards-Version: 3.7.2
-XS-Vcs-Svn: svn://svn.debian.org/pkg-multimedia/unstable/a52dec
-XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-multimedia/unstable/a52dec/
+Vcs-Svn: svn://svn.debian.org/pkg-multimedia/unstable/a52dec
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-multimedia/unstable/a52dec/
+Homepage: http://liba52.sourceforge.net/
Package: liba52-0.7.4
Section: libs
@@ -16,8 +17,6 @@
liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is
used in a variety of applications, including digital television and DVD. It is
also known as AC-3.
- .
- Homepage: <http://liba52.sourceforge.net/>
Package: liba52-0.7.4-dev
Section: libdevel
@@ -32,6 +31,4 @@
used in a variety of applications, including digital television and DVD. It is
also known as AC-3.
.
- Homepage: <http://liba52.sourceforge.net/>
- .
This package contains the development files.
Modified: unstable/a52dec/debian/rules
URL: http://svn.debian.org/wsvn/pkg-multimedia/unstable/a52dec/debian/rules?rev=1347&op=diff
==============================================================================
--- unstable/a52dec/debian/rules (original)
+++ unstable/a52dec/debian/rules Tue Aug 19 13:56:48 2008
@@ -21,6 +21,13 @@
config.status: configure patch-stamp
dh_testdir
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+ cp -f /usr/share/misc/config.sub autotools/config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+ cp -f /usr/share/misc/config.guess autotools/config.guess
+endif
+
# Configuring package
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --enable-shared
@@ -39,13 +46,8 @@
rm -f build-stamp
# Cleaning package
- -$(MAKE) distclean
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
- cp -f /usr/share/misc/config.sub autotools/config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
- cp -f /usr/share/misc/config.guess autotools/config.guess
-endif
+ [ ! -f Makefile ] || $(MAKE) distclean
+ rm -f autotools/config.sub autotools/config.guess
dh_clean
@@ -58,12 +60,6 @@
# Installing package
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
cp -a liba52/a52_internal.h debian/tmp/usr/include/a52dec
-
- # Installing lintian overrides
- for LINTIAN in debian/lintian/*; \
- do \
- install -D -m 0644 $$LINTIAN debian/`basename $$LINTIAN`/usr/share/lintian/overrides/`basename $$LINTIAN` || exit 1; \
- done
binary-indep: build install
More information about the pkg-multimedia-commits
mailing list