--- xfrisk-1.2.orig/xgethostname.c +++ xfrisk-1.2/xgethostname.c @@ -0,0 +1,125 @@ +/* Copyright (c) 2001 Neal H Walfield . + + This file is placed into the public domain. Its distribution + is unlimited. + + THIS SOFTWARE IS PROVIDED ``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 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. + */ + +/* NAME + + xgethostname - get the host name. + + SYNOPSIS + + char *xgethostname (void); + + DESCRIPTION + + The xhostname function is intended to replace gethostname(2), a + function used to access the host name. The old interface is + inflexable given that it assumes the existance of the + MAXHOSTNAMELEN macro, which neither POSIX nor the proposed + Single Unix Specification version 3 guarantee to be defined. + + RETURN VALUE + + On success, a malloced, null terminated (possible truncated) + string containing the host name is returned. On failure, + NULL is returned and errno is set. + */ + +#include /* For MAXHOSTNAMELEN */ +#include +#include +#include + +char * +xgethostname (void) +{ + char *buf; + int size = 0; + int err; +#ifndef MAXHOSTNAMELEN + char *tmp; +#endif + +#ifdef MAXHOSTNAMELEN + size = MAXHOSTNAMELEN; +#else /* MAXHOSTNAMELEN */ +#ifdef _SC_HOST_NAME_MAX + size = sysconf (_SC_HOST_NAME_MAX); +#else /* _SC_HOST_NAME_MAX */ + if (size < 256) + size = 256; +#endif /* MAXHOSTNAMELEN */ +#endif /* _SC_HOST_NAME_MAX */ + + buf = malloc (size); + if (! buf) + { + errno = ENOMEM; + return NULL; + } + + err = gethostname (buf, size); +#ifndef MAXHOSTNAMELEN + while (err == ENAMETOOLONG) + { + size *= 2; + tmp = realloc (buf, size); + if (! tmp) + { + if (buf) + free (buf); + errno = ENOMEM; + return NULL; + } + buf = tmp; + + err = gethostname (buf, size); + } +#endif + if (err) + { + if (buf) + free (buf); + errno = err; + return NULL; + } + + return buf; +} + +#ifdef WANT_TO_TEST_XGETHOSTNAME +#include +#include + +int +main (int argc, char *argv[]) +{ + char *hostname; + + hostname = xgethostname (); + if (! hostname) + { + perror ("xgethostname"); + return 1; + } + + printf ("%s\n", hostname); + free (hostname); + + return 0; +} +#endif /* WANT_TO_TEST_XGETHOSTNAME */ --- xfrisk-1.2.orig/xgethostname.h +++ xfrisk-1.2/xgethostname.h @@ -0,0 +1,47 @@ +/* Copyright (c) 2001 Neal H Walfield . + + This file is placed into the public domain. Its distribution + is unlimited. + + THIS SOFTWARE IS PROVIDED ``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 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. + */ + +/* NAME + + xgethostname - get the host name. + + SYNOPSIS + + char *xgethostname (void); + + DESCRIPTION + + The xhostname function is intended to replace gethostname(2), a + function used to access the host name. The old interface is + inflexable given that it assumes the existance of the + MAXHOSTNAMELEN macro, which neither POSIX nor the proposed + Single Unix Specification version 3 guarantee to be defined. + + RETURN VALUE + + On success, a malloced, null terminated (possible truncated) + string containing the host name is returned. On failure, + NULL is returned and errno is set. + */ + +#ifndef XGETHOSTNAME +#define XGETHOSTNAME + +char * xgethostname (void); + +#endif /* XGETHOSTNAME */ --- xfrisk-1.2.orig/aiClientMain.c +++ xfrisk-1.2/aiClientMain.c @@ -45,6 +45,7 @@ #include "debug.h" #include "aiClient.h" #include "aiController.h" +#include "xgethostname.h" /* Private functions */ void AI_Start(Int32 argc, CString *argv); @@ -133,7 +134,7 @@ { struct sockaddr_in server; struct hostent *hp; - char strHostName[MAXHOSTNAMELEN + 1]; + char *strHostName; Int32 iMessageType, i; void *pvMessage; MsgRegisterClient msgRegisterClient; @@ -181,7 +182,7 @@ * to each client. The server sends back the client ID. */ - gethostname(strHostName, sizeof(strHostName)); + strHostName = xgethostname(); msgRegisterClient.strClientAddress = (CString)MEM_Alloc(strlen(strHostName)+32); snprintf(msgRegisterClient.strClientAddress, strlen(strHostName)+32, --- xfrisk-1.2.orig/Makefile +++ xfrisk-1.2/Makefile @@ -35,6 +35,9 @@ # fix on dropping armies during fortification, made configurable from here # +# Edited for Debian GNU/Linux. +DESTDIR = + ################## # Language options # Define only either one, not both @@ -46,9 +49,9 @@ # Gameplay options # Dropping more than 1 army while fortifying: # Use this one to disallow dropping all... -DROPALL= +#DROPALL= # ... or this one to allow dropping all at once -#DROPALL=-DDROPALL +DROPALL=-DDROPALL # The max number of armies to drop is set in game.c, DROP_ARMIES # which will be ignored it DROPALL is not set @@ -81,7 +84,7 @@ ## Installation prefix # Adjust to taste. Stuff gets installed here. -PREFIX=/usr/local +#PREFIX=$(DESTDIR)/usr/games #PREFIX=/usr/local/X11 ## X11 location and options @@ -145,8 +148,10 @@ # You shouldn't need to edit below here # ############################################################ -LIBDIR=$(PREFIX)/lib/xfrisk -BINDIR=$(PREFIX)/bin +LIBDIR=$(DESTDIR)/usr/lib/games/xfrisk +BINDIR=$(DESTDIR)/usr/games +HELPDIR=$(DESTDIR)/usr/share/games/xfrisk +DOCDIR=$(DESTDIR)/usr/share/doc/xfrisk # Data files, stored in LIBDIR MAP=World.risk @@ -154,7 +159,7 @@ HELP=Help.risk # Flags & programs -DEFINES=-D$(LANGUAGE) -DMAPFILE=\"$(LIBDIR)/$(MAP)\" -DCOUNTRYFILE=\"$(LIBDIR)/$(COUNTRY)\" -DHELPFILE=\"$(LIBDIR)/$(HELP)\" $(DROP_ONE) +DEFINES=-D$(LANGUAGE) -DMAPFILE=\"$(LIBDIR)/$(MAP)\" -DCOUNTRYFILE=\"$(LIBDIR)/$(COUNTRY)\" -DHELPFILE=\"$(HELPDIR)/$(HELP)\" $(DROP_ONE) CFLAGS+=$(DEFINES) @@ -165,7 +170,7 @@ GAMEOBJS=client.o network.o gui.o callbacks.o utils.o dice.o cards.o \ game.o colormap.o help.o riskgame.o debug.o clientMain.o colorEdit.o \ registerPlayers.o addPlayer.o viewStats.o viewCards.o viewLog.o \ - viewChat.o viewFeedback.o + viewChat.o viewFeedback.o xgethostname.o xfrisk: $(GAMEOBJS) $(COMPAT_OBJS) $(CC) $(LDFLAGS) $^ $(XINC) $(XLIBS) $(LIBS) -o $@ @@ -203,16 +208,18 @@ # The computer player library libfriskAI.a: network.o aiDice.o game.o riskgame.o debug.o aiClientMain.o \ - aiController.o aiStubs.o $(COMPAT_OBJS) + aiController.o aiStubs.o xgethostname.o $(COMPAT_OBJS) $(AR) -cruv $@ $^ $(RANLIB) $@ install: all -(umask 022; mkdir -p -m755 $(LIBDIR) $(BINDIR) $(APPLOADDIR)) + $(INSTALL_DATA) FAQ $(DOCDIR) + $(INSTALL_DATA) BUGS $(DOCDIR) $(INSTALL_DATA) $(MAP) $(LIBDIR) $(INSTALL_DATA) $(COUNTRY) $(LIBDIR) - $(INSTALL_DATA) $(HELP) $(LIBDIR) - $(INSTALL_BIN) risk $(BINDIR) + $(INSTALL_DATA) $(HELP) $(HELPDIR) +# $(INSTALL_BIN) risk $(BINDIR) $(INSTALL_BIN) xfrisk $(BINDIR) $(INSTALL_BIN) friskserver $(BINDIR) $(INSTALL_BIN) aiDummy $(BINDIR) @@ -226,6 +233,7 @@ uninstall: rm -rf $(LIBDIR) + rm -rf $(HELPDIR) rm -f $(BINDIR)/risk rm -f $(BINDIR)/xfrisk rm -f $(BINDIR)/friskserver --- xfrisk-1.2.orig/client.c +++ xfrisk-1.2/client.c @@ -59,6 +59,7 @@ #include "viewStats.h" #include "addPlayer.h" #include "language.h" +#include "xgethostname.h" /* Private data */ /** \struct _Client @@ -99,7 +100,7 @@ { struct sockaddr_in server; struct hostent *hp; - char strHostName[MAXHOSTNAMELEN + 1]; + char *strHostName; Int32 iCommLink, i; Int32 iMessageType; void *pvMessage; @@ -146,7 +147,7 @@ * to each client. The server sends back the client ID. */ - gethostname(strHostName, sizeof(strHostName)); + strHostName = xgethostname(); len = strlen(strHostName)+32;; msgRegisterClient.strClientAddress = (CString)MEM_Alloc(len); snprintf(msgRegisterClient.strClientAddress, len, "%s[%lu]", --- xfrisk-1.2.orig/debian/manpages +++ xfrisk-1.2/debian/manpages @@ -0,0 +1,4 @@ +debian/aiDummy.6 +debian/friskserver.6 +debian/risk.6 +debian/xfrisk.6 --- xfrisk-1.2.orig/debian/watch +++ xfrisk-1.2/debian/watch @@ -0,0 +1,3 @@ +# Site Directory Pattern Version Script +version=2 +http://tuxick.net/xfrisk/files/ [Xx][Ff]risk-(.*)\.tar\.gz debian uupdate --- xfrisk-1.2.orig/debian/copyright +++ xfrisk-1.2/debian/copyright @@ -0,0 +1,27 @@ +This package was originally debianized by John O Sullivan + on Thu, 15 Jun 2000 02:12:44 +0100 and is now +maintained by Joe Nahmias . + +It was downloaded from: + +Upstream Authors: + Tony den Haan + Mikko Hyvärinen + Elan Feingold + +Copyright: + +Copyright (C) 1993-1999 Elan Feingold (elan@aetherworks.com) + +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. + +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL file. --- xfrisk-1.2.orig/debian/xfrisk.6 +++ xfrisk-1.2/debian/xfrisk.6 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH XFRISK 6x "February 16, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +xfrisk \- risk board-game client for X11 +.SH SYNOPSIS +.B xfrisk +.RI < server > " " [ options ] +.br +.SH DESCRIPTION +This manual page documents briefly the \fBxfrisk\fP program. + +\fBxfrisk\fP is a client for connecting to the friskserver. From there you +can add players and start a game of risk. + +.SH SEE ALSO +.BR aiColson (6), +.BR aiConway (6), +.BR aiDummy (6), +.BR friskserver (6), +.BR risk (6) +.PP +/usr/share/doc/xfrisk/FAQ + +.SH AUTHOR +This manual page was re-written by Joseph Nahmias +for the Debian GNU/Linux system (but may be used by others). --- xfrisk-1.2.orig/debian/doc-base.xfrisk +++ xfrisk-1.2/debian/doc-base.xfrisk @@ -0,0 +1,9 @@ +Document: xfrisk-faq +Title: xfrisk FAQ +Author: Elan Feingold +Abstract: This manual answers some commonly asked questions about xfrisk. +Section: Games/Board + +Format: Text +Files: /usr/share/doc/xfrisk/FAQ.gz + --- xfrisk-1.2.orig/debian/docs +++ xfrisk-1.2/debian/docs @@ -0,0 +1,4 @@ +BUGS +FAQ +README.NEW +TODO --- xfrisk-1.2.orig/debian/control +++ xfrisk-1.2/debian/control @@ -0,0 +1,19 @@ +Source: xfrisk +Section: games +Priority: optional +Maintainer: Joe Nahmias +Standards-Version: 3.8.0 +Build-Depends: xaw3dg-dev, debhelper (>> 6), libxaw7-dev +Homepage: http://tuxick.net/xfrisk/ + +Package: xfrisk +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Server and X11 client for playing risk with humans or AIs + Risk is a board game played on a map of the world. You control a group + of armies and attempt to capture large sections of the world and try to + stop your opponents from doing the same thing. You can also choose to + play with a mission that you have to accomplish before your opponents do. + . + xfrisk allows you to play risk against other players over TCP/IP and + includes 3 different AI players. --- xfrisk-1.2.orig/debian/risk.6 +++ xfrisk-1.2/debian/risk.6 @@ -0,0 +1,42 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH RISK 6x "February 16, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +risk \- start up a single-player version of risk +.SH SYNOPSIS +.B risk +.RI [ server ] +.SH DESCRIPTION +\fBrisk\fP is a script that sets up everything needed for a single-client +game of risk. By default, it will start the risk server on the local +machine, connect all available computer players to the server and start up +the xfrisk client and connect to the server. If a server is specified, the +server will not be started, and the computer players and client will try to +connect to the machine requested. +.SH OPTIONS +.TP +.B server +Name of the machine running the friskserver to connect with. +.SH SEE ALSO +.BR aiColson (6), +.BR aiConway (6), +.BR aiDummy (6), +.BR friskserver (6), +.BR xfrisk (6) +.SH AUTHOR +This manual page was written by Joseph Nahmias +for the Debian GNU/Linux system (but may be used by others). --- xfrisk-1.2.orig/debian/README.Debian +++ xfrisk-1.2/debian/README.Debian @@ -0,0 +1,7 @@ +xfrisk for Debian +---------------------- + +The only important change between the original xfrisk and this debianised +version is that the help file has been moved to /usr/share/games/xfrisk + + -- John O Sullivan , Thu, 20 Jul 2000 02:38:29 +0100 --- xfrisk-1.2.orig/debian/aiDummy.6 +++ xfrisk-1.2/debian/aiDummy.6 @@ -0,0 +1,55 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH RISK-AI 6x "February 16, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +aiColson, aiConway, aiDummy \- Computer players for xfrisk +.SH SYNOPSIS +.B aiColson +.RI < server > +.B & +.br +.B aiConway +.RI < server > +.B & +.br +.B aiDummy +.RI < server > +.B & +.SH DESCRIPTION +This manual page documents briefly the \fBxfrisk\fP computer players. + +\fBaiDummy\fP is a framework for creating an computer player for the game. +It is quite dumb and doesn't do a good job of playing the game. +.P +\fBaiColson\fP is a complete ai player of moderate difficulty. +.P +\fBaiConway\fP is another complete ai player, again of moderate difficulty. +.SH OPTIONS +.TP +.B server +Name of the frisk server to connect to. +.SH NOTES +From the client game setup window, you can add multiple instances of each +player to a game. To do this, you \fIonly\fP need \fBone\fP instance of +each computer player connected to a server. +.SH SEE ALSO +.BR friskserver (6), +.BR risk (6), +.BR xfrisk (6) +.SH AUTHOR +This manual page was written by Joseph Nahmias +for the Debian GNU/Linux system (but may be used by others). --- xfrisk-1.2.orig/debian/menu +++ xfrisk-1.2/debian/menu @@ -0,0 +1,4 @@ +?package(xfrisk):needs="X11" section="Games/Board"\ + title="Xfrisk" command="/usr/games/risk" +?package(xfrisk):needs="X11" section="Games/Board"\ + title="Xfrisk local-client-only" command="/usr/games/xfrisk localhost" --- xfrisk-1.2.orig/debian/rules +++ xfrisk-1.2/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +export CFLAGS + +INSTALL ?= install +INSTALL_SCRIPT = $(INSTALL) -p -o root -g root -m 755 + +build: build-stamp + +build-stamp: + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/xfrisk + $(INSTALL_SCRIPT) debian/risk $(CURDIR)/debian/xfrisk/usr/games + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install + dh_installmenu + 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 --- xfrisk-1.2.orig/debian/risk +++ xfrisk-1.2/debian/risk @@ -0,0 +1,23 @@ +#!/bin/sh -e + +# Computer AI players to load +OPPS="aiDummy aiConway aiColson" + +if [ $# -ge 1 ]; then + SERVER=$1 +else + SERVER=localhost + echo -n Loading local riskserver into the background... + /usr/games/friskserver localhost > /dev/null & + echo done. +fi + +for i in $OPPS; do + echo -n Loading computer player $i for play on $SERVER... + /usr/games/$i $SERVER > /dev/null & + echo done. +done + +echo -n Now starting xfrisk client for play on $SERVER... +/usr/games/xfrisk $SERVER & +echo done. --- xfrisk-1.2.orig/debian/links +++ xfrisk-1.2/debian/links @@ -0,0 +1,2 @@ +usr/share/man/man6/aiDummy.6x.gz usr/share/man/man6/aiColson.6x.gz +usr/share/man/man6/aiDummy.6x.gz usr/share/man/man6/aiConway.6x.gz --- xfrisk-1.2.orig/debian/friskserver.6 +++ xfrisk-1.2/debian/friskserver.6 @@ -0,0 +1,39 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH FRISKSERVER 6x "February 16, 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +friskserver \- network risk board-game server +.SH SYNOPSIS +.B friskserver & +.br +.SH DESCRIPTION +\fBfriskserver\fP is the server that controls a particular game of risk. +It will start up on the machine it is run on and wait for clients to connect. +.PP +.SH NOTES +The server (and client) normally use port \fB5324\fP. +Changing this will require editing the source (\fBRISK_PORT\fP in +\fIriskgame.h\fP) and then recompiling everything to use that port. +.SH SEE ALSO +.BR aiColson (6), +.BR aiConway (6), +.BR aiDummy (6), +.BR risk (6), +.BR xfrisk (6) +.SH AUTHOR +This manual page was written by Joseph Nahmias +for the Debian GNU/Linux system (but may be used by others). --- xfrisk-1.2.orig/debian/dirs +++ xfrisk-1.2/debian/dirs @@ -0,0 +1,2 @@ +/usr/share/doc/xfrisk +/usr/share/games/xfrisk --- xfrisk-1.2.orig/debian/compat +++ xfrisk-1.2/debian/compat @@ -0,0 +1 @@ +6 --- xfrisk-1.2.orig/debian/changelog +++ xfrisk-1.2/debian/changelog @@ -0,0 +1,52 @@ +xfrisk (1.2-3) unstable; urgency=low + + * Ack NMU, closes: #370232. + * headers for libxaw are now in the libxaw7-dev package, closes: #484187. + * Fix path to FAQ in doc-base entry, closes: #285242. + * debian/menu: quote all fields, closes: #237640; update section. + * Misc pkg cleanup: + + bump debhelper compat to 6. + + bump std. ver. to 3.8.0. + + -- Joe Nahmias Fri, 06 Jun 2008 01:40:23 -0400 + +xfrisk (1.2-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Add libxaw-headers to the build dependencies (Closes: #370232) + * Quote menu entries + * Bump standards version + + -- Julien Danjou Sat, 10 Jun 2006 13:06:36 +0200 + +xfrisk (1.2-2) unstable; urgency=low + + * New maintainer (closes: #229262). + * Acknowledge NMU (closes: #85309). + * Fix client-only menu item to use localhost (closes: #215411). + * Use xgethostname to remove hostname length limitations (closes: #107314). + * Updated: debian/watch, debian/copyright, debian/control. + * rewrote manpages. + + -- Joe Nahmias Mon, 16 Feb 2004 12:23:59 -0500 + +xfrisk (1.2-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Added Build-Depends, fixes Bug#85309. + * Removed dh_suidregister from debian/rules (obsolate). + * Removed .ex files. + * Removed upstream's INSTALL documentation. + + -- Lenart Janos Sat, 24 Feb 2001 02:50:08 +0100 + +xfrisk (1.2-1) unstable; urgency=low + + * Initial Release. + * First attempt at packaging xfrisk + + -- John O'Sullivan Thu, 15 Jun 2000 02:12:44 +0100 + +Local variables: +mode: debian-changelog +End: