[heroes-sound-tracks] 01/09: Imported Debian patch 1.0-4
Stephen Kitt
skitt at moszumanska.debian.org
Tue Jan 19 12:30:46 UTC 2016
This is an automated email from the git hooks/post-receive script.
skitt pushed a commit to branch master
in repository heroes-sound-tracks.
commit 7c6b8d83708a54194fd0711a6793ffe649ddaa65
Author: Daniel Burrows <dburrows at debian.org>
Date: Fri Nov 22 09:33:04 2002 -0500
Imported Debian patch 1.0-4
---
debian/changelog | 33 +++++++++++++++++++++++++++++++++
debian/control | 22 ++++++++++++++++++++++
debian/copyright | 44 ++++++++++++++++++++++++++++++++++++++++++++
debian/docs | 2 ++
debian/rules | 38 ++++++++++++++++++++++++++++++++++++++
debian/watch | 1 +
6 files changed, 140 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..19b898e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,33 @@
+heroes-sound-tracks (1.0-4) unstable; urgency=low
+
+ * Changed email address to @debian.org.
+
+ -- Daniel Burrows <dburrows at debian.org> Fri, 22 Nov 2002 09:33:04 -0500
+
+heroes-sound-tracks (1.0-3) unstable; urgency=low
+
+ * Weakened Depends: heroes to Recommends: heroes. (fix for the testing
+ scripts)
+
+ -- Daniel Burrows <dburrows at debian.org> Fri, 23 Nov 2001 13:11:47 -0500
+
+heroes-sound-tracks (1.0-2) unstable; urgency=low
+
+ * Changed "required data files" to "optional sound files" in description.
+ Oops.
+
+ -- Daniel Burrows <dburrows at debian.org> Tue, 20 Nov 2001 13:00:14 -0500
+
+heroes-sound-tracks (1.0-1) unstable; urgency=low
+
+ * Final upstream 1.0 release
+
+ -- Daniel Burrows <Daniel_Burrows at brown.edu> Sat, 2 Sep 2000 15:32:25 -0400
+
+heroes-sound-tracks (1.0-0pre1) unstable; urgency=low
+
+ * Initial release (strange version number to work around dpkg problems)
+
+ -- Daniel Burrows <Daniel_Burrows at brown.edu> Mon, 28 Aug 2000 09:17:12 -0400
+
+
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..213be86
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: heroes-sound-tracks
+Section: games
+Priority: optional
+Build-Depends-Indep: debhelper
+Maintainer: Daniel Burrows <dburrows at debian.org>
+Standards-Version: 3.0.1
+
+Package: heroes-sound-tracks
+Architecture: all
+Recommends: heroes
+Conflicts: heroes (<< 0.6-0pre3)
+Replaces: heroes (<< 0.6-0pre3)
+Description: Optional sound files for heroes
+ Heroes is similar to the "Tron" and "Nibbles" games of yore, but includes
+ many graphical improvements and new game features. In it, you must maneuver
+ a small vehicle around a world and collect powerups while avoiding obstacles,
+ your opponents' trails, and even your own trail.
+ .
+ This package contains optional background music for Heroes. Install this
+ if you want to listen to music while playing the game, or if you just happen
+ to like the tunes. Be warned that this package is quite large and will take
+ a long time to download over a modem or other slow link!
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bb49530
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,44 @@
+This package was debianized by Daniel Burrows <Daniel_Burrows at brown.edu> on
+Tue, 18 Jul 2000 09:30:22 -0400.
+
+It was downloaded from http://sourceforge.net/projects/heroes
+
+Upstream Authors (from AUTHORS):
+* Romuald Genevois (Guen) <rgenevois at besancon.net>
+ http://www.realtech.scene.org/romualdgenevois
+
+ Had the idea of that game, designed most of it,
+ drew the graphics, created most of the levels.
+
+
+* Alexandre Liverneaux (Alexel) <alex.livernaux at wanadoo.fr>
+ http://alexel.planet-d.net/
+
+ Composed the soundtracks.
+
+
+* Philippe Meisburger (Tnk) <philmeis at mail.dotcom.fr>
+ http://perso.club-internet.fr/philmeis/
+
+ Composed the soundtracks and created a few levels.
+
+
+* Alexandre Duret-Lutz (Pollux) <duret_g at epita.fr>
+ http://www.epita.fr/~duret_g/
+
+ Wrote the original source code, ported it to Linux
+ and created a few levels.
+
+
+Copyright and license:
+
+ Copyright (c) 1997,1998,2000 Alexandre Duret-Lutz, Romuald Genevois,
+ Alexandre Liverneaux and Philippe Meisburger.
+
+ Heroes 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.
+
+On any Debian system, you can find the complete text of the GNU GPL
+(GNU General Public License) in the file /usr/share/common-licenses/GPL
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..50bd824
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+NEWS
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..88bef6b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,38 @@
+#!/usr/bin/make -f
+
+export DH_COMPAT=1
+
+build-stamp:
+ ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --datadir=\$${prefix}/share/games --bindir=\$${prefix}/games
+ touch build-stamp
+
+build: build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ -$(MAKE) distclean
+ dh_clean
+
+binary-arch:
+
+binary-indep: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ $(MAKE) install prefix=`pwd`/debian/tmp/usr
+
+ dh_installdocs
+ dh_installchangelogs ChangeLog
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep
+.PHONY: build clean binary-arch binary-indep binary
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..aa822f5
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1 @@
+http://prdownloads.sourceforge.net /heroes/ heroes-sound-tracks-([0-9.]*)\.tar\.gz debian
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/heroes-sound-tracks.git
More information about the Pkg-games-commits
mailing list