[Pkg-mailman-hackers] Pkg-mailman commit - rev 75 - branches/pkg-split/spamassassin/debian
Bernd S. Brentrup
bsb@haydn.debian.org
Mon, 19 Apr 2004 13:11:49 -0600
Author: bsb
Date: 2004-04-19 13:11:38 -0600 (Mon, 19 Apr 2004)
New Revision: 75
Added:
branches/pkg-split/spamassassin/debian/README
branches/pkg-split/spamassassin/debian/changelog
branches/pkg-split/spamassassin/debian/control
branches/pkg-split/spamassassin/debian/copyright
branches/pkg-split/spamassassin/debian/rules
Modified:
branches/pkg-split/spamassassin/debian/
Log:
Preliminary layout for debian/ directory.
Should we issue an RFP for mailman-spamassassin?
Property changes on: branches/pkg-split/spamassassin/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: branches/pkg-split/spamassassin/debian/README
===================================================================
Added: branches/pkg-split/spamassassin/debian/changelog
===================================================================
--- branches/pkg-split/spamassassin/debian/changelog 2004-04-19 19:10:08 UTC (rev 74)
+++ branches/pkg-split/spamassassin/debian/changelog 2004-04-19 19:11:38 UTC (rev 75)
@@ -0,0 +1,6 @@
+mailman-spamassassin (1.0-1) UNRELEASED; urgency=low
+
+ * Preliminary packaging.
+
+ -- Siggy Brentrup <bsb@debian.org> Mon, 19 Apr 2004 20:24:09 +0200
+
Added: branches/pkg-split/spamassassin/debian/control
===================================================================
--- branches/pkg-split/spamassassin/debian/control 2004-04-19 19:10:08 UTC (rev 74)
+++ branches/pkg-split/spamassassin/debian/control 2004-04-19 19:11:38 UTC (rev 75)
@@ -0,0 +1,13 @@
+Source: mailman-spamassassin
+Section: mail
+Priority: optional
+Maintainer: Tollef Fog Heen <tfheen@debian.org>
+Uploaders: Siggy Brentrup <bsb@debian.org>
+Build-Depends: debhelper (>= 4.1.16), autoconf, python-dev, dpatch
+Standards-Version: 3.6.1
+
+Package: mailman-spamassassin
+Architecture: all
+Depends: mailman (= ${Source-Version}), spamassassin
+Description: Mixin integrating spamassassin into mailman.
+ Dunno yet, have to look into it.
Added: branches/pkg-split/spamassassin/debian/copyright
===================================================================
Added: branches/pkg-split/spamassassin/debian/rules
===================================================================
--- branches/pkg-split/spamassassin/debian/rules 2004-04-19 19:10:08 UTC (rev 74)
+++ branches/pkg-split/spamassassin/debian/rules 2004-04-19 19:11:38 UTC (rev 75)
@@ -0,0 +1,83 @@
+#!/usr/bin/make -f
+# -*- makefile -*- made with the aid of debmake, by Christoph Lameter,
+# based on the sample debian/rules file for GNU hello by Ian Jackson.
+#
+# $URL$
+# $Id$
+
+package=mailman-spamassassin
+PACKAGE=$(package)
+
+include /usr/share/dpatch/dpatch.make
+
+binaries =
+manpages =
+export DH_VERBOSE=1
+
+SHELL=/bin/bash
+
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+CFLAGS += -g
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+INSTALL_PROGRAM += -s
+endif
+
+build: patch-stamp Makefile debian/po/templates.pot
+ $(MAKE)
+ touch build
+
+debian/po/templates.pot: debian/templates
+ @debconf-updatepo
+
+Makefile:
+ autoconf
+ ./configure --prefix=/var/lib/$(package) --with-username=list \
+ --with-groupname=list \
+ --with-mail-gid=daemon --with-cgi-gid=www-data \
+ --without-permcheck --with-mailhost=localhost \
+ --with-urlhost=localhost
+
+clean: unpatch
+ $(checkdir)
+ -$(MAKE) distclean
+ rm -rf build Makefile debian/ucffiles debian/mailman.postinst.ucf
+ rm -f debian/mailman.postrm.ucf
+ dh_clean
+ rm -rf $$(find . -name "*~")
+ find .. -name $(package)*dsc.asc -size 0 -maxdepth 1 -exec rm {} ";"
+ chmod +x debian/{prerm,postinst}
+
+binary-indep: checkroot build
+ $(checkdir)
+# There are no architecture-independent files to be uploaded
+# generated by this package. If there were any they would be
+# made here.
+
+
+binary-arch: checkroot build
+ $(checkdir)
+
+ dh_installdirs
+ dh_installdocs ACKNOWLEDGMENTS README* TODO BUGS NEWS FAQ
+ dh_installchangelogs
+
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dpkg --build debian/mailman ..
+
+
+define checkdir
+ test -f debian/rules
+endef
+
+# Below here is fairly generic really
+
+binary: binary-indep binary-arch
+
+checkroot:
+ $(checkdir)
+ dh_testroot
+
+.PHONY: binary binary-arch binary-indep clean checkroot
Property changes on: branches/pkg-split/spamassassin/debian/rules
___________________________________________________________________
Name: svn:keywords
+ Id URL