aboutsummaryrefslogtreecommitdiff
path: root/dists/debian
diff options
context:
space:
mode:
authorTore Anderson2002-11-01 18:13:27 +0000
committerTore Anderson2002-11-01 18:13:27 +0000
commit797fc8159725b1e5c89ed9176e72ded481294518 (patch)
tree93b3d87d4dd9dcf8e76cdeb3822b98337dc27ed7 /dists/debian
parent60339d6e9a7b4923f5bebf154bed26f7f028279a (diff)
downloadscummvm-rg350-797fc8159725b1e5c89ed9176e72ded481294518.tar.gz
scummvm-rg350-797fc8159725b1e5c89ed9176e72ded481294518.tar.bz2
scummvm-rg350-797fc8159725b1e5c89ed9176e72ded481294518.zip
initial revision
svn-id: r5368
Diffstat (limited to 'dists/debian')
-rw-r--r--dists/debian/changelog.in8
-rw-r--r--dists/debian/control32
-rw-r--r--dists/debian/copyright28
-rwxr-xr-xdists/debian/prepare5
-rwxr-xr-xdists/debian/rules50
-rw-r--r--dists/debian/scummvm-cvs.dirs3
-rw-r--r--dists/debian/scummvm-cvs.docs1
-rw-r--r--dists/debian/scummvm-cvs.manpages1
-rw-r--r--dists/debian/scummvm-cvs.menu3
9 files changed, 131 insertions, 0 deletions
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 <hadess@hadess.net> 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 <tore@linpro.no>
+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 <hadess@hadess.net> on
+Fri, 5 Apr 2002 16:37:09 +0100
+
+It was adopted by Tore Anderson <tore@linpro.no> 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"