#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# This is the debhelper compatability version to use.
export DH_COMPAT=3

configure: configure-stamp
configure-stamp:
	dh_testdir
	# Add here commands to configure the package.
	aclocal-1.6 -I .
	automake-1.6 -a --foreign
	autoconf
	./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info

	touch configure-stamp

patch: patch-stamp
patch-stamp:
	dh_testdir
	
	patch -p1 < debian/patches/01_gcc4.patch
	touch patch-stamp

build: patch build-stamp

build-stamp: configure-stamp
	dh_testdir

	# Add here commands to compile the package.
	$(MAKE)
	#/usr/bin/docbook-to-man debian/tapiir.sgml > tapiir.1

	touch build-stamp

unpatch: patch unpatch-stamp
unpatch-stamp:
	dh_testdir

	if [ -e patch-stamp ]; then \
		patch -p1 -R < debian/patches/01_gcc4.patch ; \
		rm patch-stamp ; \
	fi

clean: unpatch
	dh_testdir
	dh_testroot

	# Generate the makefile, if it is not there
	#if [ ! -f Makefile ]; then \
	#	rm -f configure-stamp;\
	#	debian/rules configure;\
	#fi
	#rm -f build-stamp configure-stamp

	# Add here commands to clean up after the build process.
	-$(MAKE) distclean

	dh_clean

	# Remove automake generated stuff

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the package into debian/tapiir.
	$(MAKE) install prefix=$(CURDIR)/debian/tapiir/usr
	# Remove empty files
	rm -f NEWS README


# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
	dh_testdir
	dh_testroot
#	dh_installdebconf	
	dh_installdocs
	find debian/tapiir/ -true -name CVS | xargs rm -f -R
#	dh_installexamples
	dh_installmenu
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_installinit
	dh_installcron
	dh_installman doc/tapiir.1 doc/tapiir_alsa.1 doc/tapiir_jack.1
	dh_installinfo
#	dh_undocumented
	dh_installchangelogs
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
#	dh_makeshlibs
	dh_installdeb
#	dh_perl
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
