--- gav-0.9.0.orig/Makefile +++ gav-0.9.0/Makefile @@ -39,7 +39,6 @@ gav: $(ALL_OBJ) $(OFILES) $(CXX) -o gav $(OFILES) $(ALL_OBJ) $(LDFLAGS) - strip gav clean: for i in $(SUBDIRS) ; do \ @@ -54,7 +53,7 @@ rm -f *~ *.o install: all - install gav $(ROOT)/usr/bin + install gav $(ROOT)/usr/games install -d $(ROOT)/usr/share/games/gav/themes cp -r themes/* $(ROOT)/usr/share/games/gav/themes --- gav-0.9.0.orig/Makefile.Linux +++ gav-0.9.0/Makefile.Linux @@ -54,7 +54,7 @@ rm -f *~ *.o install: all - install gav $(ROOT)/usr/bin + install gav $(ROOT)/usr/games install -d $(ROOT)/usr/share/games/gav/themes cp -r themes/* $(ROOT)/usr/share/games/gav/themes --- gav-0.9.0.orig/CommonHeader +++ gav-0.9.0/CommonHeader @@ -24,10 +24,10 @@ LD = ld CXX = g++ -CXXFLAGS= `sdl-config --cflags` -g -Wall -DAUDIO +CXXFLAGS += `sdl-config --cflags` -g -Wall -DAUDIO ifndef NET -CXXFLAGS+= -DNONET +CXXFLAGS += -DNONET endif ifdef NET --- gav-0.9.0.orig/aarg.h +++ gav-0.9.0/aarg.h @@ -7,6 +7,7 @@ #include #include #include +#include #include class Aargh --- gav-0.9.0.orig/debian/menu +++ gav-0.9.0/debian/menu @@ -0,0 +1,2 @@ +?package(gav):needs="X11" section="Games/Action" \ + title="Arcade Volleyball" command="/usr/games/gav" --- gav-0.9.0.orig/debian/control +++ gav-0.9.0/debian/control @@ -0,0 +1,19 @@ +Source: gav +Section: games +Priority: extra +Maintainer: Ari Pollak +Build-Depends: debhelper (>> 5.0.0), libsdl1.2-dev, libsdl-mixer1.2-dev, libsdl-net1.2-dev, libsdl-image1.2-dev +Standards-Version: 3.7.3 +Homepage: http://gav.sf.net + +Package: gav +Architecture: any +Depends: ${shlibs:Depends} +Recommends: gav-themes +Description: GPL Arcade Volleyball + GAV stands for GPL Arcade Volleyball, and is an SDL remake of the old DOS game + Arcade Volleyball. It includes multiplayer, networking, and themeable graphics + support. + . + More information, as well as additional themes, can be found at + . --- gav-0.9.0.orig/debian/gav.6 +++ gav-0.9.0/debian/gav.6 @@ -0,0 +1,57 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH GAV 6 "February 12, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +gav \- A simple graphical 2-player volleyball game +.\".SH SYNOPSIS +.\".B gav +.\".RI [ options ] " files" ... +.\".br +.SH DESCRIPTION +This manual page documents briefly the +.B gav +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBgav\fP is a small graphical volleyball game, made to resemble an old DOS game. +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +.TP +.B gav +has no command line arguments at this time. +.\".TP +.\".B \-h, \-\-help +.\"Show summary of options. +.\".TP +.\".B \-v, \-\-version +.\"Show version of program. +.\".SH SEE ALSO +.\".BR bar (1), +.\".BR baz (1). +.br +.\"The programs are documented fully by +.\".IR "The Rise and Fall of a Fooish Bar" , +.\"available via the Info system. +.SH AUTHOR +This manual page was written by David Grant , +for the Debian GNU/Linux system (but may be used by others). --- gav-0.9.0.orig/debian/rules +++ gav-0.9.0/debian/rules @@ -0,0 +1,89 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + CFLAGS="$(CFLAGS)" CXXFLAGS="$(CFLAGS)" $(MAKE) + #/usr/bin/docbook-to-man debian/gav.sgml > gav.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/gav. + $(MAKE) install ROOT=$(CURDIR)/debian/gav + install -m644 package/gav.png $(CURDIR)/debian/gav/usr/share/pixmaps + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman debian/gav.6 + dh_installinfo + dh_installchangelogs CHANGELOG + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- gav-0.9.0.orig/debian/compat +++ gav-0.9.0/debian/compat @@ -0,0 +1 @@ +5 --- gav-0.9.0.orig/debian/changelog +++ gav-0.9.0/debian/changelog @@ -0,0 +1,84 @@ +gav (0.9.0-3) unstable; urgency=low + + * Include to fix FTBFS with GCC 4.3 (Closes: #455172) + + -- Ari Pollak Mon, 17 Dec 2007 13:29:05 -0500 + +gav (0.9.0-2) unstable; urgency=low + + * Don't strip binary during build (Closes: #436907) + * Pass the correct CFLAGS/CXXFLAGS to make + + -- Ari Pollak Thu, 09 Aug 2007 11:11:44 -0400 + +gav (0.9.0-1) unstable; urgency=low + + * New upstream release + - Now saves settings between games (Closes: #261197) + + -- Ari Pollak Sat, 27 May 2006 17:49:14 -0400 + +gav (0.8.0-2) unstable; urgency=low + + * Fix compile error with g++ 4.1 (Closes: #355189) + + -- Ari Pollak Fri, 3 Mar 2006 18:31:04 -0500 + +gav (0.8.0-1) unstable; urgency=low + + * New upstream release + * Fix typo in description (Closes: #219443) + + -- Ari Pollak Sat, 10 Apr 2004 00:21:43 -0400 + +gav (0.7.3-2) unstable; urgency=low + + * Fix typo in description (Closes: #219443) + * Unreleased + + -- Ari Pollak Thu, 6 Nov 2003 11:13:22 -0500 + +gav (0.7.3-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Tue, 19 Aug 2003 10:17:36 -0400 + +gav (0.7.2-3) unstable; urgency=low + + * Place gav in /usr/games (Closes: #194551) + + -- Ari Pollak Sat, 24 May 2003 11:36:12 -0400 + +gav (0.7.2-2) unstable; urgency=low + + * Recommends gav-themes (when it is added to the archive) + + -- Ari Pollak Wed, 26 Feb 2003 12:48:07 -0500 + +gav (0.7.2-1) unstable; urgency=low + + * New upstream release + - Adds option to change ball speed + - Should fix problem with char signedness on other arches (Closes: #182169) + + -- Ari Pollak Wed, 26 Feb 2003 12:09:29 -0500 + +gav (0.7.1-3) unstable; urgency=low + + * Update proper build dependencies. + + -- Ari Pollak Fri, 21 Feb 2003 12:13:26 -0500 + +gav (0.7.1-2) unstable; urgency=low + + * Include gav manpage, thanks to David Grant. + + -- Ari Pollak Fri, 14 Feb 2003 10:21:41 -0500 + +gav (0.7.1-1) unstable; urgency=low + + * Initial Release. (Closes: #180935) + + -- Ari Pollak Thu, 13 Feb 2003 22:32:29 -0500 + --- gav-0.9.0.orig/debian/dirs +++ gav-0.9.0/debian/dirs @@ -0,0 +1,2 @@ +usr/games +usr/share/pixmaps --- gav-0.9.0.orig/debian/copyright +++ gav-0.9.0/debian/copyright @@ -0,0 +1,11 @@ +This package was debianized by Ari Pollak on +Thu, 13 Feb 2003 22:32:29 -0500. + +It was downloaded from + +Upstream Authors: GAV Team + +Copyright: + +Licensed under the GPL. +On Debian systems, it is available at: /usr/share/common-licenses/GPL. --- gav-0.9.0.orig/debian/docs +++ gav-0.9.0/debian/docs @@ -0,0 +1 @@ +README