#!/usr/bin/make -f
# Made with the aid of debhelper by by Joey Hess,
# based on the sample debian/rules file for GNU hello by Ian Jackson.
#
# This is free software; see the GNU General Public Licence
# version 2 or later for copying conditions.  There is NO warranty.
#
# Created for Yodl by co-author Jan Nieuwenhuizen <janneke@gnu.org>,
# currently maintained by Anthony Fok <foka@debian.org> for Debian GNU/Linux.

package = yodl
SHELL = /bin/sh

r = debian/tmp
d = usr/doc/$(package)

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

build: build-stamp
build-stamp:
	dh_testdir

#	./configure --disable-checking --disable-debugging \
#		--enable-printing --prefix=/usr --enable-optimise \
#		--enable-shared

	./configure --prefix=/usr --enable-optimise

	$(MAKE) all

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp
	-$(MAKE) distclean

	# Correct the owner of the out/dummy.dep files when built with sudo.
	if [ -n "$$SUDO_USER" -a -n "$$SUDO_GID" ]; then \
		find . -user root | xargs -r chown --dereference $$SUDO_USER.$$SUDO_GID; \
	else \
		find . -user root | xargs -r chown --dereference $$LOGNAME; \
	fi

	# Remove the following lines when I learn the proper way to do it.  :-)
	rm -f config.h GNUmakefile config.make \
		stepmake/stepmake/stepmake \
		stepmake/stepmake/bin \
		stepmake/stepmake/aclocal.m4 \
		stepmake/GNUmakefile

	# Remove the following lines when these files are removed upstream.
	# or when I decide to put them back.  :-)
	# postinst and prerm were for installing info files in yodl_1.31.2-1.
	-mv debian/postinst debian/postinst.unused
	-mv debian/prerm debian/prerm.unused
	-mv debian/TODO debian/TODO.unused

	dh_clean

install: install-stamp
install-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the package into debian/tmp.
	$(MAKE) prefix=`pwd`/$(r)/usr install

	touch install-stamp

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

binary-arch: build install
#	dh_testversion
	dh_testdir
	dh_testroot
	dh_installdocs ANNOUNCE-1.22 ChangeLog-1.22 TODO *.txt

#		Documentation/*.yo
#	for i in include man topdocs; do \
#		mkdir $(r)/$(d)/$$i; \
#		cp -a Documentation/$$i/*.yo $(r)/$(d)/$$i; \
#	done

	( cd $(r) && for i in usr/bin/yodl2* usr/bin/yodlfixlabels; do \
		ln -s yodlconverters.1.gz usr/man/man1/`basename $$i`.1.gz; \
	done )
#	cp -av debian/yodl.doc-base debian/tmp/usr/share/doc-base/yodl

#	dh_installmenu
#	dh_installcron
#	dh_installmanpages
#	dh_undocumented
	dh_installchangelogs -k NEWS
#	dh_strip
	dh_compress
	dh_fixperms
	dh_suidregister
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
#	dh_makeshlibs
	dh_md5sums
	dh_builddeb

source diff:
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

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