Author: pdewacht-guest
Date: 2013-05-18 21:28:23 +0000 (Sat, 18 May 2013)
New Revision: 14070

Added:
   packages/trunk/titanion/debian/titanion.manpages
Modified:
   packages/trunk/titanion/debian/changelog
   packages/trunk/titanion/debian/compat
   packages/trunk/titanion/debian/control
   packages/trunk/titanion/debian/copyright
   packages/trunk/titanion/debian/patches/dlang_v2.patch
   packages/trunk/titanion/debian/rules
Log:
Titanion: convert to dh-style rules, general cleanup


Modified: packages/trunk/titanion/debian/changelog
===================================================================
--- packages/trunk/titanion/debian/changelog    2013-05-18 20:46:22 UTC (rev 
14069)
+++ packages/trunk/titanion/debian/changelog    2013-05-18 21:28:23 UTC (rev 
14070)
@@ -1,6 +1,8 @@
 titanion (0.3.dfsg1-5) UNRELEASED; urgency=low
 
   * Ported to D language version 2
+  * Switch dh-style minimal rules file
+  * Conforms to standards 3.9.4
 
  -- Peter De Wachter <[email protected]>  Sat, 18 May 2013 22:34:47 +0200
 

Modified: packages/trunk/titanion/debian/compat
===================================================================
--- packages/trunk/titanion/debian/compat       2013-05-18 20:46:22 UTC (rev 
14069)
+++ packages/trunk/titanion/debian/compat       2013-05-18 21:28:23 UTC (rev 
14070)
@@ -1 +1 @@
-5
+9

Modified: packages/trunk/titanion/debian/control
===================================================================
--- packages/trunk/titanion/debian/control      2013-05-18 20:46:22 UTC (rev 
14069)
+++ packages/trunk/titanion/debian/control      2013-05-18 21:28:23 UTC (rev 
14070)
@@ -3,10 +3,10 @@
 Priority: extra
 Maintainer: Debian Games Team <[email protected]>
 Uploaders: Miriam Ruiz <[email protected]>, Peter De Wachter 
<[email protected]>, Barry deFreese <[email protected]>
-Build-Depends: debhelper (>= 5), gdc-v1,
+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/ttn_e.html
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/titanion/
 Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/titanion/?op=log
@@ -16,7 +16,7 @@
 Architecture: any
 Depends: titanion-data (= ${source:Version}), ${shlibs:Depends}, 
${misc:Depends}
 Description: strike down super high-velocity swooping insects
- Titanion is an abstract shooter game. While we fire with one button, the
+ Titanion is an abstract shooter game. While you fire with one button, the
  other one acts as a tractor ray to attract the enemies and take them to
  the combat line. The game in itself is quite simple, but with such
  graphics and playability that it's worth a try.
@@ -28,7 +28,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Recommends: titanion
 Description: strike down super high-velocity swooping insects - game data
- Titanion is an abstract shooter game. While we fire with one button, the
+ Titanion is an abstract shooter game. While you fire with one button, the
  other one acts as a tractor ray to attract the enemies and take them to
  the combat line. The game in itself is quite simple, but with such
  graphics and playability that it's worth a try.

Modified: packages/trunk/titanion/debian/copyright
===================================================================
--- packages/trunk/titanion/debian/copyright    2013-05-18 20:46:22 UTC (rev 
14069)
+++ packages/trunk/titanion/debian/copyright    2013-05-18 21:28:23 UTC (rev 
14070)
@@ -55,8 +55,8 @@
     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 <[email protected]> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+The Debian packaging is Copyright (C) 2007, Miriam Ruiz <[email protected]>
+and is licensed under the GPL, see `/usr/share/common-licenses/GPL-3'.

Modified: packages/trunk/titanion/debian/patches/dlang_v2.patch
===================================================================
--- packages/trunk/titanion/debian/patches/dlang_v2.patch       2013-05-18 
20:46:22 UTC (rev 14069)
+++ packages/trunk/titanion/debian/patches/dlang_v2.patch       2013-05-18 
21:28:23 UTC (rev 14070)
@@ -1,3 +1,8 @@
+Description: port to D language version 2
+  With this patch the code is accapted by gdc-4.6 0.29.1-4.6.4-3 without
+  triggering deprecated feature warnings/errors.
+Author: Peter De Wachter <[email protected]>
+
 --- a/import/SDL_audio.d
 +++ b/import/SDL_audio.d
 @@ -42,7 +42,7 @@

Modified: packages/trunk/titanion/debian/rules
===================================================================
--- packages/trunk/titanion/debian/rules        2013-05-18 20:46:22 UTC (rev 
14069)
+++ packages/trunk/titanion/debian/rules        2013-05-18 21:28:23 UTC (rev 
14070)
@@ -1,72 +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 -debug -d
+       DFLAGS = -fdebug
 else
-       CFLAGS += -O2
-       DFLAGS = -O -release -d
+       DFLAGS = -frelease
 endif
 
-configure: configure-stamp
-configure-stamp:
-       dh_testdir
-       touch $@
 
-build: build-arch build-indep
-build-arch: build-stamp
-build-indep: build-stamp
+%:
+       dh $@
 
-build-stamp: configure-stamp 
-       dh_testdir
-       #ant -v
-       $(MAKE) CFLAGS="$(CFLAGS)" DFLAGS="$(DFLAGS)"
-       touch $@
+override_dh_auto_build:
+       dh_auto_build -- DFLAGS="$(DFLAGS)"
 
-clean:
-       dh_testdir
-       dh_testroot
-       rm -f build-stamp configure-stamp
-       #ant -v clean
-       [ ! -f Makefile ] || $(MAKE) clean
-       rm -f titanion
-       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/*.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
@@ -78,6 +25,3 @@
        rm ttn/resource/*.RES
        tar cvfz ../titanion_0.3.dfsg1.orig.tar.gz ttn
        rm -rf ttn0_3.zip ttn
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure 
get-orig-source

Added: packages/trunk/titanion/debian/titanion.manpages
===================================================================
--- packages/trunk/titanion/debian/titanion.manpages                            
(rev 0)
+++ packages/trunk/titanion/debian/titanion.manpages    2013-05-18 21:28:23 UTC 
(rev 14070)
@@ -0,0 +1 @@
+debian/titanion.6


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to