--- crossfire-maps-small-1.5.0.orig/debian/changelog +++ crossfire-maps-small-1.5.0/debian/changelog @@ -0,0 +1,26 @@ +crossfire-maps-small (1.5.0-3.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Fri, 08 Jan 2021 16:32:27 +0100 + +crossfire-maps-small (1.5.0-3) unstable; urgency=low + + * Installing crossfire-maps-small will now trigger a server restart if + it is installed and running (similar to crossfire-maps' behavior since + 1.9.0-1-1) + + -- Kari Pahula Mon, 24 Jul 2006 05:13:48 +0300 + +crossfire-maps-small (1.5.0-2) unstable; urgency=low + + * Added missing build-dep debhelper. (Closes: #332704) + + -- Kari Pahula Sat, 8 Oct 2005 08:32:13 +0300 + +crossfire-maps-small (1.5.0-1) unstable; urgency=low + + * Initial release. + + -- Kari Pahula Fri, 3 Jun 2005 10:18:39 +0300 --- crossfire-maps-small-1.5.0.orig/debian/compat +++ crossfire-maps-small-1.5.0/debian/compat @@ -0,0 +1 @@ +5 --- crossfire-maps-small-1.5.0.orig/debian/control +++ crossfire-maps-small-1.5.0/debian/control @@ -0,0 +1,19 @@ +Source: crossfire-maps-small +Section: games +Priority: optional +Maintainer: Kari Pahula +Standards-Version: 3.7.2 +Build-Depends: cdbs, debhelper (>= 5) + +Package: crossfire-maps-small +Architecture: all +Suggests: crossfire-server, crossfire-edit +Conflicts: crossfire-maps, crossfire-server (<< 1.8.0-2) +Provides: crossfire-maps +Description: Small set of maps for crossfire + A smaller set of maps for use with crossfire-server or crossfire-edit. + . + You don't need this package if you are running only the client. + . + Note that installing maps will restart crossfire-server, if it is + installed and running. --- crossfire-maps-small-1.5.0.orig/debian/copyright +++ crossfire-maps-small-1.5.0/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Kari Pahula on +Fri, 03 Jun 2005 10:50:50 +0300. + +It was downloaded from ftp://ftp.real-time.com/pub/games/crossfire/ + +Upstream Author: Mark Wedel + +Copyright: Copryight (C) 1994 Mark Wedel + Copyright (C) 1992 Frank Tore Johansen + +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, 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +or see /usr/share/common-licenses/ --- crossfire-maps-small-1.5.0.orig/debian/dirs +++ crossfire-maps-small-1.5.0/debian/dirs @@ -0,0 +1 @@ +usr/share/games/crossfire/maps --- crossfire-maps-small-1.5.0.orig/debian/install +++ crossfire-maps-small-1.5.0/debian/install @@ -0,0 +1 @@ +* usr/share/games/crossfire/maps/ --- crossfire-maps-small-1.5.0.orig/debian/postinst +++ crossfire-maps-small-1.5.0/debian/postinst @@ -0,0 +1,45 @@ +#! /bin/sh +# postinst script for crossfire-maps +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +case "$1" in + configure) + if [ -x /etc/init.d/crossfire-server ] && ps axo euid,args|grep -Eq '^ *5 */usr/sbin/crossfire' ; then + invoke-rc.d crossfire-server restart + fi + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- crossfire-maps-small-1.5.0.orig/debian/rules +++ crossfire-maps-small-1.5.0/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f +DEB_DH_INSTALL_ARGS := -X debian -X CHANGES +DEB_BUILDDIR := $(CURDIR)/build +DEB_DH_INSTALLCHANGELOGS_ARGS := CHANGES + +include /usr/share/cdbs/1/rules/debhelper.mk + +binary-install/crossfire-maps-small:: + rm debian/crossfire-maps-small/usr/share/games/crossfire/maps/world/connect.pl + find debian/crossfire-maps-small/usr/share/games/crossfire/maps/ -type f -exec chmod 644 {} \;