--- scummvm-0.11.0.orig/debian/scummvm.docs +++ scummvm-0.11.0/debian/scummvm.docs @@ -0,0 +1,4 @@ +AUTHORS +COPYRIGHT +README +TODO --- scummvm-0.11.0.orig/debian/scummvm.dirs +++ scummvm-0.11.0/debian/scummvm.dirs @@ -0,0 +1,5 @@ +usr/games +usr/share/man/man6 +usr/share/icons +usr/share/scummvm +usr/share/applications --- scummvm-0.11.0.orig/debian/prepare +++ scummvm-0.11.0/debian/prepare @@ -0,0 +1,36 @@ +#! /bin/sh + +# This simple script is called from the upstream makefile whenever someone +# calls "make deb". It adds a changelog entry to the top of debian/changelog +# so that the version number is correct. + +VERSION=`sed -n -e 's/CVS//g' -e 's/^const char \*gScummVMVersion = "\(.*\)";/\1/p' base/main.cpp `-0cvs`date +%Y%m%d` +USERNAME=`whoami` +GECOS=`getent passwd $USERNAME | awk '-F[,:]' '{print $5}'` +DOMAIN=`hostname --fqdn` +DATE=`date -R` + +head -1 debian/changelog | grep -qF $VERSION && exit 0 + +TMP=`tempfile` + +cat debian/changelog > $TMP + +cat << __eof > debian/changelog +scummvm ($VERSION) experimental; urgency=low + + * CVS snapshot. + + Builder: $GECOS <$USERNAME@$DOMAIN> + Build-date: $DATE + + Please don't file bugs you find in this package in the Debian Bug Tracking + system, use the ScummVM team's own bug tracker instead. You can find this + tracker at . + + -- David Weinehall $DATE + +__eof + +cat $TMP >> debian/changelog +rm -f $TMP --- scummvm-0.11.0.orig/debian/control +++ scummvm-0.11.0/debian/control @@ -0,0 +1,30 @@ +Source: scummvm +Section: games +Priority: optional +Maintainer: David Weinehall +Build-Depends: debhelper (>> 4.2.27), nasm [i386], tetex-bin, tetex-extra, gs-gpl, libsdl1.2-dev, libmad0-dev, libasound2-dev, libvorbis-dev (>= 1.0.0-2), libmpeg2-4-dev, libflac-dev (>= 1.1.2-1), libz-dev, libfluidsynth-dev +Standards-Version: 3.7.3 + +Package: scummvm +Architecture: any +Depends: ${shlibs:Depends} +Suggests: fluidsynth | timidity, beneath-a-steel-sky, flight-of-the-amazon-queen +Description: free implementation of LucasArts' SCUMM interpreter + ScummVM is a `virtual machine' for several classic graphical + point-and-click adventure games. It is designed to run Adventure Soft's + Simon the Sorcerer 1 and 2, Revolution's Beneath A Steel Sky, and games + based on LucasArts' SCUMM (Script Creation Utility for Maniac Mansion) + system. SCUMM is used for many games, including Monkey Island, + Day of the Tentacle, Sam and Max and more. See the official compatibility + list at for a full list + of supported games. + . + The game data of two games compatible with ScummVM is included in Debian. + These are: + . + - Beneath a Steel Sky (package name: beneath-a-steel-sky) + - Flight of the Amazon Queen (package name: flight-of-the-amazon-queen) + . + To actually make use of ScummVM, you'll have to install one of these, or + obtain the proprietary game data for another supported game from somewhere + else. --- scummvm-0.11.0.orig/debian/scummvm.menu +++ scummvm-0.11.0/debian/scummvm.menu @@ -0,0 +1,3 @@ +?package(scummvm):needs="x11" section="Games/Adventure" \ + title="ScummVM" command="/usr/games/scummvm" \ + icon="/usr/share/icons/scummvm.xpm" --- scummvm-0.11.0.orig/debian/rules +++ scummvm-0.11.0/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +build: scummvm + +scummvm: config.mk + dh_testdir + $(MAKE) + +config.mk: + ./configure --datadir=/usr/share + +clean: config.mk + dh_testdir + dh_testroot + $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean + dh_installdirs + install -m0755 scummvm debian/scummvm/usr/games/scummvm + install -m0644 icons/scummvm.xpm debian/scummvm/usr/share/icons + install -m0644 icons/scummvm.svg debian/scummvm/usr/share/icons + install -m0644 dists/scummvm.desktop debian/scummvm/usr/share/applications + install -m0644 gui/themes/modern.zip debian/scummvm/usr/share/scummvm + install -m0644 gui/themes/modern.ini debian/scummvm/usr/share/scummvm + install -m0644 dists/pred.dic debian/scummvm/usr/share/scummvm + +binary: binary-arch + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs NEWS + dh_installman + dh_installmenu + dh_desktop + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: + +.PHONY: build clean binary install binary-arch binary-indep --- scummvm-0.11.0.orig/debian/scummvm.manpages +++ scummvm-0.11.0/debian/scummvm.manpages @@ -0,0 +1 @@ +dists/scummvm.6 --- scummvm-0.11.0.orig/debian/copyright +++ scummvm-0.11.0/debian/copyright @@ -0,0 +1,19 @@ +ScummVM was debianized by Bastien Nocera the 5th Apr 2002. +It was adopted by Tore Anderson the 4th Oct 2002, +then adopted by David Weinehall the 30th Jan 2006. + +It was downloaded from . + +Upstream Authors: see `/usr/share/doc/scummvm/AUTHORS'. + +Copyright: + + This program 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, or (at your option) any + later version. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL'. + +This copyright also applies to the Debian-related build scripts. --- scummvm-0.11.0.orig/debian/changelog +++ scummvm-0.11.0/debian/changelog @@ -0,0 +1,385 @@ +scummvm (0.11.0-0ubuntu1) hardy; urgency=low + + * New upstream release (LP: #183976) + + -- Roy Jamison Wed, 23 Jan 2008 14:15:14 +0000 + +scummvm (0.10.0-2) unstable; urgency=low + + * Run configure before clean target (Closes: #445610) + + -- David Weinehall Sun, 07 Oct 2007 15:56:49 +0300 + +scummvm (0.10.0-1) unstable; urgency=low + + * The ``Too late for words'' release + * New upstream release + + -- David Weinehall Thu, 04 Oct 2007 00:54:56 +0300 + +scummvm (0.9.1-1) unstable; urgency=low + + * New upstream release + * debian/prepare: refer to me instead + * debian/copyright: add the date I adopted the package + + -- David Weinehall Mon, 30 Oct 2006 16:44:12 +0200 + +scummvm (0.9.0-1) unstable; urgency=low + + * New upstream release (Closes: #379184) + - Buffer overflow fixed (Closes: #292263) + * debian/control: + - Standards-Version 3.7.2.1 - no changes required + + -- David Weinehall Sat, 23 Sep 2006 16:01:48 +0300 + +scummvm (0.8.2-2) unstable; urgency=low + + * Install (updated) .desktop-file + SVG-icon (Closes: #361534) + | Thanks to Sven Arvidsson + + -- David Weinehall Sun, 9 Apr 2006 01:42:30 +0300 + +scummvm (0.8.2-1) unstable; urgency=low + + * New upstream release + + -- David Weinehall Sun, 5 Feb 2006 20:48:31 +0200 + +scummvm (0.8.1-1) unstable; urgency=low + + * New upstream release. + * New maintainer. + + -- David Weinehall Mon, 30 Jan 2006 10:29:59 +0200 + +scummvm (0.8.0-1) unstable; urgency=low + + * New upstream release: + - Uses British English as the default subtitle language for Beneath a + Steel Sky, closes: #329157. + + * debian/control, debian/rules: + - Build using the default GCC, as GCC 4 is now supported. + + * debian/control: + - Add a dependency on libfluidsynth-dev, as the new upstream release can + make use of the fluidsynth library directly. + + -- Tore Anderson Sat, 29 Oct 2005 21:05:52 +0200 + +scummvm (0.7.1-3) unstable; urgency=low + + * debian/control: + - Narrow build-dependency on libflac-dev to version 1.1.2-1 or above, + closes: #325954. Many thanks to Joshua Kwan for notifying me of FLAC's + recent SONAME increase, which necessitates this change. + + -- Tore Anderson Fri, 2 Sep 2005 07:20:32 +0200 + +scummvm (0.7.1-2) unstable; urgency=low + + * debian/control, debian/rules: + - Compile the package with GCC 3.4. + + * debian/prepare (new): + - Added a script that prepares the debian/ tree for building developement + snapshots of ScummVM. + + * debian/control: + - Up standards-version to 3.6.2.1, no changes required. + + -- Tore Anderson Sun, 31 Jul 2005 11:38:18 +0200 + +scummvm (0.7.1-1) unstable; urgency=low + + * New upstream release. + + * debian/control: + - Remove the nasm [!i386] build conflict, as the configure script now + correctly detects if nasm can be used. + - Up standards-version to 3.6.1.1 (no changes required). + + * configure: + - Reverted to the upstream version, as the GCC 4.0 patch from 0.7.0-3 is + now included there. + + -- Tore Anderson Tue, 29 Mar 2005 21:57:38 +0200 + +scummvm (0.7.0-3) unstable; urgency=medium + + * debian/control: + - Add a version requirement of >= 1.1.1-2 to the libflac-dev build + dependency, closes: #289214. + - Add fluidsynth as a preferred alternative to the timidity suggestion. + - Remove superfluous "the" from the description. + + * configure: + - Partly apply patch from Andreas Jochens, closes: #289122. Thanks! + Hopefully, this should make it possible to compile ScummVM on AMD64 + using GCC 4.0. GCC 4.0 is not yet supported from upstream, though. + + -- Tore Anderson Sat, 8 Jan 2005 15:03:34 +0100 + +scummvm (0.7.0-2) unstable; urgency=low + + * debian/control: + - Build-depend on nasm only on i386. + - Add a build conflict on nasm for all other archs than i386. + - Add an explicit build dependency on libz-dev. + + * debian/copyright: + - Change URLs from http://scummvm.sf.net/ to http://www.scummvm.org/. + + -- Tore Anderson Wed, 5 Jan 2005 23:22:08 +0100 + +scummvm (0.7.0-1) unstable; urgency=low + + * New upstream release. + - Fixes scripting bug that in some cases may render the game unwinnable, + closes: #209418. + + * debian/control: + - Improve description. Closes: #266055. Thanks, Frederic Briere! + - Add build dependencies on nasm, tetex-bin, tetex-extra, gs-gpl, and + libflac-dev. + + * debian/rules, debian/scummvm.docs, debian/copyright: + - Build and include README.pdf (generated from doc/*.tex). + - Include AUTHORS, and reference it from debian/copyright instead of + maintaining a separate list of authors there. + + * debian/scummvm.dirs, debian/rules, debian/scummvm.sh (removed): + - A more sane default save game path has been chosen upstream. Remove + the Debian-specific wrapper script workaround introduced in 0.6.0-2 + accordingly. + + -- Tore Anderson Wed, 5 Jan 2005 14:43:08 +0100 + +scummvm (0.6.1b-1) unstable; urgency=low + + * New upstream release. + + -- Tore Anderson Fri, 6 Aug 2004 12:45:46 +0200 + +scummvm (0.6.1-1) unstable; urgency=low + + * New upstream release. + + -- Tore Anderson Mon, 26 Jul 2004 15:11:10 +0200 + +scummvm (0.6.0-2) unstable; urgency=low + + * debian/scummvm.dirs, debian/rules, debian/scummvm.sh (new): + - Make /usr/games/scummvm be a wrapper script which creates the + ~/.scummvmrc file if it doesn't already exist, setting the savegame + path to ~/.scummvm/. Closes: #216178. This is a workaround, though, + I really wish this would be fixed in the upstream sources. + + * debian/control: + - Correct the compability chart link in the package description. + - Update package description so it is clear that Flight of The Amazon + Queen and Beneath a Steel Sky is available in Debian, closes: #245356. + + * debian/README.Debian (removed): + - Removed from the package, as it only spoke of the ScummVM tools, + which was removed in the 0.6.0-1 upload. Closes: #259259 (sort-of). + + * base/main.cpp, scumm/actor.cpp, scumm/debugger.cpp: + - GCC 3.4 fixes from Andreas Jochens. Thanks! Closes: #259835. + + -- Tore Anderson Sun, 18 Jul 2004 12:26:27 +0200 + +scummvm (0.6.0-1) unstable; urgency=low + + * New upstream release. + + * debian/control: + - Build-Depend on libmpeg2-4-dev to support Broken Sword cutscenes. + + * debian/rules: + - Start using upstream's new configure script. + - Remove unneeded call to dh_link. + + * debian/scummvm.docs: + - Add upstream's TODO file. + + * debian/scummvm.menu: + - Enclose the "needs" and "section" directives in double quotes. + + * debian/patches/* (removed), debian/control, debian/rules: + - Stop using dpatch. All of the previously required patches are now + integrated in the upstream sources. + + * debian/tools/* (removed), debian/scummvm.examples, debian/rules: + - Remove the various tools as they really don't belong in the ScummVM + package. + + -- Tore Anderson Sun, 14 Mar 2004 16:28:54 +0100 + +scummvm (0.5.1-4) unstable; urgency=low + + * debian/patches/03alsa_api_fix.dpatch (new), debian/patches/00list: + - FTBFS fix; improve ALSA version detection macro so it works with + version 1.0 and above. Thanks, Jordi Mallach! + + -- Tore Anderson Sun, 1 Feb 2004 01:36:07 +0100 + +scummvm (0.5.1-3) unstable; urgency=low + + * debian/patches/02bass_soundreload (new): + - Forces BASS to reload music and sound even if the intro was + viewed in full, closes: #208901. + * debian/control: + - Change maintainer email address. + - Bump Standards-Version to current policy, no changes required. + + -- Tore Anderson Mon, 29 Sep 2003 16:13:43 +0200 + +scummvm (0.5.1-2) unstable; urgency=low + + * Move to main. (Note to the FTP masters: This is because the + one of the supported games, Beneath A Steel Sky, has recently been + released as free software. It should appear in NEW shortly, if + it's not there already.) + * Sponsored by David Weinehall. + + -- David Weinehall Wed, 27 Aug 2003 21:00:42 +0200 + +scummvm (0.5.1-1) unstable; urgency=low + + * New upstream release. + * Sponsored by David Weinehall. (No beer needed...) + + -- Tore Anderson Sat, 9 Aug 2003 15:18:18 +0200 + +scummvm (0.5.0-1) unstable; urgency=low + + * New upstream release. + * Suggest beneath-a-steel-sky. + * Restructure 00buildopts somewhat, to ease future maintenance. + * Standards-Version 3.6.0, no changes required. + * Revised the description. + * Sponsored by Joey Hess. (Tore fed me all the beer I could take .. + and then asked me to do this. ;-) + + -- Tore Anderson Fri, 1 Aug 2003 21:45:06 +0200 + +scummvm (0.4.1-1) unstable; urgency=low + + * New upstream release. + * Standards-Version 3.5.10. + - Use upstream's icon in the menu system. + * Removed debian/patches/01-enable-alsa-and-vorbis.dpatch, this + is now done from debian/rules instead. + * Added debian/patches/00buildopts, which makes it possible + for environment variables to override the compiler flags. + * Better handling of $DEB_BUILD_OPTIONS. + * Declare the debhelper compability level in debian/compat instead + of debian/rules. + + -- Tore Anderson Thu, 29 May 2003 15:15:55 +0200 + +scummvm (0.4.0-1) unstable; urgency=low + + * New upstream release, closes: #193522. + - Lots of VM fixes in The DIG, closes: #173550. + - Obsoletes debian/patches/02-fix-manpage-savekey.dpatch. + - Obsoletes debian/patches/03-fix-talking-to-parrot.dpatch. + - Obsoletes debian/patches/04-alsa-seq-tty-output.dpatch. + * Add extract.c and simon2mp3.c to the examples directory, closes: #154449. + + -- Tore Anderson Wed, 14 May 2003 19:04:53 +0200 + +scummvm (0.3.0b-3) unstable; urgency=low + + * It appears I reinvented the wheel. Start using dpatch instead of + my own patchsystem. + * Update Standards-Version to match current policy. + * Tighten build-dependency on libvorbis-dev, to ensure that the binary + will be linked against the new libvorbis0a package. Closes: #185447. + + -- Tore Anderson Tue, 18 Mar 2003 22:54:32 +0100 + +scummvm (0.3.0b-2) unstable; urgency=low + + * Re-upload to build the binary with GCC 3.2. + * Use a patch system instead of putting all changes in the .diff.gz. + * Correct save-game modifier key in the manpage. Closes: #173153. + * Two fixes from upstream: + - Fix 'talking to parrot' script deadlock in Fate of Atlantis. + - Print correct alsa client and port variables to console. + + -- Tore Anderson Fri, 10 Jan 2003 17:28:36 +0100 + +scummvm (0.3.0b-1) unstable; urgency=low + + * New upstream release. + * Update standards-version again. + * Convert icon to use only the colours mandated by the menu package. + + -- Tore Anderson Sun, 8 Dec 2002 14:56:26 +0100 + +scummvm (0.2.81cvs20021110-1) unstable; urgency=low + + * New CVS snapshot. + * Remove README.Debian - it was incorrect. + * Drop build-deps on curses and readline. + * Update standards-version to current policy. + * Don't install the empty dir /usr/lib/scummvm anymore. + + -- Tore Anderson Sun, 10 Nov 2002 17:13:36 +0100 + +scummvm (0.2.0.1cvs20021028-1) unstable; urgency=low + + * New CVS snapshot. + * Kill cruft that sneaked into the .diff.gz. + * Add menu entry. + * Rewrote description and copyright file. + * Suggest timidity (can be used with ALSA for gorgeous in-game music). + * Support .SOG (Ogg Vorbis-compressed .SOU-files). + + -- Tore Anderson Mon, 28 Oct 2002 14:30:21 +0100 + +scummvm (0.2.0.1cvs20021012-1) unstable; urgency=low + + * New upstream rele^WCVS snapshot. + * New maintainer. Closes: #163105. + * Compliant with Policy 3.5.7.0. Or so I hope. + * Support ALSA's sequencer. Closes: #154451. + + -- Tore Anderson Sat, 12 Oct 2002 15:17:11 +0200 + +scummvm (0.2.0.1) unstable; urgency=low + + * Fix by James Brown for the trailing slash bug + (Closes: #150144) + * Add libmad-dev to the Buildreqs, compile with compressed audio support + (Closes: #150272) + + -- Bastien Nocera Tue, 18 Jun 2002 02:35:50 +0100 + +scummvm (0.2.0) unstable; urgency=low + + * New upstream version (Closes: #143281) + * Killed the wrapper script, see upstream changelog + + -- Bastien Nocera Wed, 15 May 2002 03:27:11 +0100 + +scummvm (0.1.0b-2) unstable; urgency=low + + * Moved the scummvm main bin under /usr/lib, the wrapper script under + /usr/games + * Fixed bug in the script that made it not work if the path was relative + + -- Bastien Nocera Wed, 10 Apr 2002 19:27:05 +0100 + +scummvm (0.1.0b-1) unstable; urgency=low + + * Initial Release. + * Packaged made under the influence of beer at GUAD3C in Sevilla ! Arriba ! + Ole ! + + -- Bastien Nocera Fri, 5 Apr 2002 16:37:09 +0100 + --- scummvm-0.11.0.orig/debian/compat +++ scummvm-0.11.0/debian/compat @@ -0,0 +1 @@ +4