diff -Nru bugsquish-0.0.6/debian/changelog bugsquish-0.0.6/debian/changelog --- bugsquish-0.0.6/debian/changelog 2011-10-17 10:02:14.000000000 +0000 +++ bugsquish-0.0.6/debian/changelog 2011-09-04 14:59:16.000000000 +0000 @@ -1,3 +1,14 @@ +bugsquish (0.0.6-7) unstable; urgency=low + + * add ${misc-Depends} to dependencies of luola-levels + * add build-arch and build-indep targets + * remove call to deprecated dh_desktop + * remove duplicate "with" from description + * updated Standards-Version to 3.9.2 (no changes) + * switch to dpkg-source 3.0 (quilt) format + + -- Christian T. Steigies Sun, 04 Sep 2011 16:57:32 +0200 + bugsquish (0.0.6-6) unstable; urgency=low * updated Standards-Version to 3.7.3, use section Games/Action according diff -Nru bugsquish-0.0.6/debian/control bugsquish-0.0.6/debian/control --- bugsquish-0.0.6/debian/control 2011-10-17 10:02:14.000000000 +0000 +++ bugsquish-0.0.6/debian/control 2011-09-04 14:58:50.000000000 +0000 @@ -2,16 +2,16 @@ Section: games Priority: optional Maintainer: Christian T. Steigies -Standards-Version: 3.7.3 +Standards-Version: 3.9.2 Build-Depends: debhelper (>> 5), libsdl1.2-dev (>=1.2.2-3.1), libsdl-mixer1.2-dev (>=1.2.0-1.1), libsdl-image1.2-dev (>=1.2.0-1.1) Package: bugsquish Architecture: any -Depends: ${shlibs:Depends} +Depends: ${misc:Depends}, ${shlibs:Depends} Description: Bugs are trying to suck blood out of your arm! "Bug Squish" is an action game not unlike light gun arcade games, but played with a mouse. It's loosely based on a MacOS game whose name I can't recall. . - Bugs are trying to suck blood out of your arm! Squish them with with + Bugs are trying to suck blood out of your arm! Squish them with your fly swatter before you run out of blood. \ No newline at end of file diff -Nru bugsquish-0.0.6/debian/patches/makefile bugsquish-0.0.6/debian/patches/makefile --- bugsquish-0.0.6/debian/patches/makefile 1970-01-01 00:00:00.000000000 +0000 +++ bugsquish-0.0.6/debian/patches/makefile 2011-09-04 15:03:23.000000000 +0000 @@ -0,0 +1,22 @@ +Description: patch upstream Makefile + Add DEB_CFLAGS to CFLAGS. + . + The person named in the Author field signed this changelog entry. +Author: Christian T. Steigies +Last-Update: 2011-09-04 + +--- bugsquish-0.0.6.orig/Makefile ++++ bugsquish-0.0.6/Makefile +@@ -18,11 +18,9 @@ DATA_PREFIX=/usr/share/bugsquish/ + TARGET=bugsquish + TARGET_DEF=LINUX + +- +-CFLAGS=-Wall -O2 $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \ ++CFLAGS= $(DEB_CFLAGS) $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \ + -D$(NOSOUNDFLAG) -D$(TARGET_DEF) + +- + # Other definitions: + + MIXER=-lSDL_mixer diff -Nru bugsquish-0.0.6/debian/patches/series bugsquish-0.0.6/debian/patches/series --- bugsquish-0.0.6/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ bugsquish-0.0.6/debian/patches/series 2011-09-04 15:00:12.000000000 +0000 @@ -0,0 +1 @@ +makefile \ No newline at end of file diff -Nru bugsquish-0.0.6/debian/rules bugsquish-0.0.6/debian/rules --- bugsquish-0.0.6/debian/rules 2011-10-17 10:02:14.000000000 +0000 +++ bugsquish-0.0.6/debian/rules 2011-09-04 14:58:02.000000000 +0000 @@ -9,9 +9,6 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -# This is the debhelper compatability version to use. -#export DH_COMPAT=5 - DEB_CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) DEB_CFLAGS += -O0 @@ -23,8 +20,12 @@ # INSTALL_PROGRAM += -s #endif +build: build-arch build-indep + +build-arch: build-stamp + +build-indep: build-stamp -build: build-stamp build-stamp: dh_testdir @@ -46,7 +47,7 @@ install: build dh_testdir dh_testroot - dh_clean -k + dh_prep dh_installdirs # Add here commands to install the package into debian/tmp. @@ -72,31 +73,20 @@ # Build architecture-dependent files here. binary-arch: build install -# dh_testversion dh_testdir dh_testroot -# dh_installdebconf dh_installdocs dh_installexamples dh_installmenu -# dh_installemacsen -# dh_installpam -# dh_installinit dh_installcron dh_installman debian/bugsquish.6 dh_installinfo -# dh_undocumented dh_installchangelogs CHANGES.txt - dh_desktop dh_link dh_strip dh_compress dh_fixperms -# # You may want to make some executables suid here. -# dh_suidregister -# dh_makeshlibs dh_installdeb -# dh_perl dh_shlibdeps dh_gencontrol dh_md5sums diff -Nru bugsquish-0.0.6/debian/source/format bugsquish-0.0.6/debian/source/format --- bugsquish-0.0.6/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ bugsquish-0.0.6/debian/source/format 2011-10-17 10:02:15.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru bugsquish-0.0.6/Makefile bugsquish-0.0.6/Makefile --- bugsquish-0.0.6/Makefile 2011-10-17 10:02:14.000000000 +0000 +++ bugsquish-0.0.6/Makefile 2002-04-19 08:15:27.000000000 +0000 @@ -18,9 +18,11 @@ TARGET=bugsquish TARGET_DEF=LINUX -CFLAGS= $(DEB_CFLAGS) $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \ + +CFLAGS=-Wall -O2 $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \ -D$(NOSOUNDFLAG) -D$(TARGET_DEF) + # Other definitions: MIXER=-lSDL_mixer