From 797fc8159725b1e5c89ed9176e72ded481294518 Mon Sep 17 00:00:00 2001 From: Tore Anderson Date: Fri, 1 Nov 2002 18:13:27 +0000 Subject: initial revision svn-id: r5368 --- dists/debian/changelog.in | 8 +++++++ dists/debian/control | 32 +++++++++++++++++++++++++ dists/debian/copyright | 28 ++++++++++++++++++++++ dists/debian/prepare | 5 ++++ dists/debian/rules | 50 +++++++++++++++++++++++++++++++++++++++ dists/debian/scummvm-cvs.dirs | 3 +++ dists/debian/scummvm-cvs.docs | 1 + dists/debian/scummvm-cvs.manpages | 1 + dists/debian/scummvm-cvs.menu | 3 +++ 9 files changed, 131 insertions(+) create mode 100644 dists/debian/changelog.in create mode 100644 dists/debian/control create mode 100644 dists/debian/copyright create mode 100755 dists/debian/prepare create mode 100755 dists/debian/rules create mode 100644 dists/debian/scummvm-cvs.dirs create mode 100644 dists/debian/scummvm-cvs.docs create mode 100644 dists/debian/scummvm-cvs.manpages create mode 100644 dists/debian/scummvm-cvs.menu (limited to 'dists/debian') diff --git a/dists/debian/changelog.in b/dists/debian/changelog.in new file mode 100644 index 0000000000..9387abcad2 --- /dev/null +++ b/dists/debian/changelog.in @@ -0,0 +1,8 @@ +scummvm-cvs (@VERSION@-1) unstable; urgency=low + + * This is a CVS snapshot, don't file bugs on the Debian BTS if you use + this package. Instead use the Sourceforge bug tracker: + http://sourceforge.net/tracker/?group_id=37116 + + -- Bastien Nocera Fri, 5 Apr 2002 16:37:09 +0100 + diff --git a/dists/debian/control b/dists/debian/control new file mode 100644 index 0000000000..f08e121927 --- /dev/null +++ b/dists/debian/control @@ -0,0 +1,32 @@ +Source: scummvm-cvs +Section: contrib/games +Priority: optional +Maintainer: Tore Anderson +Build-Depends: debhelper (>> 3.0.0), libsdl1.2-dev, libreadline4-dev, libncurses5-dev, libmad0-dev +Standards-Version: 3.5.7.1 + +Package: scummvm-cvs +Architecture: any +Depends: ${shlibs:Depends} +Suggests: timidity +Conflicts: scummvm +Description: SDL implementation of LucasArts' S.C.U.M.M. interpreter + S.C.U.M.M. (Script Creation Utility for Maniac Mansion) is the engine + used to a lot of classic LucasArts adventure games, such as Sam & Max + and The Secret of Monkey Island. + . + ScummVM lets you play your old adventure games in Debian, using SDL + for the graphic presentation. + . + In addition to the various LucasArts-games ScummVM can play, it is also + possible to use ScummVM with AdventureSoft's Simon the Sorcerer. For + a full list of compatible games; see the official compatibility list at + http://scummvm.sf.net/compatibility.php . + . + The data files belonging to the various games is not included in this + package due to licensing issues; you have to obtain them somewhere else + if you want ScummVM to be of any use. + . + NOTE: This is a unofficial package, which is not supported by the Debian + Project. Please report problems to SourceForge's bug tracker; + http://sourceforge.net/tracker/?group_id=37116. diff --git a/dists/debian/copyright b/dists/debian/copyright new file mode 100644 index 0000000000..cf4cddbe5f --- /dev/null +++ b/dists/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Bastien Nocera on +Fri, 5 Apr 2002 16:37:09 +0100 + +It was adopted by Tore Anderson on the 4th Oct 2002. + +It was downloaded from http://scummvm.sourceforge.net/ . + +Upstream Authors: + + James Brown + Vincent Hamm + Max Horn + Jeremy Newman + Ludvig Strigeus + ..and lots of other contributors. + +To contact any of these, or see a more comprehensive list over +contributors, see http://scummvm.sourceforge.net/contact.php . + +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'. diff --git a/dists/debian/prepare b/dists/debian/prepare new file mode 100755 index 0000000000..bfee1d0ec6 --- /dev/null +++ b/dists/debian/prepare @@ -0,0 +1,5 @@ +#! /bin/sh + +VER=`sed -n -e 's/ CVS//' -e 's/^#define SCUMMVM_VERSION "\(.*\)"/\1/p' common/engine.h`+cvs`date +%Y%m%d` + +sed "s/@VERSION@/$VER/g" debian/changelog.in > debian/changelog diff --git a/dists/debian/rules b/dists/debian/rules new file mode 100755 index 0000000000..8bd7b6989b --- /dev/null +++ b/dists/debian/rules @@ -0,0 +1,50 @@ +#!/usr/bin/make -f + +export DH_COMPAT=3 + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + export CFLAGS += -g +endif + +build: + dh_testdir + $(MAKE) + +clean: + dh_testdir + dh_testroot + -$(MAKE) clean + -find . -type d -name .deps | xargs rm -rf + rm -f build.rules + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean + dh_installdirs + install -m0755 scummvm $(CURDIR)/debian/scummvm-cvs/usr/games/scummvm + install -m0644 scummvm.xpm $(CURDIR)/debian/scummvm-cvs/usr/share/icons + +binary: binary-arch binary-indep + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs NEWS + dh_installman + dh_installmenu + dh_link + 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 diff --git a/dists/debian/scummvm-cvs.dirs b/dists/debian/scummvm-cvs.dirs new file mode 100644 index 0000000000..f04c5d14d7 --- /dev/null +++ b/dists/debian/scummvm-cvs.dirs @@ -0,0 +1,3 @@ +usr/games +usr/lib/scummvm +usr/share/icons diff --git a/dists/debian/scummvm-cvs.docs b/dists/debian/scummvm-cvs.docs new file mode 100644 index 0000000000..e845566c06 --- /dev/null +++ b/dists/debian/scummvm-cvs.docs @@ -0,0 +1 @@ +README diff --git a/dists/debian/scummvm-cvs.manpages b/dists/debian/scummvm-cvs.manpages new file mode 100644 index 0000000000..9e5cb61ef9 --- /dev/null +++ b/dists/debian/scummvm-cvs.manpages @@ -0,0 +1 @@ +scummvm.6 diff --git a/dists/debian/scummvm-cvs.menu b/dists/debian/scummvm-cvs.menu new file mode 100644 index 0000000000..8951ecee04 --- /dev/null +++ b/dists/debian/scummvm-cvs.menu @@ -0,0 +1,3 @@ +?package(scummvm-cvs):needs=x11 section=Games/Adventure \ + title="ScummVM CVS" command="/usr/games/scummvm" \ + icon="/usr/share/icons/scummvm.xpm" -- cgit v1.2.3