fretsonfire-songs-sectoid (1.dfsg-2) debian-dir only changes

Summary

 debian/changelog   |   18 ++++++++++++++
 debian/compat      |    1 
 debian/control     |   16 +++++++++++++
 debian/copyright   |   38 ++++++++++++++++++++++++++++++
 debian/dirs        |    1 
 debian/install     |    2 +
 debian/library.ini |    3 ++
 debian/rules       |   65 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 8 files changed, 144 insertions(+)

    
download this patch

Patch contents

--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/rules
+++ fretsonfire-songs-sectoid-1.dfsg/debian/rules
@@ -0,0 +1,65 @@
+#!/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 
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installdirs
+	dh_install
+	# Remove extra licence files:
+	find $(CURDIR)/debian/fretsonfire-songs-sectoid -name License.txt -exec rm {} \;
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	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-songs-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-songs-sectoid-$(ORIG_VERSION)
+	mv -f "Escape from chaosland" "Feelings" "Metal madness" "War of freedom" fretsonfire-songs-sectoid-$(ORIG_VERSION)
+	tar zcvf ../fretsonfire-songs-sectoid_$(ORIG_VERSION).orig.tar.gz fretsonfire-songs-sectoid-$(ORIG_VERSION)
+	rm -rf fretsonfire-songs-sectoid-$(ORIG_VERSION) "Ryu's theme" 
+
+.PHONY: build clean binary-indep binary-arch binary install configure
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/copyright
+++ fretsonfire-songs-sectoid-1.dfsg/debian/copyright
@@ -0,0 +1,38 @@
+This package was debianized by Matthew Johnson <debian@matthew.ath.cx> 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 <karuritosu@gmail.com>
+
+Copyright:
+
+The songs, performances and fret files are all Copyright (c) 2006/2007  Carlos
+Viola Iborra <karuritosu@gmail.com>
+
+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 <debian@matthew.ath.cx>
+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'.
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/changelog
+++ fretsonfire-songs-sectoid-1.dfsg/debian/changelog
@@ -0,0 +1,18 @@
+fretsonfire-songs-sectoid (1.dfsg-2) unstable; urgency=low
+
+  * Update maintainer email address 
+
+ -- Matthew Johnson <mjj29@debian.org>  Wed, 05 Dec 2007 10:57:15 +0000
+
+fretsonfire-songs-sectoid (1.dfsg-1) unstable; urgency=low
+
+  * Repackaging without non-dfsg song.
+  * use dh_install 
+
+ -- Matthew Johnson <debian@matthew.ath.cx>  Thu, 24 May 2007 13:30:26 +0100
+
+fretsonfire-songs-sectoid (1-1) unstable; urgency=low
+
+  * Initial Packaging
+
+ -- Matthew Johnson <debian@matthew.ath.cx>  Mon, 21 May 2007 23:58:05 +0100
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/install
+++ fretsonfire-songs-sectoid-1.dfsg/debian/install
@@ -0,0 +1,2 @@
+Escape* Feelings Metal* War* usr/share/games/fretsonfire/data/songs/sectoid
+debian/library.ini usr/share/games/fretsonfire/data/songs/sectoid
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/compat
+++ fretsonfire-songs-sectoid-1.dfsg/debian/compat
@@ -0,0 +1 @@
+5
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/library.ini
+++ fretsonfire-songs-sectoid-1.dfsg/debian/library.ini
@@ -0,0 +1,3 @@
+[library]
+name=Songs by Sectoid
+
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/dirs
+++ fretsonfire-songs-sectoid-1.dfsg/debian/dirs
@@ -0,0 +1 @@
+usr/share/games/fretsonfire/data/songs/sectoid
--- fretsonfire-songs-sectoid-1.dfsg.orig/debian/control
+++ fretsonfire-songs-sectoid-1.dfsg/debian/control
@@ -0,0 +1,16 @@
+Source: fretsonfire-songs-sectoid
+Section: games
+Priority: optional
+Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org> 
+Uploaders: Matthew Johnson <mjj29@debian.org>, Miriam Ruiz <little_miry@yahoo.es>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+
+Package: fretsonfire-songs-sectoid
+Architecture: all
+Depends: fretsonfire-game
+Description: game of musical skill and fast fingers - Songs 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