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

debian packaging changes

git-svn-id: http://svn.xiph.org/trunk/ao@3504 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent 20f55537
No related branches found
No related tags found
No related merge requests found
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = changelog control copyright libao-dev.docs libao-dev.files \ EXTRA_DIST = changelog control copyright libao-dev.docs libao-dev.install \
libao.conf libao2.README.Debian libao2.files libao2.manpages rules libao.conf libao2.README.Debian libao2.install libao2.manpages rules
libao (0.8.3-1) unstable; urgency=low
* New upstream.
-- Christopher L Cheney <ccheney@debian.org> Tue, 2 Jul 2002 22:00:00 -0500
libao (0.8.2-1) unstable; urgency=low libao (0.8.2-1) unstable; urgency=low
* New upstream. (Closes: #110858) * New upstream. (Closes: #110858)
......
...@@ -2,7 +2,7 @@ Source: libao ...@@ -2,7 +2,7 @@ Source: libao
Section: libs Section: libs
Priority: optional Priority: optional
Maintainer: Christopher L Cheney <ccheney@debian.org> Maintainer: Christopher L Cheney <ccheney@debian.org>
Build-Depends: debhelper (>> 3.0.0), libarts-dev, libasound2-dev, libesd0-dev, autotools-dev, devscripts Build-Depends: debhelper (>> 4.0.0), libarts-dev, libasound2-dev, libesd0-dev, autotools-dev, devscripts
Standards-Version: 3.5.6.0 Standards-Version: 3.5.6.0
Package: libao2 Package: libao2
...@@ -19,5 +19,5 @@ Architecture: any ...@@ -19,5 +19,5 @@ Architecture: any
Section: devel Section: devel
Depends: libao2 (= ${Source-Version}), libc6-dev Depends: libao2 (= ${Source-Version}), libc6-dev
Description: Cross Platform Audio Output Library Development Description: Cross Platform Audio Output Library Development
The libao-devel package contains the header files and documentation The libao-dev package contains the header files and documentation
needed to develop applications with libao. needed to develop applications with libao.
usr/include/ao/*.h
usr/lib/*.so
usr/lib/*.la
usr/lib/ao/plugins-2/*.la
usr/share/aclocal/ao.m4
debian/tmp/usr/include/ao/ao.h
debian/tmp/usr/include/ao/os_types.h
debian/tmp/usr/include/ao/plugin.h
debian/tmp/usr/lib/ao/plugins-2/libalsa09.la
debian/tmp/usr/lib/ao/plugins-2/libarts.la
debian/tmp/usr/lib/ao/plugins-2/libesd.la
debian/tmp/usr/lib/ao/plugins-2/liboss.la
debian/tmp/usr/lib/libao.la
debian/tmp/usr/lib/libao.so
debian/tmp/usr/share/aclocal/ao.m4
etc/*
usr/lib/*.so.*
usr/lib/ao/plugins-2/*.so
debian/libao.conf etc/
debian/tmp/usr/lib/ao/plugins-2/libalsa09.so
debian/tmp/usr/lib/ao/plugins-2/libarts.so
debian/tmp/usr/lib/ao/plugins-2/libesd.so
debian/tmp/usr/lib/ao/plugins-2/liboss.so
debian/tmp/usr/lib/libao.so.*
...@@ -5,27 +5,50 @@ ...@@ -5,27 +5,50 @@
# Uncomment this to turn on verbose mode. # Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1 #export DH_VERBOSE=1
# This is the debhelper compatability version to use. # This is the debhelper compatibility version to use.
export DH_COMPAT=3 export DH_COMPAT=4
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) # This has to be exported to make some magic below work.
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) export DH_OPTIONS
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
objdir = $(CURDIR)/obj-$(DEB_BUILD_GNU_TYPE)
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -g
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
configure: configure-stamp configure: configure-stamp
configure-stamp: configure-stamp:
dh_testdir dh_testdir
# Add here commands to configure the package.
# If compiling cvs version change to ./autogen.sh --prefix=/usr # CVS does not have configure
./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \ #if test ! -f configure; then \
./autogen.sh ;\
fi
# make build directory
mkdir $(objdir)
# run configure with build tree $(objdir)
cd $(objdir) && \
../configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \
--prefix=/usr --prefix=/usr
touch configure-stamp touch configure-stamp
build: configure-stamp build-stamp build: build-stamp
build-stamp: build-stamp: configure-stamp
dh_testdir dh_testdir
cd $(objdir) && \
$(MAKE) $(MAKE)
touch build-stamp touch build-stamp
...@@ -45,49 +68,88 @@ autotools: ...@@ -45,49 +68,88 @@ autotools:
echo WARNING: GNU config scripts updated from master copies 1>&2 ;\ echo WARNING: GNU config scripts updated from master copies 1>&2 ;\
fi fi
debian-clean:
dh_testdir
dh_testroot
dh_clean
clean: autotools clean: autotools
dh_testdir dh_testdir
dh_testroot dh_testroot
rm -f build-stamp configure-stamp rm -f build-stamp configure-stamp
-$(MAKE) distclean # Remove build tree
rm -rf $(objdir)
# if Makefile exists run distclean
if test -f Makefile; then \
$(MAKE) distclean; \
fi
#if test -d CVS; then \
$(MAKE) cvs-clean ;\
fi
dh_clean dh_clean
install: DH_OPTIONS=
install: build install: build
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_clean -k dh_clean -k
dh_installdirs dh_installdirs
cd $(objdir) && \
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
install -d $(CURDIR)/debian/tmp/etc
install -m 0644 $(CURDIR)/debian/libao.conf $(CURDIR)/debian/tmp/etc
# Build architecture-independent files here. dh_install
binary-indep: build install
# We have nothing to do by default.
# Build architecture-dependent files here. # This single target is used to build all the packages, all at once, or
binary-arch: build install # one at a time. So keep in mind: any options passed to commands here will
# affect _all_ packages. Anything you want to only affect one package
# should be put in another target, such as the install target.
binary-common:
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_movefiles # dh_installxfonts
dh_installchangelogs
dh_installdocs dh_installdocs
dh_installexamples dh_installexamples
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installpam
# dh_installmime
# dh_installinit
# dh_installcron
# dh_installinfo
# dh_undocumented
dh_installman dh_installman
dh_installchangelogs CHANGES
dh_link
dh_strip dh_strip
dh_link
dh_compress dh_compress
dh_fixperms dh_fixperms
dh_makeshlibs -V dh_makeshlibs -V
dh_installdeb dh_installdeb
dh_shlibdeps --exclude=/usr/lib/ao/plugins-2 # dh_perl
dh_shlibdeps
dh_gencontrol dh_gencontrol
dh_md5sums dh_md5sums
dh_builddeb dh_builddeb
# Build architecture independant packages using the common target.
binary-indep: build install
# $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
# Build architecture dependant packages using the common target.
binary-arch: build install
$(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
# Any other binary targets build just one binary package at a time.
binary-%: build install
$(MAKE) -f debian/rules binary-common DH_OPTIONS=-p$*
binary: binary-indep binary-arch binary: binary-indep binary-arch
.PHONY: autotools build clean binary-indep binary-arch binary install configure .PHONY: 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