X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/2fc779d212449aded8db453cd8821255913412b5..8d29db9a6624d8000c5f4620df0190c2afb2c936:/debian/rules diff --git a/debian/rules b/debian/rules index 34b3edb..f27ce18 100755 --- a/debian/rules +++ b/debian/rules @@ -3,14 +3,20 @@ include /usr/share/quilt/quilt.make ### -# Uncomment one of these if you're rebuilding using them instead of libdb4.X -# HCACHE_DB := gdbm +# header cache backend +# HCACHE_DB := bdb +HCACHE_DB := gdbm # HCACHE_DB := qdbm ### +# GPGME backend +# GPGME := --enable-gpgme +### # Configure arguments -hcache_db := --without-gdbm --without-qdbm +ifeq ($(HCACHE_DB),bdb) + hcache_db := --without-gdbm --without-qdbm +endif ifeq ($(HCACHE_DB),gdbm) hcache_db := --without-qdbm --without-bdb endif @@ -31,7 +37,7 @@ confflags = --prefix=/usr \ --enable-debug \ --enable-fcntl \ --enable-hcache \ - --enable-gpgme \ + $(GPGME) \ --enable-imap \ --enable-smtp \ --enable-inodesort \ @@ -69,12 +75,7 @@ configure: $(objdir)/configure-stamp $(objdir)/configure-stamp: $(QUILT_STAMPFN) dh_testdir - ln -sf /usr/share/misc/config.sub . - ln -sf /usr/share/misc/config.guess . - - # do not rebuild these files - touch configure.in aclocal.m4 Makefile.in configure config.h.in - + autoreconf --install --include=m4 -mkdir $(objdir) cd $(objdir) && \ env CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" \ @@ -126,6 +127,7 @@ binary binary-arch: build install dh_installdocs dh_installexamples dh_installchangelogs ChangeLog + install -m644 debian/mutt.lintian $(CURDIR)/debian/mutt/usr/share/lintian/overrides/mutt dh_link dh_strip @@ -146,12 +148,18 @@ clean: unpatch # please dpkg-source rm -f po/*.gmo - rm -f config.guess config.sub touch PATCHES # remove build tree rm -rf $(objdir) + # remove autotool-generated files so they don't show up in the diff.gz + rm -f configure config.h.in + rm -f Makefile.in contrib/Makefile.in imap/Makefile.in doc/Makefile.in m4/Makefile.in + + # clean PATCHES hunks (blame quilt refresh) + for p in `grep -rl PATCHES debian/patches` ; do perl -wi debian/fix-PATCHES.pl $$p ; done + dh_clean .PHONY: configure build build-arch build-indep clean install binary binary-arch binary-indep patch