#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

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

PETSC_ARCH = linux-gnu

# PETSC_VERSION is used for the package names, library sonames.
PETSC_VERSION=2.2.1

#PETSC_NAME is the install dir under /usr/lib and the base for package names
PETSC_NAME=petsc$(PETSC_VERSION)

CFLAGS = -Wall -g

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

# shared library versions, option 1
version=2.0.5
major=2

configure: configure-stamp
configure-stamp:

	if [ -e $(CURDIR)/RDict.log ]; then \
		mv $(CURDIR)/RDict.log $(CURDIR)/RDict.log.old; \
	fi
	if [ -e $(CURDIR)/RDict.db ]; then \
		mv $(CURDIR)/RDict.db $(CURDIR)/RDict.db.old; \
	fi
	if [ -e $(CURDIR)/configure.log ]; then \
		mv $(CURDIR)/configure.log $(CURDIR)/configure.log.old; \
	fi

	dh_testdir
	# Add here commands to configure the package.
	./config/configure.py -PETSC_DIR=`pwd` --prefix=$(CURDIR)/debian/tmp/usr/lib --with-dynamic=0 --with-X 
	touch configure-stamp

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

	# Add here commands to compile the package.
	$(MAKE) BOPT=g_c++ PETSC_DIR=`pwd`
	$(MAKE) BOPT=O_c++ PETSC_DIR=`pwd`
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp

	# Add here commands to clean up after the build process.
	dh_testdir
	dh_clean --exclude ./python/PETSc/packages/hypre.py.orig --exclude ./python/PETSc/packages/MPI.py.orig --exclude './bmake/common/#variables#' --exclude ./TAGS
	# remove some stray files
	rm -rf configure.log.bkp bmake/linux-gnu bmake/variables bmake/common/bopt_ make_log_linux-gnu_g_c++ make_log_linux-gnu_O_c++ lib
		# remove *.pyc files
	find . -name "*.pyc" -exec rm -rf {} \;

install: build

	dh_testdir
	dh_testroot
	dh_clean -k  --exclude ./python/PETSc/packages/hypre.py.orig --exclude ./python/PETSc/packages/MPI.py.orig --exclude './bmake/common/#variables#' --exclude ./TAGS
	dh_installdirs

	# Add here commands to install the package into debian/tmp
	#$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
	$(MAKE) install	PETSC_DIR=`pwd`
	# Copy in top-level makefile, since DOLFIN needs it.
	cp -a makefile $(CURDIR)/debian/tmp/usr/lib/petsc-2.2.1

	if [ -e $(CURDIR)/RDict.log.old ]; then \
		mv $(CURDIR)/RDict.log.old $(CURDIR)/RDict.log; \
	fi
	if [ -e $(CURDIR)/RDict.db.old ]; then \
		mv $(CURDIR)/RDict.db.old $(CURDIR)/RDict.db; \
	fi
	if [ -e $(CURDIR)/configure.log.old ]; then \
		mv $(CURDIR)/configure.log.old $(CURDIR)/configure.log; \
	fi

# 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_installdocs
	dh_installexamples
	dh_install --sourcedir=debian/tmp
#	dh_installmenu
#	dh_installdebconf	
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_installinit
#	dh_installcron
#	dh_installinfo
	dh_installman
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
#	dh_perl
#	dh_python
	dh_makeshlibs
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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