--- nettoe-1.2.1.orig/debian/copyright +++ nettoe-1.2.1/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Name: nettoe +Maintainer: Gabriele Giorgetti + Mats Erik Andersson +Source: http://nettoe.sourceforge.net/downloads.php + +Files: * +Copyright: 2000, Gabriele Giorgetti + 2009, Mats Erik Andersson +License: GPL-2 + You are free to distribute this software under the terms of + the GNU General Public License. + . + On Debian systems, the complete text of the GNU General Public + License can be found in the file '/usr/share/common-licenses/GPL'. + +Files: debian/* +Copyright: 2001, Andras Bali + 2005, Matej Vela + 2007, Barry deFreese + 2008, Eddy Petrisor +License: GPL-2+ +X-Comment: This package was debianized by Andras Bali + on Sat, 23 Jun 2001 22:24:49 +0200. + . + Package maintainenance was taken over by Debian Games Team + on Mon, 10 Dec 2007 + --- nettoe-1.2.1.orig/debian/changelog +++ nettoe-1.2.1/debian/changelog @@ -0,0 +1,75 @@ +nettoe (1.2.1-1) unstable; urgency=low + + [ Mats Erik Andersson } + * Formulate debian/copyright according to DEP-5. + * Move to Standards 3.8.3, and debhelper (>= 7.0), compatibility 7. + + debian/rules: use 'dh_prep' instead of 'dh_clean -k'. + * debian/control: + + Add M E Andersson as uploader, keeping Debian Games Team as + proper maintainer. (Closes: #544916) + + Short description: use an initial small case letter. + + Add ${misc:Depends} to binary package section Depends. + * Set the suite to 'unstable', ready to release. + * debian/rules: Simplify some targets to use 'dh $@'. + + [ Barry deFreese ] + * Update my e-mail addresses. + + -- Mats Erik Andersson Thu, 14 Jan 2010 09:58:22 +0100 + +nettoe (1.1.0-4) UNRELEASED; urgency=low + + [ Barry deFreese ] + * Remove XS prefix from VCS fields + + [ Eddy Petrișor ] + * fix Vcs-Svn URL to point to svn, not the incomplete ssh location + + -- Eddy Petrișor Wed, 05 Mar 2008 02:01:34 +0200 + +nettoe (1.1.0-3) unstable; urgency=low + + [ Barry deFreese ] + * New maintainer (Closes: #274026) + + Debian Games Team + * Add myself to uploaders + * Bump compat/debhelper build-dep to 5 + + Version debhelper build-dep + * Fix watch file (Closes: #450166) + * Update package description (Closes: #348003) + * Bump standards version to 3.7.3 (No changes needed) + * Add VCS and Homepage fields in control + + -- Barry deFreese Mon, 10 Dec 2007 13:23:19 -0500 + +nettoe (1.1.0-2) unstable; urgency=low + + * QA upload. + * Package is orphaned (see #268125); set maintainer to Debian QA Group. + * src/network.c: Set SO_REUSEADDR to avoid `Address already in use' + errors when restarting. Closes: #227641. + * Switch to debhelper 4. + * debian/changelog: Remove obsolete Emacs local variables. + * debian/menu: Add quotes to placate Lintian. + * debian/rules: Honor DEB_BUILD_OPTIONS=noopt. + * Conforms to Standards version 3.6.2. + + -- Matej Vela Fri, 21 Oct 2005 11:58:40 +0200 + +nettoe (1.1.0-1) unstable; urgency=low + + * New upstream release. + + -- Andras Bali Mon, 6 Aug 2001 22:22:47 +0200 + +nettoe (1.0.6-1) unstable; urgency=low + + * New upstream release. + + -- Andras Bali Sun, 1 Jul 2001 19:58:16 +0200 + +nettoe (1.0.5-1) unstable; urgency=low + + * Initial Release (Closes: #96202). + + -- Andras Bali Sat, 23 Jun 2001 22:24:49 +0200 --- nettoe-1.2.1.orig/debian/compat +++ nettoe-1.2.1/debian/compat @@ -0,0 +1 @@ +7 --- nettoe-1.2.1.orig/debian/watch +++ nettoe-1.2.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/nettoe/nettoe-([\d.]+)\.tar\.gz --- nettoe-1.2.1.orig/debian/rules +++ nettoe-1.2.1/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh_testdir + ./configure --prefix=/usr --bindir=/usr/games --mandir=/usr/share/man + $(MAKE) + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/nettoe install + touch $@ + +binary-indep: install + dh $@ + +binary-arch: install + dh $@ + +binary: binary-indep binary-arch + dh $@ + +.PHONY: build clean binary-indep binary-arch binary install --- nettoe-1.2.1.orig/debian/control +++ nettoe-1.2.1/debian/control @@ -0,0 +1,18 @@ +Source: nettoe +Section: games +Priority: optional +Maintainer: Debian Games Team +Uploaders: Barry deFreese , Mats Erik Andersson +Build-Depends: debhelper (>> 7.0) +Standards-Version: 3.8.3 +Homepage: http://nettoe.sourceforge.net/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/nettoe/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/nettoe/?op=log + +Package: nettoe +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: networked version of Tic Tac Toe (3x3 Grid) for the console + NetToe is a console-based version of the classic game "Tic Tac Toe". + It's playable against computer AI, a player on the same machine or + with another player over the network. It uses a simple 3x3 board. --- nettoe-1.2.1.orig/debian/nettoe.docs +++ nettoe-1.2.1/debian/nettoe.docs @@ -0,0 +1,4 @@ +TO-DO +NEWS +README +BUGS --- nettoe-1.2.1.orig/debian/nettoe.menu +++ nettoe-1.2.1/debian/nettoe.menu @@ -0,0 +1,5 @@ +?package(nettoe):\ + needs="text"\ + section="Games/Board"\ + title="NetToe"\ + command="/usr/games/nettoe"