From 3eeae12c498d1a4dbe969462d2ba841f77ee3ccb Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 2 Jan 2011 01:48:38 +0200 Subject: Initial commit. This code based on mana client http://www.gitorious.org/mana/mana and my private repository. --- packaging/debian/changelog | 77 +++++++++++++++++++ packaging/debian/compat | 1 + packaging/debian/control | 27 +++++++ packaging/debian/copyright | 49 ++++++++++++ packaging/debian/mana-data.install | 5 ++ packaging/debian/mana.desktop | 16 ++++ packaging/debian/mana.docs | 6 ++ packaging/debian/mana.install | 5 ++ packaging/debian/mana.sgml | 149 +++++++++++++++++++++++++++++++++++++ packaging/debian/patches/00list | 0 packaging/debian/rules | 69 +++++++++++++++++ packaging/debian/watch | 2 + 12 files changed, 406 insertions(+) create mode 100644 packaging/debian/changelog create mode 100644 packaging/debian/compat create mode 100644 packaging/debian/control create mode 100644 packaging/debian/copyright create mode 100644 packaging/debian/mana-data.install create mode 100644 packaging/debian/mana.desktop create mode 100644 packaging/debian/mana.docs create mode 100644 packaging/debian/mana.install create mode 100644 packaging/debian/mana.sgml create mode 100644 packaging/debian/patches/00list create mode 100644 packaging/debian/rules create mode 100644 packaging/debian/watch (limited to 'packaging/debian') diff --git a/packaging/debian/changelog b/packaging/debian/changelog new file mode 100644 index 000000000..bc5b75799 --- /dev/null +++ b/packaging/debian/changelog @@ -0,0 +1,77 @@ +tmw (0.0.24-1) unstable; urgency=low + + * New upstream release. + * Wrapped configure script options line to a more human readable + format. + * Bumped Standards-Version to 3.7.3. + * Changed description in debian/tmw.menu, it is now called as an + adventure instead of an arcade game. + * Removed the ugly hyphen in the description of debian/tmw.desktop. + * Removed debian/tmw.6 manpage, because it is in upstream now. + * Removed 01-set-gl-texture-zero and 02-guichan_0.7 patches, + because they are fixed in the current upstream release. + * Removed now useless calls of dh_link and dh_installman in + debian/rules. + * Removed debian/tmw-data.docs, because the NEWS and AUTHORS file + is already in the tmw package. + * Removed deprecated encoding flag from debian/tmw.desktop. + * Added debian/watch file. + * Added homepage field to debian/control and removed the one from + the long descriptions. + * Added a break to the long description of tmw-data. It looks now + realy better. + * Added the tmw-dbg package, which provides the debugging symbols. + + -- Patrick Matthäi Mon, 24 Dec 2007 17:10:00 +0100 + +tmw (0.0.23-3) unstable; urgency=low + + * Added missing files data/graphics/images/ambient/*.png to + release. + Closes: #439861 + * Added guichan_0.7 patch to build tmw against guichan 0.7.1. + * debian/control: Changed guichan version to libguichan2 and + changed build dependencie from libcurl3-dev to libcurl4-gnutls-dev. + * debian/tmw.menu: Corrected menu entry categorie to Games/Adventure. + Thanks lintian. + * Fixed clean rule. Thanks lintian. + + -- Patrick Matthäi Thu, 6 Sep 2007 18:36:00 +0100 + +tmw (0.0.23-2) unstable; urgency=low + + * Added set-gl-texture-zero patch to set GL texture index + to zero when an image uses the SDL backend. + Closes: #427915 + * debian/control: Removed dependencie of tmw-data to tmw. + Closes: #427920 + * debian/control: Set tmw as recommends to tmw-data. + * debian/control: Added dpatch to the build dependencies. + * debian/control: Changed guichan version to libguichan1. + Closes: #435065 + * debian/tmw.docs: Added upstream ChangeLog to package. + * debian/rules: Removed now unneeded '--with-opengl' + configure flag. + + -- Patrick Matthäi Wed, 20 Jun 2007 08:55:12 +0100 + +tmw (0.0.23-1) unstable; urgency=low + + * Uploaded tmw to unstable. + Closes: #418725, #423275 + * New upstream release. + * debian/rules: No longer needed the tmw-icon rename + hack. Upstream renamed the icon files. + * debian/tmw.xpm: Added xpm icon file, because upstream + has forgotten it in the newest release. + + -- Patrick Matthäi Mon, 5 Jun 2007 21:05:36 +0100 + +tmw (0.0.22.2-1) experimental; urgency=low + + * Initial release. + * Uploading to experimental because we need libguichan0-dev (>= 0.6.1). + * src/main.cpp: + Moved tmw-icon.png to /usr/share/icons/tmw.png. + + -- Patrick Matthäi Tue, 6 Mar 2007 09:08:21 +0100 diff --git a/packaging/debian/compat b/packaging/debian/compat new file mode 100644 index 000000000..7ed6ff82d --- /dev/null +++ b/packaging/debian/compat @@ -0,0 +1 @@ +5 diff --git a/packaging/debian/control b/packaging/debian/control new file mode 100644 index 000000000..a5696ca5d --- /dev/null +++ b/packaging/debian/control @@ -0,0 +1,27 @@ +Source: mana +Section: games +Priority: optional +Homepage: http://manasource.org/ +Maintainer: Patrick Matthäi +Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.13.19), dpatch, autotools-dev, libcurl4-gnutls-dev, libgl1-mesa-dev, libguichan2-dev (>= 0.7.1), libsdl1.2-dev, libsdl-image1.2-dev, libsdl-net1.2-dev, libsdl-mixer1.2-dev, libphysfs-dev, libpng12-dev, libxml2-dev, zlib1g-dev +Standards-Version: 3.7.3 + +Package: mana +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, mana-data (= ${source:Version}) +Description: Mana is a 2D MMORPG client + +Package: mana-dbg +Architecture: any +Priority: extra +Depends: mana (= ${binary:Version}) +Description: Mana is a 2D MMORPG client (debugging symbols) + . + This package provides debugging symbols for the mana package. + +Package: mana-data +Architecture: all +Recommends: mana +Description: Mana is a 2D MMORPG client + . + This package contains the data files. diff --git a/packaging/debian/copyright b/packaging/debian/copyright new file mode 100644 index 000000000..a6a2b687a --- /dev/null +++ b/packaging/debian/copyright @@ -0,0 +1,49 @@ +This package was debianized by Patrick Matthäi on +Wed, 6 Feb 2007 09:16:23 +0100. + +It was downloaded from . + +Upstream Author: Eugenio Favalli + +License (src/utils/base64.h, src/utils/base64.cpp): + + Copyright (C) 1997-1998 PHP Development Team + + This program is free software; you can redistribute it and/or modify + it under the terms of one of the following licenses: + + A) 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. + + B) the PHP License as published by the PHP Development Team and + included in the distribution in the file: LICENSE + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + +On Debian systems, the complete text of the GNU General Public License +can be found in /usr/share/common-licenses/GPL file. + +License (everything else): + + Copyright (C) 2004-2007 The The Mana World Development Team + + 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 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public License +can be found in /usr/share/common-licenses/GPL file. diff --git a/packaging/debian/mana-data.install b/packaging/debian/mana-data.install new file mode 100644 index 000000000..82a37bb34 --- /dev/null +++ b/packaging/debian/mana-data.install @@ -0,0 +1,5 @@ +data/graphics/gui/*.png usr/share/games/mana/data/graphics/gui +data/graphics/images/*.png usr/share/games/mana/data/graphics/images +data/graphics/images/ambient/*.png usr/share/games/mana/data/graphics/images/ambient +data/graphics/tiles/*.png usr/share/games/mana/data/graphics/tiles +data/help/*.txt usr/share/games/mana/data/help diff --git a/packaging/debian/mana.desktop b/packaging/debian/mana.desktop new file mode 100644 index 000000000..ec24a2fc6 --- /dev/null +++ b/packaging/debian/mana.desktop @@ -0,0 +1,16 @@ + +[Desktop Entry] +Version=1.0 +Name=Mana +Comment=A 2D MMORPG client +Comment[fr]=Un jeu en ligne dans un univers fantastique +Comment[de]=ein Online Fantasy Spiel +Comment[it]=Un gioco fantasy online +Comment[nl]=Een online role playing game +Comment[sv]=Ett fantasyrollspel online +Exec=mana +StartupNotify=false +Terminal=false +Type=Game +Icon=mana.png +Categories=Game diff --git a/packaging/debian/mana.docs b/packaging/debian/mana.docs new file mode 100644 index 000000000..d622a5279 --- /dev/null +++ b/packaging/debian/mana.docs @@ -0,0 +1,6 @@ +AUTHORS +NEWS +README +ChangeLog +docs/progression.txt +docs/FAQ.txt diff --git a/packaging/debian/mana.install b/packaging/debian/mana.install new file mode 100644 index 000000000..da45ec4a9 --- /dev/null +++ b/packaging/debian/mana.install @@ -0,0 +1,5 @@ +debian/manaplus.desktop usr/share/applications +debian/manaplus.xpm usr/share/pixmaps +data/icons/manaplus.png usr/share/icons +docs/manaplus.6 usr/share/man/man6 +src/manaplus usr/games diff --git a/packaging/debian/mana.sgml b/packaging/debian/mana.sgml new file mode 100644 index 000000000..257c948d6 --- /dev/null +++ b/packaging/debian/mana.sgml @@ -0,0 +1,149 @@ + manpage.1'. You may view + the manual page with: `docbook-to-man manpage.sgml | nroff -man | + less'. A typical entry in a Makefile or Makefile.am is: + +manpage.1: manpage.sgml + docbook-to-man $< > $@ + + + The docbook-to-man binary is found in the docbook-to-man package. + Please remember that if you create the nroff version in one of the + debian/rules file targets (such as build), you will need to include + docbook-to-man in your Build-Depends control field. + + --> + + + FERREIRA"> + Yohann"> + + avril 13, 2005"> + + 6"> + bertram@cegetel.net"> + + Mana"> + + + Debian"> + GNU"> + GPL"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2003 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + Mana is the abreviation of The Mana World : A Fantasy Online Game + + + + &dhpackage; + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; ingame + commands. + &dhpackage; is a Great Online Game based upon the Seiken Densetsu Serie. +It has its own universe, and and its own character management system, which will +give you the opportunity to play in a 2D heroic-fantasy world forever. + + + + COMMON KEYS + + Arrow Keys, Key Pad Keys (Diagonals Supported). +Move your character around. + +Left Ctrl : +Make your character attack. + +G : +Get Items on the ground or in a chest. + +Alt + 1...9 : +Shows an Emoticon above your character. + +Alt + I : +Shows / Hide Inventory Window. + +Alt + K : +Shows / Hide Skills Window. + +Alt + E : +Shows / Hide Equipment Window. + +Alt + C : +Shows Configuration Window. + + + + + SEE ALSO + + libguichan (2). + + The program is documented fully by The Mana World Team available via the + website http://www.manaworld.org/ + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the &gnu; General Public License, Version 2 any + later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL. + + + +
+ + + + diff --git a/packaging/debian/patches/00list b/packaging/debian/patches/00list new file mode 100644 index 000000000..e69de29bb diff --git a/packaging/debian/rules b/packaging/debian/rules new file mode 100644 index 000000000..df2e08d6f --- /dev/null +++ b/packaging/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +config.status: patch + dh_testdir + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \ + --datadir=/usr/share/games --bindir=/usr/games --mandir=/usr/share/man + +build: build-stamp +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + +binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_installchangelogs -i ChangeLog + dh_installdocs -i + dh_install -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installchangelogs -a ChangeLog + dh_installdocs -a + dh_install -a + dh_desktop -a + dh_installmenu -a + dh_strip -a --dbg-package=mana-dbg + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/packaging/debian/watch b/packaging/debian/watch new file mode 100644 index 000000000..01aa13f7e --- /dev/null +++ b/packaging/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/themanaworld/tmw-(.*)\.tar\.gz -- cgit v1.2.3-60-g2f50