debian/0000755000000000000000000000000012031055731007163 5ustar debian/update-autotools-config.sh0000755000000000000000000000173011054611161014276 0ustar #!/bin/bash # Copyright (C) 2006 Sylvain Beucler # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. # Updates config.guess and config.sub in the target directory only if # the autotools-dev version is newer # http://bugs.debian.org/380481 dest="$1" # strip trailing slash for nicer output dest=$(echo $dest | sed 's:/$::') if [ -z $dest ]; then echo "Usage: $0 destination" exit 1; fi for ext in sub guess; do # --version output looks like "GNU config.sub (2006-02-23)" v_autotools=$(/usr/share/misc/config.$ext --version | head -1 | grep -o -E '[0-9]{4}-[0-9]{2}-[0-9]{2}') v_upstream=$($dest/config.$ext --version | head -1 | grep -o -E '[0-9]{4}-[0-9]{2}-[0-9]{2}') if dpkg --compare-versions "$v_autotools" '>>' "$v_upstream"; then echo "Updating $dest/config.$ext" cp -f /usr/share/misc/config.$ext $dest fi done debian/README.source0000644000000000000000000000230011376310112011333 0ustar wxgtk ===== At a point I needed to compile with either wxWidgets v2.6 or v2.8, depending on the Debian release. So I specified a preference to 2.8 in Build-Depends: libwxgtk2.8-dev | libwxgtk2.6-dev This allowed me to keep building install-anywhere .deb packages from Etch, while choosing the appropriate version if rebuilt from a more recent distro. When backporting though, I had to remove "libwxgtk2.8-dev | ", as autobuilders don't understand alternate build dependencies (e.g. see http://lists.backports.org/lurker-bpo/message/20080422.123102.e1829e51.en.html) Currently only libwxgtk2.8 is used, but we may have the same problem when 2.10 comes out, so let's keep the technique documented here. wxglade ======= The .wxg GUI files are pre-processsed to .cpp files by the build system when generating upstream release tarballs. It may use a version of wxglade that is more recent that your target Debian release, so it's better not to reprocess them, otherwise bugs may be introduced (last time that happened, OK/Cancel buttons didn't work anymore). This is similar to keeping upstream './configure' scripts instead autoreconf-ing. -- Sylvain Beucler , Sun, 23 May 2010 22:30:02 +0200 debian/gbp.conf0000644000000000000000000000006411256512470010610 0ustar [DEFAULT] builder=debuild -i\.git\(ignore\)? -I.git debian/dfarc.xpm0000644000000000000000000000245611054611161010776 0ustar /* XPM */ static char * freedink_xpm[] = { "32 32 8 1", " c None", ". c #000000", "+ c #808080", "@ c #0000FF", "# c #808000", "$ c #C0C0C0", "% c #800000", "& c #FFFFFF", " . ...+", " .@. .##.", " .@@@. . .####", " .@$@. .#. .##%..", " .@@$@@. .##. .##%. ", " ..@@$&$@@..########.##.##%. ", " .@@@$&&&$@@@.......#.###.%. ", ".@@$$&&&&&$$@@@.%%%..$.###. ", " .@@@$&&&$@@@..%%%%.&&$.###. ", " #..@@$&$@@..%%%%%.&&$$&.###. ", " #.%.@@$@@.%%%%%%.&&$&&$...##. ", " #..%.@$@.%%%%%%.&&$&&$...#.. ", " ##.%.@@@.%.....&&$&$$.%%.## ", " #.%%.@.%%%.#.&&$&$$.%%%..## ", " #.%%.@.%%%..&&$&$..%%%%%.## ", " #.%%%.%%%..&&$&$.##.%%%%.## ", " #...%%%...&.$&$.###.%%%%.## ", " ###..%.#.#.#.$.#####.%%%.## ", " ###.%%.#.#.#.######.%%.#.# ", " ##.%%..#.#.#.#####.%%.#..# ", " ##..%.&....................##", " ###.%.&$.%%%%%#%#%##%####.....", " ##....&$&.#.#.#..............##", "##..%.&$&.#.#.#.#####.%%%.#..# ", "#..%%.$$.#.#.#.#####.%%%..#.# ", "#.%%%..........#####.%%%.### ", "#.%%....%%%%%%%..#..%%%..# ", "#.%%.##..%%%%%%%%.%%%%..## ", "#.%..###..%%%%%%%%%%%..## ", "#...## ##...%%%%%%%...## ", "##### ###.........### ", " ########### "}; debian/freedink-dfarc.lintian-overrides0000644000000000000000000000010611220221254015376 0ustar # It's fine the way it is. extended-description-is-probably-too-short debian/source/0000755000000000000000000000000011746513150010471 5ustar debian/source/format0000644000000000000000000000001411615234130011670 0ustar 3.0 (quilt) debian/install0000644000000000000000000000004411054611161010551 0ustar debian/dfarc.xpm /usr/share/pixmaps debian/watch0000644000000000000000000000042611376310135010221 0ustar # With this file, you can run the "uscan" command # to check for upstream updates and more. # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 # Uncommment to examine a FTP server http://ftp.gnu.org/gnu/freedink/dfarc-(.*)\.tar\.gz debian uupdate debian/rules0000755000000000000000000000316311746520152010254 0ustar #!/usr/bin/make -f # -*- makefile -*- # # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # # Modified to make a template file for a multi-binary package with separated # build-arch and build-indep targets by Bill Allombert 2001 # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This has to be exported to make some magic below work. export DH_OPTIONS %: dh $@ --parallel --with autotools_dev #Install autotools-dev's config.sub and config.guess, if newer: #chmod 755 debian/update-autotools-config.sh #debian/update-autotools-config.sh autotools/ override_dh_auto_configure: # Using '--bindir=/usr/games' by Debian policy # (e.g. not the case for Fedora) # Using '--disable-desktopfiles' to avoid installing FreeDesktop files # on the builder (rather than on the end-user computer) dh_auto_configure -- --bindir=/usr/games --datadir=/usr/share/games --disable-desktopfiles override_dh_strip: # Create -dbg package with debug symbols for gdb dh_strip --dbg-package=freedink-dfarc-dbg override_dh_auto_install: # There's only one real package, let's not bother with # debian/tmp + move files in dh_install - install straight in # the appropriate directory dh_auto_install --destdir=debian/freedink-dfarc override_dh_installdocs: # --link-doc requires debhelper 7.4.2 dh_installdocs --link-doc=freedink-dfarc override_dh_installchangelogs: dh_installchangelogs ChangeLog debian/docs0000644000000000000000000000005411054611161010034 0ustar AUTHORS NEWS README THANKS TRANSLATIONS.txt debian/menu0000644000000000000000000000034611060170001010042 0ustar ?package(freedink-dfarc):needs="X11" section="Games/Adventure"\ title="DFArc - Dink frontend" command="/usr/games/dfarc"\ longtitle="Run, edit, install, remove and package Dink MODules" \ icon="/usr/share/pixmaps/dfarc.xpm" debian/compat0000644000000000000000000000000211746513113010366 0ustar 7 debian/freedink-dfarc-dbg.postinst0000644000000000000000000000040412031055164014364 0ustar #!/bin/sh set -e # Replace documentation directory with symlink docdir="/usr/share/doc/freedink-dfarc-dbg" if [ -d $docdir ] && [ ! -L $docdir ]; then if rmdir $docdir 2>/dev/null; then ln -sf freedink-dfarc $docdir fi fi #DEBHELPER# exit 0 debian/changelog0000644000000000000000000000513612031055274011044 0ustar freedink-dfarc (3.10-1.1) unstable; urgency=low * Non-maintainer upload * freedink-dfarc-dbg.postinst: Fix directory to symlink upgrade in postinst (Closes: #687874) -- David Prévot Thu, 27 Sep 2012 09:55:05 -0400 freedink-dfarc (3.10-1) unstable; urgency=low * New Upstream Version * Upgrade packaging to debhelper 7 and source format 3.0 (quilt) * Update copyright file * Bump Standards-Version to 3.9.3 * Update official webpage * Remove lintian override for dh_desktop (not supporting pre-Squeeze anymore) -- Sylvain Beucler Fri, 27 Apr 2012 19:00:00 +0200 freedink-dfarc (3.8.1-1) experimental; urgency=low * New upstream release -- Sylvain Beucler Sun, 14 Nov 2010 10:10:10 +0100 freedink-dfarc (3.8-1) experimental; urgency=low * New upstream release * Use http: rather than ftp: in the watch file, as FTP sometimes doesn't work in some NAT'd networks * Clean-up Etch-related caveats in README.source * Remove alternate dependency to wxWidgets 2.6 * Fix typo in package description * Clarify debian/copyright -- Sylvain Beucler Sat, 30 Oct 2010 08:51:59 +0200 freedink-dfarc (3.6-1) unstable; urgency=low * New Upstream Version * Update years in debian/copyright and add translations information * Bump Standards-Version to 3.8.4 * Fix debhelper-but-no-misc-depends by adding ${misc:Depends} in binary packages dependencies -- Sylvain Beucler Sun, 21 Feb 2010 22:53:28 +0100 freedink-dfarc (3.4-1) unstable; urgency=low * New Upstream Version * Bump Standards-Version to 3.8.3 * Move update of config.sub/config.guess from clean to build target * Add gbp.conf to ignore .gitignore files automatically * Rename BUILD to README.source -- Sylvain Beucler Sat, 19 Sep 2009 00:03:40 +0200 freedink-dfarc (3.2.2-1) unstable; urgency=low * New Upstream Version * Remove obsolete dh_make-generated code (for setting CFLAGS) * Fix incomplete copyright notice generated by dh_make (add 'Copyright' in front of '(C)') * Use good practices from autotools-dev to compute --host and --build parameters to ./configure * Move -dbg packages to section 'debug' * Add lintian override for dh_desktop obsoletion warning, since we're using it in backports. * Depends on debhelper >= 6.0.7 to use dh_lintian -- Sylvain Beucler Fri, 23 Jun 2009 20:49:47 +0200 freedink-dfarc (3.2.1-1) unstable; urgency=low * Initial package (Closes: #492760) -- Sylvain Beucler Sat, 20 Sep 2008 20:38:37 +0200 debian/.gitignore0000644000000000000000000000017011054611161011150 0ustar # rules: build-stamp build dfarc2 # debhelper: files dfarc2.postinst.debhelper dfarc2.postrm.debhelper dfarc2.substvars debian/control0000644000000000000000000000211111746516146010577 0ustar Source: freedink-dfarc Section: games Priority: extra Maintainer: Debian Games Team Uploaders: Sylvain Beucler Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libbz2-dev, libwxgtk2.8-dev, intltool (>= 0.31) Standards-Version: 3.9.3 Homepage: http://www.gnu.org/software/freedink/ Vcs-Git: git://git.debian.org/git/pkg-games/freedink-dfarc.git Vcs-Browser: http://git.debian.org/?p=pkg-games/freedink-dfarc.git Package: freedink-dfarc Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: freedink, xdg-utils Description: frontend and .dmod installer for GNU FreeDink DFArc2 makes it easy to play and manage the Dink Smallwood game and its numerous Dink Modules (or D-Mods). Package: freedink-dfarc-dbg Section: debug Architecture: any Depends: ${misc:Depends}, freedink-dfarc (= ${binary:Version}) Description: debugging symbols for dfarc DFArc2 makes it easy to play and manage the Dink Smallwood game and its numerous Dink Modules (or D-Mods). . This package contains the debugging symbols for dfarc. debian/copyright0000644000000000000000000001403511746507365011142 0ustar This is DFArc 3. The original source can always be found at: ftp://ftp.gnu.org/gnu/freedink/ Copyright (C) 2004 Andrew Reading Copyright (C) 2005, 2006 Dan Walma Copyright (C) 2008, 2009, 2010 Sylvain Beucler Copyright (C) 1996-2006 Julian Seward Translations: da - Copyright (C) 2009, 2010 Joe Hansen de - Copyright (C) 2009, 2010 Roland Illig es - Copyright (C) 2009, 2010 Fernando Carmona Varo fi - Copyright (C) 2008, 2009, 2010 Free Software Foundation fr - Copyright (C) 2008, 2009, 2010 Free Software Foundation it - Copyright (C) 2008 Davide Prina Copyright (C) 2010 Vincenzo Campanella mk - Copyright (C) 2008 Free Software Foundation nl - Copyright (C) 2010 Free Software Foundation pl - Copyright (C) 2008 GOKUSSJ6 Copyright (C) 2009, 2010 Michał Trzebiatowski vi - Copyright (C) 2009, 2010 Free Software Foundation hr - Copyright (C) 2012 Tomislav Krznar License: GNU FreeDink 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 3 of the License, or (at your option) any later version. GNU FreeDink 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, see . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. DFArc was previously released under different yet GPL-compatible licenses (cf. COPYING.DFArc and COPYING.DFArc-2.0) that request some notices to be included with modified versions, including in binary form. We reproduce these notices below: - First notice from the first public release of DFArc: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Redistributions in any form must be accompanied by information on how to obtain complete source code for the DB software and any accompanying software that uses the DB software. The source code must either be included in the distribution or be available for no more than the cost of distribution plus a nominal fee, and must be freely redistributable under reasonable conditions. For an executable file, complete source code means the source code for all modules it contains. It does not include source code for modules or files that typically accompany the major components of the operating system on which the executable file runs. * The files produced by DFArc are not subject to this license but instead any licensing terms provided inside said files. THIS SOFTWARE IS PROVIDED BY SLEEPYCAT SOFTWARE ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL SLEEPYCAT SOFTWARE 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. - Second notice for DFArc2 released as part of a bigger software package: This software is provided "as is" without express or implied warranties. You may freely use, modify and distribute this source provided that the copyright text below is included in the resulting source code, for example: "Portions Copyright (C) Seth A. Robinson, 1997-2003 You may use this source in personal and commercial products, you are not required to release the source code. ---------- 'src/BZip.cpp' comes from bzip2 1.0.4 and is covered by the GNU GPL v3 and the bzip2 licenses: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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) 2008, 2009, 2010, Sylvain Beucler and is licensed under the GPL, either version 3, or (at your option) any later version, see `/usr/share/common-licenses/GPL-3'.