[Pkg-mailman-hackers] Pkg-mailman commit - rev 74 - branches/pkg-split/savannah/debian

Bernd S. Brentrup bsb@haydn.debian.org
Mon, 19 Apr 2004 13:10:20 -0600


Author: bsb
Date: 2004-04-19 13:10:08 -0600 (Mon, 19 Apr 2004)
New Revision: 74

Added:
   branches/pkg-split/savannah/debian/README
   branches/pkg-split/savannah/debian/changelog
   branches/pkg-split/savannah/debian/control
   branches/pkg-split/savannah/debian/copyright
   branches/pkg-split/savannah/debian/rules
Modified:
   branches/pkg-split/savannah/debian/
Log:
Preliminary layout for debian/ directory.
Should we issue an RFP for mailman-savannah?



Property changes on: branches/pkg-split/savannah/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: branches/pkg-split/savannah/debian/README
===================================================================

Added: branches/pkg-split/savannah/debian/changelog
===================================================================
--- branches/pkg-split/savannah/debian/changelog	2004-04-19 19:07:16 UTC (rev 73)
+++ branches/pkg-split/savannah/debian/changelog	2004-04-19 19:10:08 UTC (rev 74)
@@ -0,0 +1,6 @@
+mailman-savannah (1.0-1) UNRELEASED; urgency=low
+
+  * Preliminary packaging
+
+ -- Siggy Brentrup <bsb@debian.org>  Mon, 19 Apr 2004 20:22:36 +0200
+

Added: branches/pkg-split/savannah/debian/control
===================================================================
--- branches/pkg-split/savannah/debian/control	2004-04-19 19:07:16 UTC (rev 73)
+++ branches/pkg-split/savannah/debian/control	2004-04-19 19:10:08 UTC (rev 74)
@@ -0,0 +1,13 @@
+Source: mailman-savannah
+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-savannah
+Architecture: all
+Depends: mailman (= ${Source-Version})
+Description: Savannah patches for mailman
+ Dunno yet, have to look into it.

Added: branches/pkg-split/savannah/debian/copyright
===================================================================

Added: branches/pkg-split/savannah/debian/rules
===================================================================
--- branches/pkg-split/savannah/debian/rules	2004-04-19 19:07:16 UTC (rev 73)
+++ branches/pkg-split/savannah/debian/rules	2004-04-19 19:10:08 UTC (rev 74)
@@ -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-savannah
+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/savannah/debian/rules
___________________________________________________________________
Name: svn:keywords
   + Id URL