Author: bddebian-guest Date: 2008-05-19 22:26:53 +0000 (Mon, 19 May 2008) New Revision: 7115
Added: packages/trunk/vacuum/debian/ packages/trunk/vacuum/debian/changelog packages/trunk/vacuum/debian/compat packages/trunk/vacuum/debian/control packages/trunk/vacuum/debian/copyright packages/trunk/vacuum/debian/docs packages/trunk/vacuum/debian/menu packages/trunk/vacuum/debian/rules packages/trunk/vacuum/debian/vacuum.desktop packages/trunk/vacuum/debian/vacuum.install packages/trunk/vacuum/debian/watch Log: [svn-inject] Applying Debian modifications to trunk Property changes on: packages/trunk/vacuum/debian ___________________________________________________________________ Name: mergeWithUpstream + 1 Added: packages/trunk/vacuum/debian/changelog =================================================================== --- packages/trunk/vacuum/debian/changelog (rev 0) +++ packages/trunk/vacuum/debian/changelog 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,6 @@ +vacuum (0.1-1) unstable; urgency=low + + * Initial release (Closes: #481969) + + -- Barry deFreese <[EMAIL PROTECTED]> Mon, 19 May 2008 14:55:51 -0400 + Added: packages/trunk/vacuum/debian/compat =================================================================== --- packages/trunk/vacuum/debian/compat (rev 0) +++ packages/trunk/vacuum/debian/compat 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1 @@ +5 Added: packages/trunk/vacuum/debian/control =================================================================== --- packages/trunk/vacuum/debian/control (rev 0) +++ packages/trunk/vacuum/debian/control 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,23 @@ +Source: vacuum +Section: games +Priority: extra +Maintainer: Debian Games Team <[EMAIL PROTECTED]> +Uploaders: Barry deFreese <[EMAIL PROTECTED]> +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: autotools-dev, libsdl-perl +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/vacuum/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/vacuum/?op=log +Homepage: http://apocalypse.rulez.org/vacuum + +Package: vacuum +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: a fast-paced action game + The point of Vacuum Magic is to use your magical vacuum field to + collect food and defend against monsters. + Food and certain monsters can also be spat out and used as projectiles + against other monsters. + . + Vacuum Magic can be played by up to six players, either cooperatively, + or against each other. Added: packages/trunk/vacuum/debian/copyright =================================================================== --- packages/trunk/vacuum/debian/copyright (rev 0) +++ packages/trunk/vacuum/debian/copyright 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,27 @@ +This package was debianized by Barry deFreese <[EMAIL PROTECTED]> on +Mon, 19 May 2008 14:55:51 -0400. + +It was downloaded from http://sourceforge.net/projects/vacuum/ + +Upstream Author: UPi <[EMAIL PROTECTED]> + +Copyright: (C) 2006 by UPi <[EMAIL PROTECTED]> + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +The Debian packaging is (C) 2008, Barry deFreese <[EMAIL PROTECTED]> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. Added: packages/trunk/vacuum/debian/docs =================================================================== --- packages/trunk/vacuum/debian/docs (rev 0) +++ packages/trunk/vacuum/debian/docs 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,3 @@ +NEWS +README +TODO Added: packages/trunk/vacuum/debian/menu =================================================================== --- packages/trunk/vacuum/debian/menu (rev 0) +++ packages/trunk/vacuum/debian/menu 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,2 @@ +?package(vacuum):needs="X11" section="Games/Action"\ + title="vacuum" command="/usr/games/vacuum" Added: packages/trunk/vacuum/debian/rules =================================================================== --- packages/trunk/vacuum/debian/rules (rev 0) +++ packages/trunk/vacuum/debian/rules 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,86 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. +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 + ./configure $(CROSS) --prefix=/usr \ + --bindir=\$${prefix}/games \ + --datadir=\$${prefix}/share/games \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) DESTDIR=$(CURDIR)/debian/vacuum install + + #Strip the .pl extention from the "binary". + mv $(CURDIR)/debian/vacuum/usr/games/vacuum.pl \ + $(CURDIR)/debian/vacuum/usr/games/vacuum + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_install + dh_desktop + dh_strip + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install Property changes on: packages/trunk/vacuum/debian/rules ___________________________________________________________________ Name: svn:executable + * Added: packages/trunk/vacuum/debian/vacuum.desktop =================================================================== --- packages/trunk/vacuum/debian/vacuum.desktop (rev 0) +++ packages/trunk/vacuum/debian/vacuum.desktop 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=Vacuum +GenericName=vacuum +Comment=Use your vacuum magic +Type=Application +Exec=vacuum +Icon=vacuum +Terminal=false +Categories=Game;ActionGame; + Added: packages/trunk/vacuum/debian/vacuum.install =================================================================== --- packages/trunk/vacuum/debian/vacuum.install (rev 0) +++ packages/trunk/vacuum/debian/vacuum.install 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1 @@ +debian/vacuum.desktop usr/share/applications Added: packages/trunk/vacuum/debian/watch =================================================================== --- packages/trunk/vacuum/debian/watch (rev 0) +++ packages/trunk/vacuum/debian/watch 2008-05-19 22:26:53 UTC (rev 7115) @@ -0,0 +1,3 @@ +version=3 + +http://sf.net/vacuum/vacuum-([\d.]+)\.tar\.gz _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

