summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am5
-rw-r--r--configure.ac6
-rw-r--r--debian/changelog12
-rw-r--r--debian/libxine0.postinst49
-rw-r--r--debian/postrm36
-rw-r--r--debian/preinst36
-rw-r--r--debian/prerm36
-rwxr-xr-xdebian/rules3
8 files changed, 21 insertions, 162 deletions
diff --git a/Makefile.am b/Makefile.am
index 71da49c74..a18f3caaa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,12 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = doc m4 intl po misc include src
+DEBFILES = debian/README.Debian debian/changelog debian/control \
+ debian/copyright debian/overrides.libxine debian/rules \
+ debian/shlibdeps.sh
+
EXTRA_DIST = autogen.sh \
+ $(DEBFILES)
automake.diff \
ChangeLog \
configure \
diff --git a/configure.ac b/configure.ac
index 958143262..b961735ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,15 +33,15 @@ dnl if (any interfaces have been _removed_ or incompatibly changed)
dnl AGE = 0;
dnl }
-LT_CURRENT=2
+LT_CURRENT=3
LT_REVISION=0
-LT_AGE=1
+LT_AGE=2
dnl for a release tarball do "rm .cvsversion" before "make dist"
if test -f .cvsversion; then
XINE_PRE="cvs"
else
- XINE_PRE="beta3"
+ XINE_PRE="beta4"
fi
AC_SUBST(XINE_MAJOR)
diff --git a/debian/changelog b/debian/changelog
index 94cb41b3d..91d8aacfb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+xine-lib (1-beta4-1) unstable; urgency=low
+
+ * new upstream release (fixes compilation on mmx capable ix86 machines)
+
+ -- Siggi Langauf <siggi@debian.org> Wed, 29 Jan 2003 19:37:15 +0100
+
+xine-lib (1-beta3-1) unstable; urgency=low
+
+ * new upstream release
+
+ -- Siggi Langauf <siggi@debian.org> Tue, 28 Jan 2003 21:41:05 +0100
+
xine-lib (1-beta2-4) unstable; urgency=low
* removed HPPA compiler hacks (3.2 is now default, and it choked anyway...)
diff --git a/debian/libxine0.postinst b/debian/libxine0.postinst
deleted file mode 100644
index 5714dc0f5..000000000
--- a/debian/libxine0.postinst
+++ /dev/null
@@ -1,49 +0,0 @@
-#! /bin/sh
-# postinst script for xine-lib
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postinst> `configure' <most-recently-configured-version>
-# * <old-postinst> `abort-upgrade' <new version>
-# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-# <new-version>
-# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-# <failed-install-package> <version> `removing'
-# <conflicting-package> <version>
-# for details, see /usr/share/doc/packaging-manual/
-#
-# quoting from the policy:
-# Any necessary prompting should almost always be confined to the
-# post-installation script, and should be protected with a conditional
-# so that unnecessary prompting doesn't happen if a package's
-# installation fails and the `postinst' is called with `abort-upgrade',
-# `abort-remove' or `abort-deconfigure'.
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-
-case "$1" in
- configure)
- ldconfig
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
-
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-
-exit 0
-
-
diff --git a/debian/postrm b/debian/postrm
deleted file mode 100644
index 5b9cc6c35..000000000
--- a/debian/postrm
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# postrm script for xine-lib
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postrm> `remove'
-# * <postrm> `purge'
-# * <old-postrm> `upgrade' <new-version>
-# * <new-postrm> `failed-upgrade' <old-version>
-# * <new-postrm> `abort-install'
-# * <new-postrm> `abort-install' <old-version>
-# * <new-postrm> `abort-upgrade' <old-version>
-# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# for details, see /usr/share/doc/packaging-manual/
-
-case "$1" in
- purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
-
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 0
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-
diff --git a/debian/preinst b/debian/preinst
deleted file mode 100644
index d43a07985..000000000
--- a/debian/preinst
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# preinst script for xine-lib
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <new-preinst> `install'
-# * <new-preinst> `install' <old-version>
-# * <new-preinst> `upgrade' <old-version>
-# * <old-preinst> `abort-upgrade' <new-version>
-#
-# For details see /usr/share/doc/packaging-manual/
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100644
index 8be8456bc..000000000
--- a/debian/prerm
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# prerm script for xine-lib
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <prerm> `remove'
-# * <old-prerm> `upgrade' <new-version>
-# * <new-prerm> `failed-upgrade' <old-version>
-# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-# * <deconfigured's-prerm> `deconfigure' `in-favour'
-# <package-being-installed> <version> `removing'
-# <conflicting-package> <version>
-# for details, see /usr/share/doc/packaging-manual/
-
-case "$1" in
- remove|upgrade|deconfigure)
- ;;
- failed-upgrade)
- ;;
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/debian/rules b/debian/rules
index 8cce46555..db496be66 100755
--- a/debian/rules
+++ b/debian/rules
@@ -85,7 +85,6 @@ install: build
$(MAKE) install prefix=$(CURDIR)/debian/libxine-dev/usr \
LIBRARY_PATH=$(CURDIR)/debian/libxine-dev/usr/lib
mkdir -p $(CURDIR)/debian/libxine$(major)/usr/share/lintian/overrides
- echo "MAJOR= >>$(major)<<"
cp $(CURDIR)/debian/overrides.libxine \
$(CURDIR)/debian/libxine$(major)/usr/share/lintian/overrides/libxine$(major)
@@ -116,7 +115,7 @@ binary-arch: build install
dh_strip
dh_compress
dh_fixperms
- dh_makeshlibs -V 'libxine1 (>= 1-beta2)'
+ dh_makeshlibs -V 'libxine1 (>= 1-beta3)'
dh_installdeb
# dh_shlibdeps
chmod +x debian/shlibdeps.sh