[Pkg-cli-apps-commits] r4232 - in /packages/giver/trunk/debian: changelog control patches/00list rules

iulian-guest at users.alioth.debian.org iulian-guest at users.alioth.debian.org
Fri Nov 28 21:14:48 UTC 2008


Author: iulian-guest
Date: Fri Nov 28 21:14:48 2008
New Revision: 4232

URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=4232
Log:
Preparing Giver for Mono 2.0 transition.

Modified:
    packages/giver/trunk/debian/changelog
    packages/giver/trunk/debian/control
    packages/giver/trunk/debian/patches/00list
    packages/giver/trunk/debian/rules

Modified: packages/giver/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/giver/trunk/debian/changelog?rev=4232&op=diff
==============================================================================
--- packages/giver/trunk/debian/changelog (original)
+++ packages/giver/trunk/debian/changelog Fri Nov 28 21:14:48 2008
@@ -1,9 +1,17 @@
 giver (0.1.8-3) experimental; urgency=low
 
   * debian/control:
+    - Maintainer is now Debian CLI Applications Team
+    - add myself to Uploaders field
     - adjust build-depends for mono 2.0 transition
+    - add autoconf, automake and libtool to Build-Depends-Indep
   * debian/rules:
     - add GMCS=/usr/bin/csc to configure
+    - add libtoolize, aclocal, autoconf, automake to configure target
+    - merge 'rm -f' into dh_clean and update its args
+    - remove autom4te.cache dir
+    - remove all Makefile.in files
+  * Add 02_gmcs-variable.dpatch.
 
  -- Iulian Udrea <iulian at ubuntu.com>  Tue, 25 Nov 2008 21:05:22 +0000
 

Modified: packages/giver/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/giver/trunk/debian/control?rev=4232&op=diff
==============================================================================
--- packages/giver/trunk/debian/control (original)
+++ packages/giver/trunk/debian/control Fri Nov 28 21:14:48 2008
@@ -1,9 +1,10 @@
 Source: giver
 Section: net
 Priority: optional
-Maintainer: Iulian Udrea <iulian at ubuntu.com>
+Maintainer: Debian CLI Applications Team <pkg-cli-apps-team at lists.alioth.debian.org>
+Uploaders: Iulian Udrea <iulian at ubuntu.com>
 Build-Depends: debhelper (>= 6), dpatch
-Build-Depends-Indep: autotools-dev, intltool (>= 0.37.1), mono-devel (>= 2.0), cli-common-dev (>= 0.4.4), pkg-config (>= 0.22), libavahi1.0-cil (>= 0.6.19), libmono-cairo2.0-cil (>= 2.0), libgtk2.0-dev (>= 2.12.9), libglib2.0-dev (>= 2.16.3), libgnome2.0-cil (>= 2.20.0), perl, libnotify0.4-cil
+Build-Depends-Indep: autotools-dev, autoconf, automake, libtool, intltool (>= 0.37.1), mono-devel (>= 2.0), cli-common-dev (>= 0.4.4), pkg-config (>= 0.22), libavahi1.0-cil (>= 0.6.19), libmono-cairo2.0-cil (>= 2.0), libgtk2.0-dev (>= 2.12.9), libglib2.0-dev (>= 2.16.3), libgnome2.0-cil (>= 2.20.0), perl, libnotify0.4-cil
 Standards-Version: 3.8.0
 Homepage: http://code.google.com/p/giver/
 

Modified: packages/giver/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/giver/trunk/debian/patches/00list?rev=4232&op=diff
==============================================================================
--- packages/giver/trunk/debian/patches/00list (original)
+++ packages/giver/trunk/debian/patches/00list Fri Nov 28 21:14:48 2008
@@ -1,1 +1,2 @@
-giver.desktop.in.dpatch
+01_giver.desktop.in.dpatch
+02_gmcs-variable.dpatch

Modified: packages/giver/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/giver/trunk/debian/rules?rev=4232&op=diff
==============================================================================
--- packages/giver/trunk/debian/rules (original)
+++ packages/giver/trunk/debian/rules Fri Nov 28 21:14:48 2008
@@ -3,26 +3,20 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-
-config.status: configure
+configure:
 	dh_testdir
-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
+	libtoolize
+	aclocal
+	autoconf
+	automake --add-missing --copy
 	./configure GMCS=/usr/bin/csc --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
 
 include /usr/share/dpatch/dpatch.make
 
 build: build-stamp
-
-build-stamp:  config.status patch-stamp
+build-stamp: configure patch-stamp
 	dh_testdir
-
 	$(MAKE)
-
 	touch $@
 	pod2man --section=1 --release="" --center "" debian/giver.pod >  debian/giver.1
 
@@ -30,13 +24,10 @@
 clean1:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp 
-
 	[ ! -f Makefile ] || $(MAKE) distclean
-	rm -f config.sub config.guess
-
-	dh_clean 
-	rm -f debian/giver.1
+	dh_clean build-stamp configure config.sub config.guess ltmain.sh aclocal.m4 debian/giver.1
+	rm -rf autom4te.cache
+	find . -name "Makefile.in" -delete
 
 install: build
 	dh_testdir




More information about the Pkg-cli-apps-commits mailing list