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

PACKAGE = conglomerate

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

include /usr/share/dpatch/dpatch.make
# for the targets `patch`', `patch-stamp' and `unpatch'.

# 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)


CFLAGS = -Wall -g

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif

config.status: configure
	dh_testdir
	# Commands to configure the package.
	./configure --host=$(DEB_HOST_GNU_TYPE) \
	--build=$(DEB_BUILD_GNU_TYPE) \
	--prefix=/usr --mandir=\$${prefix}/share/man \
	--sysconfdir=/etc \
	--enable-debug \
	--infodir=\$${prefix}/share/info \
	--enable-gtk-doc=no \
	--datadir=\$${prefix}/share || cat config.log


build: build-stamp

build-stamp: patch config.status
	dh_testdir

	# Commands to compile the package.
	$(MAKE)
	# `cd doc/C ; ./manpage.make`, asume that manual is up-to-date
	cp src/conglomerate src/conglomerate-dbg

	touch build-stamp


clean: unpatch
	dh_testdir
	dh_testroot
	rm -f build-stamp

	# Add here commands to clean up after the build process.
	-$(MAKE) distclean
	rm -f doc/C/conglomerate-C.omf.out
	rm -f intltool-extract intltool-merge intltool-update
	rm -f po/.intltool-merge-cache
	rm -f conglomerate

	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# using src/Makefile to get files into the package
	GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=yes \
 	$(MAKE) install DESTDIR=$(CURDIR)/debian/conglomerate
	cp debian/conglomerate_icon.xpm $(CURDIR)/debian/conglomerate/usr/share/pixmaps/conglomerate_icon.xpm
	chmod 644 $(CURDIR)/debian/conglomerate/usr/share/pixmaps/conglomerate_icon.xpm

	# and for the debug package conglomerate-dbg
	mkdir -p $(CURDIR)/debian/conglomerate-dbg/usr/bin
	cp src/conglomerate-dbg $(CURDIR)/debian/conglomerate-dbg/usr/bin/
	chmod 755 $(CURDIR)/debian/conglomerate-dbg/usr/bin/conglomerate-dbg


# 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_installchangelogs ChangeLog
	dh_installdocs
	dh_installexamples
	dh_installmenu
	dh_installman doc/C/conglomerate.1
	dh_scrollkeeper
	dh_link
	dh_strip --exclude=conglomerate-dbg
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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