#!/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=5
export destdir = $(CURDIR)/debian/gpsdrive

configure: configure-stamp
configure-stamp:
	dh_testdir
	# Add here commands to configure the package.
	rm -f CMakeCache.txt
	mkdir -p build
	cd build; cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DMAN_INSTALL_DIR=/usr/share/man -DINFO_INSTALL_DIR=/usr/share/info -DDATADIR=/usr/share ..

	touch configure-stamp

build: configure-stamp build-stamp
build-stamp:
	dh_testdir

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

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp debian/files

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

	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the package into debian/gpsdrive.
	cd build; $(MAKE) DESTDIR=$(destdir) install

	debian/create_misssing_man_pages.sh scripts $(destdir)/usr/share/man/man1

	# remove maps from main package, because it 
	# will be buildt in gpsdrive-data-maps package
	rm -rf debian/gpsdrive/usr/share/gpsdrive/maps

	# remove map-icons from gpsdrive-main package. 
	# This is build by the osm-data-map-icons*.deb package
	rm -rf debian/gpsdrive/usr/share/map-icons 
	rm -rf debian/gpsdrive/usr/share/gpsdrive/map-icons

	# remove perl modules since they are in the 
	# openstreetmap-utils package
	find debian/gpsdrive/ -name "*.pm" -print0 | xargs -0 rm
	rm -rf debian/gpsdrive/usr/share/gpsdrive/maps
	rm -rf debian/gpsdrive/usr/local/share/perl
	rmdir debian/gpsdrive/usr/local/share
	rmdir debian/gpsdrive/usr/local

	debian/rename_scripts.sh $(destdir)


# 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
	dh_installdebconf
	dh_installdocs
	dh_pysupport
#	dh_installexamples
	dh_installmenu
	dh_python
	dh_pycentral
#	dh_installinit
#	dh_installcron
#	dh_installinfo
	dh_installman
#	dh_undocumented friendsd2.1 gpspoint2gpsdrive.pl.1 mb2gpsdrive.pl.1 geocache2way.1
	dh_installchangelogs ChangeLog
#	dh_link
	dh_strip
	dh_compress 
	dh_fixperms
	dh_perl
	dh_makeshlibs
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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