r14085 - packages/trunk/gunroar/debian

Peter De Wachter pdewacht-guest at alioth.debian.org
Sun May 19 14:51:38 UTC 2013


Author: pdewacht-guest
Date: 2013-05-19 14:51:38 +0000 (Sun, 19 May 2013)
New Revision: 14085

Added:
   packages/trunk/gunroar/debian/gunroar.manpages
Modified:
   packages/trunk/gunroar/debian/changelog
   packages/trunk/gunroar/debian/compat
   packages/trunk/gunroar/debian/control
   packages/trunk/gunroar/debian/copyright
   packages/trunk/gunroar/debian/rules
Log:
gunroar: convert to dh-style rules, general cleanup


Modified: packages/trunk/gunroar/debian/changelog
===================================================================
--- packages/trunk/gunroar/debian/changelog	2013-05-19 14:40:23 UTC (rev 14084)
+++ packages/trunk/gunroar/debian/changelog	2013-05-19 14:51:38 UTC (rev 14085)
@@ -2,6 +2,8 @@
 
   * Ported to D language version 2 (closes: #707264)
     - No longer includes patch for 'Gunroar hot iron' variant
+  * Switch dh-style minimal rules file
+  * Conforms to standards 3.9.4
 
  -- Peter De Wachter <pdewacht at gmail.com>  Sun, 19 May 2013 16:33:53 +0200
 

Modified: packages/trunk/gunroar/debian/compat
===================================================================
--- packages/trunk/gunroar/debian/compat	2013-05-19 14:40:23 UTC (rev 14084)
+++ packages/trunk/gunroar/debian/compat	2013-05-19 14:51:38 UTC (rev 14085)
@@ -1 +1 @@
-5
+9

Modified: packages/trunk/gunroar/debian/control
===================================================================
--- packages/trunk/gunroar/debian/control	2013-05-19 14:40:23 UTC (rev 14084)
+++ packages/trunk/gunroar/debian/control	2013-05-19 14:51:38 UTC (rev 14085)
@@ -3,10 +3,10 @@
 Priority: extra
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Miriam Ruiz <little_miry at yahoo.es>, Peter De Wachter <pdewacht at gmail.com>
-Build-Depends: debhelper (>= 5), gdc,
+Build-Depends: debhelper (>= 9), gdc,
  libglu1-mesa-dev | libglu-dev, libgl1-mesa-dev | libgl-dev,
  libsdl1.2-dev, libsdl-mixer1.2-dev
-Standards-Version: 3.9.2
+Standards-Version: 3.9.4
 Homepage: http://www.asahi-net.or.jp/~cs8k-cyu/windows/gr_e.html
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/gunroar/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/gunroar/?op=log
@@ -17,7 +17,7 @@
 Depends: gunroar-data (= ${source:Version}), ${shlibs:Depends}, ${misc:Depends}
 Description: 360-degree gunboat shooter
  Gunroar is an excellent shooter in which the game environment turns to be
- the sea and our spaceship an armed boat. The player moves around in a
+ the sea and your spaceship an armed boat. The player moves around in a
  level generated randomly, and containing enemy islands, turrets and
  enemy boats) and that never ends. Each enemy killed increments your
  points according to the time it took you to destroy it and its size.
@@ -30,7 +30,7 @@
 Recommends: gunroar
 Description: 360-degree gunboat shooter - game data
  Gunroar is an excellent shooter in which the game environment turns to be
- the sea and our spaceship an armed boat. The player moves around in a
+ the sea and your spaceship an armed boat. The player moves around in a
  level generated randomly, and containing enemy islands, turrets and
  enemy boats) and that never ends. Each enemy killed increments your
  points according to the time it took you to destroy it and its size.

Modified: packages/trunk/gunroar/debian/copyright
===================================================================
--- packages/trunk/gunroar/debian/copyright	2013-05-19 14:40:23 UTC (rev 14084)
+++ packages/trunk/gunroar/debian/copyright	2013-05-19 14:51:38 UTC (rev 14085)
@@ -60,7 +60,7 @@
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
 On Debian systems, the complete text of the GNU Lesser General
-Public License can be found in `/usr/share/common-licenses/LGPL'.
+Public License can be found in `/usr/share/common-licenses/LGPL-2'.
 
-The Debian packaging is (C) 2007, Miriam Ruiz <little_miry at yahoo.es> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+The Debian packaging is Copyright (C) 2007, Miriam Ruiz <little_miry at yahoo.es>
+and is licensed under the GPL, see `/usr/share/common-licenses/GPL-3'.

Added: packages/trunk/gunroar/debian/gunroar.manpages
===================================================================
--- packages/trunk/gunroar/debian/gunroar.manpages	                        (rev 0)
+++ packages/trunk/gunroar/debian/gunroar.manpages	2013-05-19 14:51:38 UTC (rev 14085)
@@ -0,0 +1 @@
+debian/gunroar.6

Modified: packages/trunk/gunroar/debian/rules
===================================================================
--- packages/trunk/gunroar/debian/rules	2013-05-19 14:40:23 UTC (rev 14084)
+++ packages/trunk/gunroar/debian/rules	2013-05-19 14:51:38 UTC (rev 14085)
@@ -1,74 +1,19 @@
 #!/usr/bin/make -f
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-CFLAGS = -Wall -g
-
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-	DFLAGS = -g -fdebug 
+        DFLAGS = -fdebug
 else
-	CFLAGS += -O2
-	DFLAGS = -O -frelease 
+        DFLAGS = -frelease
 endif
 
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	touch $@
 
-build: build-arch build-indep
+%:
+	dh $@
 
-build-arch: build-stamp
-build-indep: build-stamp
+override_dh_auto_build:
+	dh_auto_build -- DFLAGS="$(DFLAGS)"
 
-build-stamp: configure-stamp 
-	dh_testdir
-	#ant -v
-	$(MAKE) CFLAGS="$(CFLAGS)" DFLAGS="$(DFLAGS)"
-	#docbook-to-man debian/gunroar.sgml > gunroar.1
-	touch $@
 
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-	#ant -v clean
-	[ ! -f Makefile ] || $(MAKE) clean
-	rm -f gunroar
-	rm -f `find . -name "*.o"`
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-# Build architecture-independent files here.
-binary-indep: build install
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs 
-	dh_installdocs
-	dh_installexamples
-	dh_install
-	dh_installmenu
-	dh_installman debian/gunroar.6
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
 get-orig-source:
 	dh_testdir
 	dh_testroot
@@ -80,6 +25,3 @@
 	rm gr/resource/*.RES
 	tar cvfz ../gunroar_0.15.dfsg1.orig.tar.gz gr
 	rm -rf gr0_15.zip gr
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure get-orig-source




More information about the Pkg-games-commits mailing list