Skip to content
Snippets Groups Projects
Commit b4631daf authored by Chris Cheney's avatar Chris Cheney
Browse files

One last time... (I hope)

git-svn-id: http://svn.xiph.org/trunk/ao@2593 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent 1638846d
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ libao (0.8.2-1) unstable; urgency=low
* New upstream.
* Changed to building alsa 0.9.x plugin instead of obsolete 0.5.x (Closes: #103787)
* added autotools target (config.* updater) to rules
-- Christopher L Cheney <ccheney@debian.org> Tue, 11 Dec 2001 23:00:00 -0600
......@@ -58,5 +59,4 @@ libao (0.5.0-1) unstable; urgency=low
Local variables:
mode: debian-changelog
add-log-mailing-address "ccheney@debian.org"
End:
......@@ -2,7 +2,7 @@ Source: libao
Section: libs
Priority: optional
Maintainer: Christopher L Cheney <ccheney@debian.org>
Build-Depends: debhelper (>> 3.0.0), libarts-dev, libasound2-dev, libesd0-dev
Build-Depends: debhelper (>> 3.0.0), libarts-dev, libasound2-dev, libesd0-dev, autotools-dev, devscripts
Standards-Version: 3.5.6.0
Package: libao2
......
......@@ -8,13 +8,17 @@
# This is the debhelper compatability version to use.
export DH_COMPAT=3
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
configure: configure-stamp
configure-stamp:
dh_testdir
# Add here commands to configure the package.
# If compiling cvs version change to ./autogen.sh --prefix=/usr
./configure --prefix=/usr
./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \
--prefix=/usr
touch configure-stamp
......@@ -26,7 +30,22 @@ build-stamp:
touch build-stamp
clean:
autotools:
OLDDATESUB=`./config.sub -t | tr -d -` ;\
OLDDATEGUESS=`./config.guess -t | tr -d -` ;\
NEWDATESUB=`/usr/share/misc/config.sub -t | tr -d -` ;\
NEWDATEGUESS=`/usr/share/misc/config.guess -t | tr -d -` ;\
if [ $$OLDDATESUB -lt $$NEWDATESUB -o \
$$OLDDATEGUESS -lt $$NEWDATEGUESS ]; then \
dch -a -p "GNU config automated update: config.sub\
($$OLDDATESUB to $$NEWDATESUB), config.guess\
($$OLDDATEGUESS to $$NEWDATEGUESS)" ;\
cp -f /usr/share/misc/config.sub config.sub ;\
cp -f /usr/share/misc/config.guess config.guess ;\
echo WARNING: GNU config scripts updated from master copies 1>&2 ;\
fi
clean: autotools
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
......@@ -71,4 +90,4 @@ binary-arch: build install
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
.PHONY: autotools build clean binary-indep binary-arch binary install configure
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment