diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-02-16 18:36:35 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-02-16 18:36:35 -0600 |
commit | 56b081e488b8c0b197a77860d9edf5afcee9dfea (patch) | |
tree | d04f517410b44f0dd72af613418d3aa1de6f5c60 /ubuntu/maverick/applications/keximdb/debian/rules | |
parent | c9f7683c9057c9f5c7bd0cf221e205ebdd3ce6c2 (diff) | |
download | tde-packaging-56b081e488b8c0b197a77860d9edf5afcee9dfea.tar.gz tde-packaging-56b081e488b8c0b197a77860d9edf5afcee9dfea.zip |
Initial import of keximdb files
Diffstat (limited to 'ubuntu/maverick/applications/keximdb/debian/rules')
-rwxr-xr-x | ubuntu/maverick/applications/keximdb/debian/rules | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/keximdb/debian/rules b/ubuntu/maverick/applications/keximdb/debian/rules new file mode 100755 index 000000000..7f345f4e1 --- /dev/null +++ b/ubuntu/maverick/applications/keximdb/debian/rules @@ -0,0 +1,105 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules for keximdb. + +include /usr/share/cdbs/1/rules/debhelper.mk +include debian/cdbs/kde.mk +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include +DEB_CONFIGURE_MANDIR := /opt/trinity/share/man +DEB_CONFIGURE_PREFIX := /opt/trinity +DEB_CONFIGURE_INFODIR := /opt/trinity/share/info + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# 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 + +debian/stamp-bootstrap: + dh_testdir + + # Regenerate build system + ! [ -f /usr/share/libtool/ltmain.sh ] || \ + cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh + ! [ -f /usr/share/libtool/config/ltmain.sh ] || \ + cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + + autoreconf --install && automake -f && \ + $(MAKE) -f admin/Makefile.common && \ + touch debian/stamp-bootstrap + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --disable-rpath \ + --without-arts \ + --prefix=/opt/trinity + +build: build-stamp +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/kexi-mdb-plugin + +# 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_link + dh_strip + dh_compress + dh_fixperms +# 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 |