--- fizmo-0.6.7.orig/debian/copyright +++ fizmo-0.6.7/debian/copyright @@ -0,0 +1,68 @@ +This package was debianized by Christoph Ender + on +Tue, 15 December 2009 09:15:12 +0100. + +It was downloaded from http://spellbreaker.org/~chrender/fizmo/source/ + +Upstream Author: + + Christoph.Ender@spellbreaker.org + +Copyright: + + Copyright (C) 2009 Christoph Ender + +License: + + BSD (see '/usr/share/common-licenses/BSD') + + +This package makes use of the Mersenne Twister random number generator +in the file "src/fizmo/mt19937ar.c", which is obtainable from +http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html +and availabe under the following terms: + + A C-program for MT19937, with initialization improved 2002/1/26. + Coded by Takuji Nishimura and Makoto Matsumoto. + + Before using, initialize the state by using init_genrand(seed) + or init_by_array(init_key, key_length). + + Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. The names of its contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +The Debian packaging is: + + Copyright (C) 2009 Christoph Ender + +and is licensed under the GPL version 3, +see `/usr/share/common-licenses/GPL-3'. + --- fizmo-0.6.7.orig/debian/watch +++ fizmo-0.6.7/debian/watch @@ -0,0 +1,8 @@ +# watch file for fizmo + +# Compulsory line, this is a version 3 file +version=3 + +# Check the webserver directory. +http://spellbreaker.org/~chrender/fizmo/source/fizmo-(.*)\.tar\.gz + --- fizmo-0.6.7.orig/debian/control +++ fizmo-0.6.7/debian/control @@ -0,0 +1,17 @@ +Source: fizmo +Section: games +Priority: extra +Maintainer: Christoph Ender +Build-Depends: debhelper (>= 7), libncursesw5-dev, libsndfile1-dev, libsdl-sound1.2-dev, libxml2-dev +Standards-Version: 3.8.3 +Homepage: http://spellbreaker.org/~chrender/fizmo + +Package: fizmo +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Provides: zcode-interpreter +Description: Console-based Z-machine interpreter for Infocom/Inform games + This is a ncurses-(text-)based Z-Machine interpreter. It can be used to play + old Infocom text adventures (except version 6) and modern interactive fiction + as created by the Inform compiler. For more information about interactive + fiction -- and to download many storyfiles -- see http://www.ifarchive.org. --- fizmo-0.6.7.orig/debian/docs +++ fizmo-0.6.7/debian/docs @@ -0,0 +1 @@ +README.txt --- fizmo-0.6.7.orig/debian/compat +++ fizmo-0.6.7/debian/compat @@ -0,0 +1 @@ +7 --- fizmo-0.6.7.orig/debian/rules +++ fizmo-0.6.7/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + cp config.default.mk config.mk + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + cp config.default.mk config.mk + $(MAKE) clean + rm config.mk + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/fizmo install + +# Build architecture-independent files here. +binary-indep: install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG.txt + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure + --- fizmo-0.6.7.orig/debian/changelog +++ fizmo-0.6.7/debian/changelog @@ -0,0 +1,37 @@ +fizmo (0.6.7-1) unstable; urgency=low + + * Bugfix release. Fixed trunction of babel data input. So far, the last + byte was cut off from the input, resulting in an error if the file was + encoded using unix newlines, but no errors as long as DOS newlines were + used. This fixes missing metadata issues in the story browser. + * This release includes the changes from version 0.6.6: Files which have a + ".zblorb" suffix now have this removed when displayed in the story browser. + Minimal changes to seeding of random generators to increase input entropy. + + -- Christoph Ender Tue, 15 Dec 2009 08:52:59 +0100 + + +fizmo (0.6.5-1) unstable; urgency=low + + * Bugfix release. Fizmo will now keep transcribing after restarts (which + is the behaviour required by the Z-Machine specification) and the + Makefiles have been adapted to allow parallel builds (make -j 2 etc). + + -- Christoph Ender Wed, 14 Oct 2009 09:15:12 +0200 + + +fizmo (0.6.4-1) unstable; urgency=low + + * Bugfix release. This fixes crahes on startup when screen uses + non-standard ncurses colors and removes garbage output from + the "read_char" opcode implementation. + + -- Christoph Ender Thu, 28 May 2009 06:55:00 +0200 + + +fizmo (0.6.3-1) unstable; urgency=low + + * Initial release (Closes: #525490) + + -- Christoph Ender Sun, 26 Apr 2009 07:37:58 +0200 +