debian/0000775000000000000000000000000012130354254007167 5ustar debian/ffrenzy.60000664000000000000000000000400111755722235010746 0ustar .TH FFRENZY 6 "June 2007" .SH NAME ffrenzy - multiplayer platform game with dwarfs fighting with/for food .SH SYNOPSIS .B ffrenzy [\fIOPTIONS\fR] .SH DESCRIPTION \fBffrenzy\fR is the main program that starts the Feeding Frenzy! game. .PP Feeding Frenzy! is a distributed network game for two to eight players. One instance needs to act as server for syncing player names and the levels. .PP During the game dwarfs need to collect food as fast as possible to bring it back to their mushrooms to live. When a dwarfs leaves his home without providing it with food for too long, (s)he dies from hunger. The collected food can also be thrown at other dwarfs, making them unconscious when hit. When a power-up is picked up, thrown food will have special powers! .SH OPTIONS .TP \fB-C\fR \fIconfigfile\fR Use an alternate configuration file. .TP \fB-c\fR \fIserver\fR Connect to network server server. .TP \fB-d\fR \fIdebugmask\fR Use the give debug mask which consists of a summation of the following binary flags: .PP .RS 12 .TP Graphics: 0x1 .TP Model: 0x2 .TP Network: 0x4 .TP Local I/O: 0x8 .TP Main: 0x10 .TP Communication: 0x20 .RE .TP \fB-f\fR Play full screen. .TP \fB-i\fR \fIinputfile\fR Use input from the input file. .TP \fB-l\fR \fIlevelname\fR Select the level file. .TP \fB-m\fR Turn on the music. .TP \fB-o\fR \fIoutputfile\fR Put all events in the output file. .TP \fB-p\fR \fIplayers\fR Number of players on the local machine. .TP \fB-q\fR Turn off the sound effect (be quiet). .TP \fB-s\fR \fInrplayers\fR Start network server for a given number of players. .SH FILES \fB~/.ffrenzy/config.xml\fR .SH SEE ALSO ffrenzy-menu(1) .SH AUTHORS Feeding Frenzy! was written by OGO 2.3 group 6 which consists of the following people: Bas Kloet , Chistian Luijten , Emiel Neggers , Bram Senders , Sjoerd Simons , Paul van Tilburg . debian/menu0000664000000000000000000000023411766714134010070 0ustar ?package(ffrenzy):needs="X11" section="Games/Action" \ title="Feeding Frenzy" command="/usr/games/ffrenzy-menu" \ icon="/usr/share/pixmaps/ffrenzy.xpm" debian/patches/0000775000000000000000000000000012130355267010623 5ustar debian/patches/fix-ffrenzy-menu-path.patch0000664000000000000000000000130411766707046016017 0ustar From 8457d4d36e6b48ee70ea4483695087a12bcbb886 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Fri, 15 Jun 2012 21:32:19 +0200 Subject: [PATCH] Fix ffrenzy menu path --- utils/ffrenzy-menu.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ffrenzy-menu.in b/utils/ffrenzy-menu.in index b829a83..a5379be 100644 --- a/utils/ffrenzy-menu.in +++ b/utils/ffrenzy-menu.in @@ -9,4 +9,4 @@ sys.path.append("@prefix@/share/ffrenzy/python") import ffmenu ffmenu.run('@prefix@/share/ffrenzy/glade/ffmenu.glade', - '@prefix@/bin//ffrenzy','@prefix@/share/ffrenzy/levels') + '@prefix@/games/ffrenzy','@prefix@/share/ffrenzy/levels') -- 1.7.10 debian/patches/fix-libm-underlinkage.patch0000664000000000000000000000404112130355267016020 0ustar Index: ffrenzy-1.0.2~svn20070530/src/Makefile.am =================================================================== --- ffrenzy-1.0.2~svn20070530.orig/src/Makefile.am 2012-05-18 15:39:57.000000000 -0400 +++ ffrenzy-1.0.2~svn20070530/src/Makefile.am 2013-04-07 16:36:22.916358233 -0400 @@ -22,4 +22,4 @@ DEFS= -DLOCALEDIR=\"$(datadir)/locale\" @DEFS@ -DDATADIR=\"$(datadir)\" INCLUDES= @SDL_CFLAGS@ @XML_CPPFLAGS@ -ffrenzy_LDADD = @SDL_LIBS@ @SDLTTF_LIB@ @XML_LIBS@ -lSDL_mixer +ffrenzy_LDADD = @SDL_LIBS@ @SDLTTF_LIB@ @XML_LIBS@ -lSDL_mixer -lm Index: ffrenzy-1.0.2~svn20070530/src/Makefile.in =================================================================== --- ffrenzy-1.0.2~svn20070530.orig/src/Makefile.in 2012-05-18 15:50:33.000000000 -0400 +++ ffrenzy-1.0.2~svn20070530/src/Makefile.in 2013-04-07 16:36:32.136201071 -0400 @@ -215,7 +215,7 @@ sprite.c sprite.h INCLUDES = @SDL_CFLAGS@ @XML_CPPFLAGS@ -ffrenzy_LDADD = @SDL_LIBS@ @SDLTTF_LIB@ @XML_LIBS@ -lSDL_mixer +ffrenzy_LDADD = @SDL_LIBS@ @SDLTTF_LIB@ @XML_LIBS@ -lSDL_mixer -lm all: all-am .SUFFIXES: Index: ffrenzy-1.0.2~svn20070530/tests/Makefile.am =================================================================== --- ffrenzy-1.0.2~svn20070530.orig/tests/Makefile.am 2012-05-18 15:39:57.000000000 -0400 +++ ffrenzy-1.0.2~svn20070530/tests/Makefile.am 2013-04-07 16:44:22.172266505 -0400 @@ -19,4 +19,4 @@ $(top_srcdir)/src/vector.c localiotest_LDADD = @SDL_LIBS@ -spritetest_LDADD = @SDL_LIBS@ @XML_LIBS@ +spritetest_LDADD = @SDL_LIBS@ @XML_LIBS@ -lm Index: ffrenzy-1.0.2~svn20070530/tests/Makefile.in =================================================================== --- ffrenzy-1.0.2~svn20070530.orig/tests/Makefile.in 2012-05-18 15:50:33.000000000 -0400 +++ ffrenzy-1.0.2~svn20070530/tests/Makefile.in 2013-04-07 16:44:37.431998326 -0400 @@ -219,7 +219,7 @@ $(top_srcdir)/src/vector.c localiotest_LDADD = @SDL_LIBS@ -spritetest_LDADD = @SDL_LIBS@ @XML_LIBS@ +spritetest_LDADD = @SDL_LIBS@ @XML_LIBS@ -lm all: all-am .SUFFIXES: debian/patches/fix-werror-usage-and-aclocal-regen.patch0000664000000000000000000000217712001017465020303 0ustar --- ffrenzy-1.0.2~svn20070530.orig/Makefile.am +++ ffrenzy-1.0.2~svn20070530/Makefile.am @@ -1,5 +1,3 @@ SUBDIRS = src po tests data utils -ACLOCAL_AMFLAGS = -I m4 - EXTRA_DIST = config.rpath --- ffrenzy-1.0.2~svn20070530.orig/configure +++ ffrenzy-1.0.2~svn20070530/configure @@ -4347,7 +4347,7 @@ $as_echo "$am_cv_python_pyexecdir" >&6; # setting CFLAGS -CFLAGS="$CLAGS -Wall -Werror -g -O2 -finline-functions" +CFLAGS="$CLAGS -Wall -g -O2 -finline-functions" # gettext stuff --- ffrenzy-1.0.2~svn20070530.orig/Makefile.in +++ ffrenzy-1.0.2~svn20070530/Makefile.in @@ -198,7 +198,6 @@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ SUBDIRS = src po tests data utils -ACLOCAL_AMFLAGS = -I m4 EXTRA_DIST = config.rpath all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive --- ffrenzy-1.0.2~svn20070530.orig/configure.ac +++ ffrenzy-1.0.2~svn20070530/configure.ac @@ -20,7 +20,7 @@ AC_CHECK_HEADERS AM_PATH_PYTHON(2.3) # setting CFLAGS -CFLAGS="$CLAGS -Wall -Werror -g -O2 -finline-functions" +CFLAGS="$CLAGS -Wall -g -O2 -finline-functions" # gettext stuff AM_GNU_GETTEXT_VERSION(0.16.1) debian/patches/series0000664000000000000000000000014112130354270012025 0ustar fix-ffrenzy-menu-path.patch fix-werror-usage-and-aclocal-regen.patch fix-libm-underlinkage.patch debian/docs0000664000000000000000000000002410774767362010062 0ustar NEWS README AUTHORS debian/ffrenzy.svg0000664000000000000000000001155611766714672011425 0ustar image/svg+xml debian/rules0000775000000000000000000000101511755722334010256 0ustar #!/usr/bin/make -f # # Debhelper file for building the Feeding Frenzy Debian package. #include /usr/share/cdbs/1/class/autotools.mk #include /usr/share/cdbs/1/rules/debhelper.mk %: dh $@ --with python2 override_dh_install: dh_install # The game binary and game menu should be placed in /usr/games. mv $(CURDIR)/debian/ffrenzy/usr/bin/ffrenzy* $(CURDIR)/debian/ffrenzy/usr/games/ # Use the Bistream Vera font from the ttf-bitstream-vera package. rm $(CURDIR)/debian/ffrenzy/usr/share/ffrenzy/fonts/bitstream-vera.ttf debian/compat0000664000000000000000000000000211755526311010374 0ustar 7 debian/copyright0000664000000000000000000002304211766702642011137 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Feeding Frenzy! Upstream-Contact: Bas Kloet Christian Luijten Emiel Neggers Bram Senders Sjoerd Simons Paul van Tilburg Source: http://ffrenzy.luon.net/download.html Files: * Copyright: 2003-2007, OGO 2.3 2006 group 6 License: GPL-2 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. Files: data/fonts/bistream-vera.ttf Copyright: 2003, Bitstream, Inc. License: Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. . Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license (“Fonts”) and associated documentation files (the “Font Software”), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: . The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. . The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words “Bitstream” or the word “Vera”. . This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the “Bitstream Vera” names. . The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. . THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. . Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org Comment: See also http://www-old.gnome.org/fonts/. Files: data/music/01_penguinplanet.ogg Copyright: 2001, Void Main License: LinuxTag-Green-OpenMusic LinuxTag Green OpenMusic License Draft v1.1, 22 April 2001 I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS . The OpenMusic works may be reproduced and distributed in whole or in part, in any medium physical or electronic, provided that the terms of this license are adhered to, and that this license or an incorporation of it by reference (with any options elected by the author(s) and/or publisher) is displayed in the reproduction. . Proper form for an incorporation by reference is as follows: Copyright (c) by . This material may be distributed only subject to the terms and conditions set forth in the Green OpenMusic License, vX.Y or later (the latest version is presently available at http://openmusic.linuxtag.org/). The reference must be immediately followed with any options elected by the author(s) and/or publisher of the work (see section VI). The refence must be incoporated in any publication of the work, either physical or electronic. If the work is broadcasted, or the reference can not be incorporated by physical means, the reference can be ommitted with prior permission obtained from the copyright holder. . Commercial redistribution of OpenMusic-licensed material is permitted. . Any publication in physical form (like a CD) shall require the citation of the original publisher and author. The publisher and author's names shall appear on all outer surfaces of the product. On all outer surfaces of the product the original publisher's name shall be as large as the title of the work and cited as possessive with respect to the title. . II. COPYRIGHT . The copyright to each OpenMusic is owned by its author(s) or designee. If the work covered by this license is bound to a specific transport medium (see section VI), it is possible for the author(s) or designee to publish the work on a different medium covered by a different license. . III. SCOPE OF LICENSE . The following license terms apply to all OpenMusic works, unless otherwise explicitly stated. . Mere aggregation of OpenMusic works or a portion of an OpenMusic work with other works on the same media shall not cause this license to apply to those other works. The aggregate work shall contain a notice specifying the inclusion of the OpenMusic material and appropriate copyright notice. . SEVERABILITY. If any part of this license is found to be unenforceable in any jurisdiction, the remaining portions of the license remain in force. . NO WARRANTY. OpenMusic works are licensed and provided "as is" without warranty of any kind, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose or a warranty of non-infringement. . IV. REQUIREMENTS ON MODIFIED WORKS . All modified versions of works covered by this license, including partial works incorporated into new works, must meet the following requirements: . The modified version must be labeled as such. The person making the modifications must be identified and the modifications dated. The location of the original unmodified work must be identified. The original author's (or authors') name(s) may not be used to assert or imply endorsement of the resulting work without the original author's (or authors') permission. The new work has to be released under precisely this License, with the modified version filling the role of the work, thus licensing distribution and modification of the modified version to whoever possesses a copy of it. V. GOOD-PRACTICE RECOMMENDATIONS In addition to the requirements of this license, it is requested from and strongly recommended of redistributors that: If you are distributing OpenMusic works in physical form, you provide email notification to the authors of your intent to redistribute at least thirty days before your media freeze, to give the authors time to provide updated works. This notification should describe modifications, if any, made to the work. All substantive modifications (including deletions) be described in an attachment to the work. Finally, while it is not mandatory under this license, it is considered good form to offer a free copy of any physical form expression of an OpenMusic-licensed work to its author(s). . VI. MEDIA LOCKING OPTION . The author(s) and/or publisher of an OpenMusic-licensed document may bind any publication of this work or derivative works in whole or in part on a specific transport medium (for example "digital distribution via the Internet"). Exceptions can be made with prior permission from the copyright holder. . This option is selected by appending language to the reference to or copy of the license. This option is considered part of the license instance and must be included with the license (or its incorporation by reference) in derived works. . To accomplish this, add the phrase "Distribution of the work or derivative of the work is restricted to unless prior permission is obtained from the copyright holder." to the license reference or copy. Comment: See also http://openmusic.linuxtag.org/. Files: data/sounds/ffrenzy_dead_sound.wav data/sounds/ffrenzy_hit_sound.wav data/sounds/ffrenzy_throw_sound.wav Copyright: 1997,1998,2000, Alexandre Duret-Lutz, Romuald Genevois, Alexandre Liverneaux and Philippe Meisburger. License: GPL-2+ 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. Comment: These sound effect files are taken from the Heroes game (package: heroes-sound-effects). debian/ffrenzy.desktop0000664000000000000000000000037611766714054012267 0ustar [Desktop Entry] Encoding=UTF-8 Type=Application Name=Feeding Frenzy! Comment=multiplayer platform game with dwarfs fighting with/for food Exec=ffrenzy-menu TryExec=ffrenzy-menu Icon=ffrenzy Terminal=false Categories=Application;Game; StartupNotify=false debian/source/0000775000000000000000000000000011766717232010504 5ustar debian/source/format0000664000000000000000000000001411766704230011704 0ustar 3.0 (quilt) debian/install0000664000000000000000000000017011766715622010574 0ustar debian/ffrenzy.desktop usr/share/applications debian/ffrenzy.svg usr/share/pixmaps debian/ffrenzy.xpm usr/share/pixmaps debian/control0000664000000000000000000000245512001020137010563 0ustar Source: ffrenzy Section: games Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Paul van Tilburg Uploaders: Sjoerd Simons Build-Depends: debhelper (>= 7.0.50~), python, automake1.9, libsdl1.2-dev, libxml2-dev, gettext, libsdl-mixer1.2-dev, libsdl-ttf2.0-dev Standards-Version: 3.9.3 Vcs-Browser: http://svn.luon.net/svn/ffrenzy/packaging/ffrenzy/trunk/ Vcs-Svn: http://svn.luon.net/svn/ffrenzy/packaging/ffrenzy/trunk/ Homepage: http://ffrenzy.luon.net/ Package: ffrenzy Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-gtk2, python-glade2, python-pygame, ttf-bitstream-vera Description: multiplayer platform game with dwarfs fighting with/for food Feeding Frenzy! is a distributed network game for two to eight players. One instance needs to act as server for syncing player names and the levels. . During the game dwarfs need to collect food as fast as possible to bring it back to their mushrooms to live. When a dwarfs leaves his home without providing it with food for too long, (s)he dies from hunger. The collected food can also be thrown at other dwarfs, making them unconscious when hit. When a power-up is picked up, thrown food will have special powers! debian/watch0000664000000000000000000000007710774770576010251 0ustar version=3 http://ffrenzy.luon.net/files/ ffrenzy-(.*)\.tar\.gz debian/dirs0000664000000000000000000000001211766715641010063 0ustar usr/games debian/ffrenzy-menu.60000664000000000000000000000231411755722245011716 0ustar .TH FFRENZY-MENU 6 "June 2007" .SH NAME ffrenzy-menu - graphical launcher menu for the Feeding Frenzy! game .SH SYNOPSIS .B ffrenzy-menu .SH DESCRIPTION \fBffrenzy-menu\fR is a graphical menu for configuring many aspects of the the Feeding Frenzy! game before launching it. .PP Feeding Frenzy! is a distributed network game for two to eight players. One instance needs to act as server for syncing player names and the levels. .PP During the game dwarfs need to collect food as fast as possible to bring it back to their mushrooms to live. When a dwarfs leaves his home without providing it with food for too long, (s)he dies from hunger. The collected food can also be thrown at other dwarfs, making them unconscious when hit. When a power-up is picked up, thrown food will have special powers! .SH FILES \fB~/.ffrenzy/config.xml\fR .SH SEE ALSO ffrenzy(1) .SH AUTHORS Feeding Frenzy! was written by OGO 2.3 group 6 which consists of the following people: Bas Kloet , Chistian Luijten , Emiel Neggers , Bram Senders , Sjoerd Simons , Paul van Tilburg . debian/links0000664000000000000000000000014011755541307010236 0ustar usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf usr/share/ffrenzy/fonts/bitstream-vera.ttf debian/ffrenzy.xpm0000664000000000000000000001360711766714672011431 0ustar /* XPM */ static char *ffrenzy_icon[] = { /* columns rows colors chars-per-pixel */ "32 32 171 2 ", " c #020200000202", ". c #252524242525", "X c #78783A3A3131", "o c #5C5C40403636", "O c #3C3C1C1C6E6E", "+ c #303016167B7B", "@ c #4B4B23235F5F", "# c #5A592C2C5251", "$ c #505026265A5A", "% c #696932324242", "& c #5B5B3A3A7C7C", "* c #4F4F46454645", "= c #7B7B56564747", "- c #6C6B4B4A5151", "; c #77774D4D6F6F", ": c #787853536C6C", "> c #6E6E47477373", ", c red", "< c #868641412424", "1 c #8B8B48482D2D", "2 c #8C8C4A492E2E", "3 c #8F8F4A4A2E2E", "4 c #848445453232", "5 c #8D8C4C4B3131", "6 c #939356553E3E", "7 c #959458583F3F", "8 c #9A9A61604948", "9 c #A5A561614444", "0 c #AAAA6F6F5656", "q c #A4A46B6B5959", "w c #A2A16E6D5858", "e c #A9A96F6F5857", "r c #ABAB70705756", "t c #A5A571715C5B", "y c #ABAA71715959", "u c #ACAC72725958", "i c #ADAC75755D5C", "p c #BBBB76765A5A", "a c #87865A596363", "s c #93935F5F6161", "d c #818058577675", "f c #8E8E79796F6E", "g c #A8A774746565", "h c #CBCB6B6B5C5C", "j c #FFFF63636363", "k c #B5B582816C6C", "l c #B5B582816D6D", "z c #A7A784847777", "x c #B8B887867271", "c c #B5B48A897878", "v c #B7B78E8D7C7C", "b c #B9B88D8D7B7B", "n c #BCBC8D8C7A7A", "m c #C7C782826565", "M c #D1D18C8B6F6F", "N c #C5C58A8A7574", "B c #D0D08E8E7373", "V c #D8D893937878", "C c #0F0F05059B9B", "Z c #0C0C04049E9E", "A c #1B1B10109B9B", "S c #232315159797", "D c #202013139898", "F c #05050101A5A5", "G c #04040000A6A6", "H c #0E0E0707A1A1", "J c #09090303A4A4", "K c #07070404A8A7", "L c #04040505AAAA", "P c #1F1F1313A1A1", "I c #04041111B1B1", "U c #2A2A1B1BA1A1", "Y c #23231F1FB1B0", "T c #100F2A29BFBE", "R c #31302E2EB6B5", "E c #505033338181", "W c #59583E3D8888", "Q c #46462C2C9090", "! c #4A4A2F2E9090", "~ c #535338389B9B", "^ c #54543D3C9A9A", "/ c #6C6C45458383", "( c #71714E4E9797", ") c #49484646BEBE", "_ c #04042828C0C0", "` c #04045454DEDE", "' c #39397979DDDD", "] c #04046161E7E7", "[ c #0B0B6464E5E5", "{ c #72726D6DC7C6", "} c #71716F6FCDCD", "| c #73737171CDCD", " . c #82825A5A9494", ".. c #85855C5C9494", "X. c #8E8E62629393", "o. c #969668689191", "O. c #89897272A09F", "+. c #77769796D5D5", "@. c #49488C8CEEED", "#. c #72729898E4E4", "$. c #6C6CA3A3F1F1", "%. c #7777A9A9F2F2", "&. c #BBBA94948383", "*. c #BEBE9A9A8A8A", "=. c #C0BF94948281", "-. c #CDCC94938180", ";. c #C6C69E9E8E8E", ":. c #C2C29F9F9090", ">. c #E3E39F9F8787", ",. c #D5D5A1A18C8B", "<. c #C4C4A2A29494", "1. c #C9C9A3A29393", "2. c #CBCBA7A79898", "3. c #C9C9ABAB9E9E", "4. c #E7E7A1A18585", "5. c #E6E6A1A18686", "6. c #E7E7A2A28686", "7. c #E2E2AFAF9998", "8. c #ECECB5B59E9D", "9. c #CDCDB0B0A4A4", "0. c #D3D3B4B4A7A7", "q. c #D0D0B6B6ABAB", "w. c #D4D4BBBBB1B1", "e. c #D7D7BCBCB0B0", "r. c #FEFEA2A2A2A2", "t. c #D7D7C0C0B6B6", "y. c #DBDBC2C2B7B7", "u. c #DDDDC5C5BBBB", "i. c #DFDFC9C9BFBF", "p. c #EFEEC1C0AEAE", "a. c #F1F1C7C7B6B6", "s. c #9C9C9A9ADCDC", "d. c #A3A3A2A2DFDF", "f. c #BFBFB7B7D7D7", "g. c #8F8FB8B8F4F4", "h. c #9A9ABFBFF5F5", "j. c #E1E1CDCDC4C4", "k. c #E0E0CECEC6C6", "l. c #EAEAD0D0C6C6", "z. c #E3E3D4D4CDCD", "x. c #E7E7D6D6CFCF", "c. c #EAEAD6D6CFCF", "v. c #F5F5D9D9CECE", "b. c #E7E7DADAD4D4", "n. c #E9E9DADAD3D3", "m. c #EFEFDBDBD3D3", "M. c #EAEADBDBD5D5", "N. c #EDEDE1E1DBDB", "B. c #EEEEE2E2DDDD", "V. c #DFDFEBEBFCFC", "C. c #F1F1E7E7E3E3", "Z. c #F3F3EBEBE7E7", "A. c #F3F3ECECEAEA", "S. c #F4F4ECECE9E9", "D. c #FFFFEBEBEBEB", "F. c #F6F6F0F0EEEE", "G. c #FBFBF0F0EBEB", "H. c #F6F6F2F2F0F0", "J. c gray96", "K. c #F8F8F3F3F0F0", "L. c #F8F8F5F5F3F3", "P. c #F9F9F5F5F3F3", "I. c #FAFAF7F7F5F5", "U. c #F6F6F6F6FCFC", "Y. c #F7F7FAFAFEFE", "T. c #FBFBF9F9F8F8", "R. c #FCFCFAFAF9F9", "E. c #FDFDFCFCFBFB", "W. c #FBFBFDFDFFFF", "Q. c gray99", "!. c gray100", /* pixels */ "!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.S.j.e.y.x.R.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.j.n 0 0 0 0 0 i 1.C.!.!.!.!.!.!.!.!.!.!.!.!.!.!.", "!.!.!.!.!.!.K.=.0 0 0 0 0 0 0 0 0 y 0.E.!.!.!.!.!.!.!.!.!.!.!.!.", "!.!.!.!.!.S.l 0 0 0 0 0 0 0 0 0 0 0 0 1.r.j D.!.!.!.!.!.!.!.!.!.", "!.!.!.!.I.x 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h , #.%.h.V.!.!.!.!.!.!.", "!.!.!.!.2.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ^ T ` ] ] $.Y.!.!.!.!.", "!.!.!.B.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 S G K _ ] ] @.W.!.!.!.", "!.!.!.;.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 r K G G K ] ] ] g.!.!.!.", "!.!.T.u 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 s G G G I ] [ ' +.!.!.!.", "!.!.M.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ; ~ ..: - N M z f T.!.!.", "!.!.i.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 & o.4.o r 9 * . J.!.!.", "!.!.u.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 s & A ( 4.k = B 2 b z W.!.!.", "!.!.x.0 0 0 0 0 0 0 0 0 0 0 0 0 0 d G G G U 5.4.4.4.p V 8.!.!.!.", "!.!.K.y 0 0 0 0 0 0 0 0 0 0 0 0 g H G G G G X.4.4.4.5.4.a.!.!.!.", "!.!.!.;.0 0 0 0 0 0 0 0 0 0 0 0 W G G G G G K .>.5.5.5.v.!.!.!.", "!.!.!.Z.i 0 0 0 0 0 0 0 0 0 0 q H G G G G G G G P -.7.p.G.!.!.!.", "!.!.!.!.x.i 0 0 0 0 0 0 0 0 0 > G G G G G G G G A m m m.!.!.!.!.", "!.!.!.!.!.N.l r 0 0 0 0 0 0 e D G G G G G G G G Q m m l.!.!.!.!.", "!.!.!.!.!.!.R.y.l 0 0 0 0 u O.G G G G G G G G G / m ,.E.!.!.!.!.", "!.!.!.!.!.!.!.!.!.S.n.M.B.L.| G G G G G G G G G ! c.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.!.!.!.!.{ Z G G G G G G G G ) !.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.!.!.F.<.4 + G G G G C G G G s.!.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.!.3.2 < < O G G G Z X $ G Y U.!.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.w.< < < < @ G G G O < < # f.!.!.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.7 < < < < a d.| R % < < < 1 t &.*.B.!.!.!.!.", "!.!.!.!.!.!.!.!.!.F.< < < < < t !.!.!.6 < < < < < < < b.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.5 < < < < 5 L.!.!.w < < < < < < 1 I.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.*.< < < < < *.!.!.q.< < < < < < c !.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.E.:.1 < < < 2 S.!.!.&.< < < < 8 F.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.!.!.I.z.w.t.k.I.!.!.!.j.&.v 9.I.!.!.!.!.!.!.", "!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.!." }; debian/manpages0000664000000000000000000000004711755722460010720 0ustar debian/ffrenzy.6 debian/ffrenzy-menu.6 debian/pycompat0000664000000000000000000000000210774767362010762 0ustar 2 debian/TODO0000664000000000000000000000035611766677526007713 0ustar Feeding Frenzy! packaging TODO list =================================== * Provide lintian overrides if needed. Minor/later ----------- * Fix hardening stuff (currently ./configure fails if enabled). * Move ffrenzy to /usr/lib/ffrenzy. debian/changelog0000664000000000000000000000756212130354254011053 0ustar ffrenzy (1.0.2~svn20070530-4ubuntu3) raring; urgency=low * Added missing math lib to link, fixing FTBFS. -- Daniel T Chen Sun, 07 Apr 2013 16:35:35 -0400 ffrenzy (1.0.2~svn20070530-4ubuntu2) quantal; urgency=low * fix-werror-usage-and-aclocal-regen.patch: In addition to fixing the Werror usage, fix the aclocal flags to not include. -- Ben Collins Mon, 16 Jul 2012 14:03:41 +0000 ffrenzy (1.0.2~svn20070530-4) unstable; urgency=low * Upload to Debian unstable (close: #428256). * Updated package for current standards. * Added debian/watch file. * debian/compat: switched to debhelper 7. * debian/control: - Added Homepage and Vcs-* fields. - Removed cdbs depend; bumped debhelper depend to >= 7. - Removed python-central depend. - Bumped standards version to 3.9.3. - Added depend on ${misc:Depends} needed for debhelper 7. - Dropped depend on python-xmlbase; it's a part of every python2.X package now. - Added a depend on ttf-bitstream-vera. * debian/copyright: - Updated to usse the Debian copyright format version 1.0. - Added file paragraphs for stuff under data/. * debian/dirs: added usr/games. * debian/ffrenzy-menu.6: renamed from ffrenzy-menu.1; a game man page should be in section 6. * debian/ffrenzy.desktop: added desktop information. * debian/ffrenzy.svg, debian/ffrenzy.xpm: added icons. * debian/install: install icons and desktop file. * debian/links: link the Bitstream Vera font file from ttf-bitstream-vera. * debian/manpages: install the man pages. * debian/menu: section should be "Games/Action". * debian/patches: added fix-ffrenzy-menu-path.patch to fix the path to the ffrenzy binary that is now in /usr/games. * debian/rules: - Updated to use debhelper instead of CDBS (with python2). - Move ffrenzy-menu and ffrenzy to /usr/games. - Remove the upstream supplied Bistream Vera TTF file. * debian/source/format: set source format to 3.0 (quilt). -- Paul van Tilburg Fri, 15 Jun 2012 22:34:40 +0200 ffrenzy (1.0.2~svn20070530-3) unstable; urgency=low * Fixed the nearly empty debian/copyright file. -- Paul van Tilburg Wed, 11 Jul 2007 22:55:41 +0200 ffrenzy (1.0.2~svn20070530-2) unstable; urgency=low * First upload attempt to unstable. * Set myself as maintainer and Sjoerd Simons as uploader. * Improved the package short and long description. * Added man-pages ffrenzy(1) and ffrenzy-menu(1). -- Paul van Tilburg Mon, 18 Jun 2007 16:24:07 +0100 ffrenzy (1.0.2~svn20070530-1) unstable; urgency=low * Build of SVN snapshot for the Luon Sid suite. * Added build-depend on automake1.9. * Modified depends and build-depend on python2.3 specific packages to the versionless python packages. * Description tweaks. * Added myself as an uploader. * Bumped debhelper compat (and version dependancy) to version 5. * CDBSified debian/rules, added cdbs as a build-depend. * Bumped the standards-version to 3.7.2. * Update the package to conform to the Debian Python Policy: - Set XS-Python-Version to current and XB-Python-Version to ${python:Versions}. - Added ${python:Depends} to the Depends. - Added python and python-central to the build-depens. - Added debian/pycompat to declare compatbility with version 2. * Fixed quoting in debian/menu. -- Paul van Tilburg Wed, 30 May 2007 15:19:48 +0200 ffrenzy (1.0.1-1) unstable; urgency=low * New upstream release. -- Sjoerd Simons Thu, 2 Oct 2003 21:05:12 +0200 ffrenzy (1.0.0-1) unstable; urgency=low * New upstream release. -- Sjoerd Simons Tue, 17 Jun 2003 22:44:03 +0200 ffrenzy (0.1-1) unstable; urgency=low * Initial Release. -- Sjoerd Simons Fri, 18 Apr 2003 14:05:26 +0200