r7992 - packages/trunk/enet/debian

Miriam Ruiz miriam at alioth.debian.org
Mon Aug 25 19:43:24 UTC 2008


Author: miriam
Date: 2008-08-25 19:43:24 +0000 (Mon, 25 Aug 2008)
New Revision: 7992

Modified:
   packages/trunk/enet/debian/changelog
   packages/trunk/enet/debian/control
   packages/trunk/enet/debian/rules
Log:
New Upstream Version



Modified: packages/trunk/enet/debian/changelog
===================================================================
--- packages/trunk/enet/debian/changelog	2008-08-25 17:35:16 UTC (rev 7991)
+++ packages/trunk/enet/debian/changelog	2008-08-25 19:43:24 UTC (rev 7992)
@@ -1,5 +1,10 @@
-enet (1.1-4) UNRELEASED; urgency=low
+enet (1.2-1) UNRELEASED; urgency=low
 
+  [ Miriam Ruiz ]
+  * New Upstream Release
+  * Upgraded Standards-Version to 3.8.0
+  * Clean config.{sub,guess,log,cache} in clean target
+
   [ Ansgar Burchardt ]
   * debian/control: Change XS-Vcs-* to Vcs-*
   * debian/control: Remove Homepage semi-field from description
@@ -7,7 +12,7 @@
   [ Eddy Petrișor ]
   * fix Vcs-Svn URL to point to svn, not the incomplete ssh location
 
- -- Eddy Petrișor <eddy.petrisor at gmail.com>  Wed, 05 Mar 2008 02:01:38 +0200
+ -- Miriam Ruiz <little_miry at yahoo.es>  Mon, 25 Aug 2008 21:32:35 +0200
 
 enet (1.1-3) unstable; urgency=low
 

Modified: packages/trunk/enet/debian/control
===================================================================
--- packages/trunk/enet/debian/control	2008-08-25 17:35:16 UTC (rev 7991)
+++ packages/trunk/enet/debian/control	2008-08-25 19:43:24 UTC (rev 7992)
@@ -4,7 +4,7 @@
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Gonéri Le Bouder <goneri at rulezlan.org> 
 Build-Depends: debhelper (>= 5.0.0), quilt
-Standards-Version: 3.7.2
+Standards-Version: 3.8.0
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/enet/
 Homepage: http://enet.bespin.org/
 

Modified: packages/trunk/enet/debian/rules
===================================================================
--- packages/trunk/enet/debian/rules	2008-08-25 17:35:16 UTC (rev 7991)
+++ packages/trunk/enet/debian/rules	2008-08-25 19:43:24 UTC (rev 7992)
@@ -2,9 +2,8 @@
 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
 
-CFLAGS = -Wall -g -fPIC
-
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0
 else
@@ -14,14 +13,17 @@
 config.status: configure
 	dh_testdir
 	QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
-	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr
+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
+	CFLAGS="$(CFLAGS) -fPIC" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr
 
-
 build: build-stamp
-
 build-stamp:  config.status
 	dh_testdir
-
 	$(MAKE)
 	# create the shared lib
 	gcc -Wl,-soname,libenet.so.1 -shared -o libenet.so.1.1 *.o
@@ -31,14 +33,8 @@
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp 
-
 	[ ! -f Makefile ] || $(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
+	rm -f config.sub config.guess config.log config.cache
 	rm -rf libenet.so.* debian/libenet1 debian/libenet1-1 config.log
 	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
 	rm -rf .pc




More information about the Pkg-games-commits mailing list