Author: mjj29-guest Date: 2007-05-11 18:33:09 +0000 (Fri, 11 May 2007) New Revision: 2654
Added: packages/trunk/fretsonfire-data-sectoid/ packages/trunk/fretsonfire-data-sectoid/debian/ packages/trunk/fretsonfire-data-sectoid/debian/changelog packages/trunk/fretsonfire-data-sectoid/debian/compat packages/trunk/fretsonfire-data-sectoid/debian/control packages/trunk/fretsonfire-data-sectoid/debian/copyright packages/trunk/fretsonfire-data-sectoid/debian/library.ini packages/trunk/fretsonfire-data-sectoid/debian/rules Log: add fretsonfire data package packaging Added: packages/trunk/fretsonfire-data-sectoid/debian/changelog =================================================================== --- packages/trunk/fretsonfire-data-sectoid/debian/changelog 2007-05-11 18:28:49 UTC (rev 2653) +++ packages/trunk/fretsonfire-data-sectoid/debian/changelog 2007-05-11 18:33:09 UTC (rev 2654) @@ -0,0 +1,5 @@ +fretsonfire-data-sectoid (1-1) unstable; urgency=low + + * Initial Packaging + + -- Matthew Johnson <[EMAIL PROTECTED]> Fri, 11 May 2007 14:57:39 +0100 Added: packages/trunk/fretsonfire-data-sectoid/debian/compat =================================================================== --- packages/trunk/fretsonfire-data-sectoid/debian/compat 2007-05-11 18:28:49 UTC (rev 2653) +++ packages/trunk/fretsonfire-data-sectoid/debian/compat 2007-05-11 18:33:09 UTC (rev 2654) @@ -0,0 +1 @@ +5 Added: packages/trunk/fretsonfire-data-sectoid/debian/control =================================================================== --- packages/trunk/fretsonfire-data-sectoid/debian/control 2007-05-11 18:28:49 UTC (rev 2653) +++ packages/trunk/fretsonfire-data-sectoid/debian/control 2007-05-11 18:33:09 UTC (rev 2654) @@ -0,0 +1,16 @@ +Source: fretsonfire-data-sectoid +Section: games +Priority: optional +Maintainer: Debian Games Team <[EMAIL PROTECTED]> +Uploaders: Matthew Johnson <[EMAIL PROTECTED]>, Miriam Ruiz <[EMAIL PROTECTED]> +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: fretsonfire-data-sectoid +Architecture: all +Depends: fretsonfire +Description: game of musical skill and fast fingers - Data Package + Frets on Fire is a game of musical skill and fast fingers. The aim of + the game is to play guitar with the keyboard as accurately as possible. + . + This is a data package of songs written by Sectoid Added: packages/trunk/fretsonfire-data-sectoid/debian/copyright =================================================================== --- packages/trunk/fretsonfire-data-sectoid/debian/copyright 2007-05-11 18:28:49 UTC (rev 2653) +++ packages/trunk/fretsonfire-data-sectoid/debian/copyright 2007-05-11 18:33:09 UTC (rev 2654) @@ -0,0 +1,38 @@ +This package was debianized by Matthew Johnson <[EMAIL PROTECTED]> on +Fri, 11 May 2007 13:29:26 +0100. + +The songs were downloaded and repackaged from +http://www.nivel21.net/personal/sectoid/fretsonfire/Sectoid_Frets_on_Fire_Song_Pack.zip + +Upstream Author Carlos Viola Iborra <[EMAIL PROTECTED]> + +Copyright: + +The songs, performances and fret files are all Copyright (c) 2006/2007 Carlos +Viola Iborra <[EMAIL PROTECTED]> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Packaging: + +The Debian packaging is (C) 2006-2007, Matthew Johnson <[EMAIL PROTECTED]> +and is licensed under the GPL. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. Added: packages/trunk/fretsonfire-data-sectoid/debian/library.ini =================================================================== --- packages/trunk/fretsonfire-data-sectoid/debian/library.ini 2007-05-11 18:28:49 UTC (rev 2653) +++ packages/trunk/fretsonfire-data-sectoid/debian/library.ini 2007-05-11 18:33:09 UTC (rev 2654) @@ -0,0 +1,3 @@ +[library] +name=Songs by Sectoid + Added: packages/trunk/fretsonfire-data-sectoid/debian/rules =================================================================== --- packages/trunk/fretsonfire-data-sectoid/debian/rules 2007-05-11 18:28:49 UTC (rev 2653) +++ packages/trunk/fretsonfire-data-sectoid/debian/rules 2007-05-11 18:33:09 UTC (rev 2654) @@ -0,0 +1,73 @@ +#!/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 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + mkdir -p debian/fretsonfire-data-sectoid/usr/share/games/fretsonfire/data/songs/sectoid + for i in "Escape from chaosland" "Feelings" "Metal madness" "Ryu's theme" "War of freedom"; do \ + cp -r "$$i" debian/fretsonfire-data-sectoid/usr/share/games/fretsonfire/data/songs/sectoid; \ + done + + install -m644 debian/library.ini debian/fretsonfire-data-sectoid/usr/share/games/fretsonfire/data/songs/sectoid + + dh_installdirs + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch + +ORIG_VERSION=$(shell head -n1 debian/changelog | sed 's/[a-zA-Z0-9-]* (\(.*\)-\([^-]\)*) .*/\1/') + +../Sectoid_Frets_on_Fire_Song_Pack.zip: + wget -O $@ http://www.nivel21.net/personal/sectoid/fretsonfire/Sectoid_Frets_on_Fire_Song_Pack.zip + +get-orig-source: ../Sectoid_Frets_on_Fire_Song_Pack.zip + rm -rf fretsonfire-data-sectoid-$(ORIG_VERSION) "Escape from chaosland" "Feelings" "Metal madness" "Ryu's theme" "War of freedom" + for i in $^; do unzip -o $$i; done + mkdir -p fretsonfire-data-sectoid-$(ORIG_VERSION) + mv -f "Escape from chaosland" "Feelings" "Metal madness" "Ryu's theme" "War of freedom" fretsonfire-data-sectoid-$(ORIG_VERSION) + tar zcvf ../fretsonfire-data-sectoid_$(ORIG_VERSION).orig.tar.gz fretsonfire-data-sectoid-$(ORIG_VERSION) + rm -rf fretsonfire-data-sectoid-$(ORIG_VERSION) + +.PHONY: build clean binary-indep binary-arch binary install configure Property changes on: packages/trunk/fretsonfire-data-sectoid/debian/rules ___________________________________________________________________ Name: svn:executable + * _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

