--- six-0.3.3.orig/six/six.desktop +++ six-0.3.3/six/six.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Name=Six -Exec=six %i %m -caption "%c" +Exec=/usr/games/six %i %m -caption "%c" Icon=six Type=Application DocPath=six/six.html --- six-0.3.3.orig/debian/changelog +++ six-0.3.3/debian/changelog @@ -0,0 +1,85 @@ +six (0.3.3-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Sun, 15 Jun 2003 23:08:29 +0200 + +six (0.3.2-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Wed, 25 Sep 2002 20:01:45 +0200 + +six (0.3.1-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Mon, 9 Sep 2002 20:03:38 +0200 + +six (0.3.0-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Thu, 29 Aug 2002 17:40:16 +0200 + +six (0.2.8-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Mon, 26 Aug 2002 13:36:56 +0200 + +six (0.2.7-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Wed, 21 Aug 2002 13:42:23 +0200 + +six (0.2.6-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Fri, 16 Aug 2002 12:14:31 +0200 + +six (0.2.5-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Wed, 14 Aug 2002 18:12:50 +0200 + +six (0.2.4-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Mon, 12 Aug 2002 17:27:21 +0200 + +six (0.2.3-3) unstable; urgency=low + + * another manpage fix + * control fix + + -- Gabor Melis Thu, 8 Aug 2002 18:31:59 +0200 + +six (0.2.3-2) unstable; urgency=low + + * manpage fix + + -- Gabor Melis Wed, 7 Aug 2002 19:57:54 +0200 + +six (0.2.3-1) unstable; urgency=low + + * New upstream release + + -- Gabor Melis Wed, 7 Aug 2002 19:17:03 +0200 + +six (0.2.2-2) unstable; urgency=low + + * cosmetics + + -- Gabor Melis Wed, 7 Aug 2002 17:59:12 +0200 + +six (0.2.2-1) unstable; urgency=low + + * Initial Release. + + -- Gabor Melis Tue, 6 Aug 2002 14:39:48 +0200 + --- six-0.3.3.orig/debian/dirs +++ six-0.3.3/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- six-0.3.3.orig/debian/copyright +++ six-0.3.3/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Gabor Melis on +Tue, 6 Aug 2002 14:39:48 +0200. + +It was downloaded from http://six.retes.hu/ + +Upstream Author(s): Gabor Melis + +Copyright: (c) 2002 by Gabor Melis +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'. --- six-0.3.3.orig/debian/control +++ six-0.3.3/debian/control @@ -0,0 +1,19 @@ +Source: six +Section: contrib/games +Priority: optional +Maintainer: Gabor Melis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.6 + +Package: six +Section: contrib/games +Architecture: any +Depends: ${shlibs:Depends} +Suggests: kdebase +Description: Hex playing program for KDE + Six plays Hex: a game with very simple rules and deep tactical complexity. + . + Two players - one with black and one with white - alternate placing marks + on a rhombic board of hexagonal cells. Black's goal is to connect the two + opposite black sides of the board with black pieces. White's goal is to + connect the white sides of the board with white pieces. --- six-0.3.3.orig/debian/rules +++ six-0.3.3/debian/rules @@ -0,0 +1,119 @@ +#!/usr/bin/make -f +# 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 + +# This is the debhelper compatibility version to use. +export DH_COMPAT=3 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + COMPILER_FLAGS=CPPFLAGS=-g +else + COMPILER_FLAGS=CPPFLAGS= +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +-include debian/debiandirs +export kde_bindir=/usr/games + +debian/debiandirs: admin/debianrules + perl -w admin/debianrules echodirs > debian/debiandirs + +config.status: configure + dh_testdir + if test ! -f configure; then \ + $(MAKE) -f admin/Makefile.common ;\ + fi + $(COMPILER_FLAGS) ./configure $(configkde) \ + --libdir=$(kde_libdir) --includedir=$(kde_includedir) + +configure: configure.in.in + dh_testdir + $(MAKE) -f admin/Makefile.common + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/six.sgml > six.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -rm -f debian/debiandirs + -$(MAKE) distclean + #-test -r /usr/share/misc/config.sub && \ + # cp -f /usr/share/misc/config.sub config.sub + #-test -r /usr/share/misc/config.guess && \ + # cp -f /usr/share/misc/config.guess config.guess + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/six. + $(MAKE) install DESTDIR=$(CURDIR)/debian/six + + +# 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 + for i in `find debian/ -type l -name "common"`; do \ + rm $$i; \ + ln -s ../common $$i ;\ + done +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman debian/six.man + dh_installinfo +# dh_undocumented + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress --exclude=.docbook --exclude=.bz2 + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- six-0.3.3.orig/debian/docs +++ six-0.3.3/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- six-0.3.3.orig/debian/six.man +++ six-0.3.3/debian/six.man @@ -0,0 +1,153 @@ +.TH SIX 6 +.SH NAME +six \- Hex game for KDE +.SH SYNOPSIS +.B six +.I [Qt-options] [KDE-options] [options] +.SH DESCRIPTION +Six plays Hex, a deceptively simple two player board game from +the big family of connectivity games. +Simplicity of rules and deep complexity of game play make this game +a classic. +.SH RULES +The rules of the game are simple and few. +Two players - one with black and one with white - alternate placing +marks on a board of hexagonal cells. Black's goal +is to connect the two opposite black sides of the board with +black pieces. White's goal is to connect +the white sides of the board with white pieces. + +To remove the first player's considerable advantage the game is often +played with the so called swap rule. It means that after the opening +move the second player can take the first move instead of playing a +reply. This discourages the first player from playing an opening +move that's too strong. +.\" This portion of the manual page is from kdeopt.man, from the +.\" kdegames Debian package. +.SH GENERIC OPTIONS +.TP +.B \-\-help +Show help about options. +.TP +.B \-\-help-qt +Show Qt specific options. +.TP +.B \-\-help-kde +Show KDE specific options. +.TP +.B \-\-help-all +Show all options. +.TP +.B \-\-author +Show author information. +.TP +.B \-v, \-\-version +Show version information. +.TP +.B \-\-license +Show license information. +.TP +.B \-\- +End of options. +.SH QT OPTIONS +.TP +.B \-\-display \fI\fB +Use the X-server display `displayname'. +.TP +.B \-\-session \fI\fB +Restore the application for the given `sessionId'. +.TP +.B \-\-cmap +Causes the application to install a private color map on an 8\-bit +display. +.TP +.B \-\-ncols \fI\fB +Limits the number of colors allocated in the color cube on an 8\-bit +display, if the application is using the QApplication::ManyColor color +specification. +.TP +.B \-\-nograb +Tells Qt to never grab the mouse or the keyboard. +.TP +.B \-\-dograb +Running under a debugger can cause an implicit \-nograb, use \-dograb +to override. +.TP +.B \-\-sync +Switches to synchronous mode for debugging. +.TP +.B \-\-fn, \-\-font \fI\fB +Defines the application font. +.TP +.B \-\-bg, \-\-background \fI\fB +Sets the default background color and an application palette (light +and dark shades are calculated). +.TP +.B \-\-fg, \-\-foreground \fI\fB +Sets the default foreground color. +.TP +.B \-\-btn, \-\-button \fI\fB +Sets the default button color. +.TP +.B \-\-name \fI\fB +Sets the application name. +.TP +.B \-\-title \fI\fB +Sets the application title (caption). +.TP +.B \-\-visual TrueColor +Forces the application to use a TrueColor visual on an 8-bit display. +.TP +.B \-\-inputstyle \fI<inputstyle>\fB +Sets XIM (X Input Method) input style. Possible values are +\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP. +.TP +.B \-\-im \fI<XIM server>\fB +Set XIM server. +.TP +.B \-\-noxim +Disable XIM. +.SH KDE OPTIONS +.TP +.B \-\-caption \fI<caption>\fB +Use `caption' as name in the titlebar. +.TP +.B \-\-icon \fI<icon>\fB +Use `icon' as the application icon. +.TP +.B \-\-miniicon \fI<icon>\fB +Use `icon' as the icon in the titlebar. +.TP +.B \-\-dcopserver \fI<server>\fB +Use the DCOP Server specified by `server'. +.TP +.B \-\-nocrashhandler +Disable crash handler, to get core dumps. +.TP +.B \-\-waitforwm +Waits for a WM_NET compatible windowmanager. +.TP +.B \-\-style \fI<style>\fB +Sets the application GUI style. +.TP +.B \-\-geometry \fI<geometry>\fB +Sets the client geometry of the main widget. +.SH OPTIONS +.TP +.B \-\-black \fI<player>\fB +Set black player. Possible values are: +"human", "beginner", "intermediate", "advanced", "expert" +.TP +.B \-\-white \fI<player>\fB +Set white player. Possible values are: +"human", "beginner", "intermediate", "advanced", "expert" +.TP +.B \-\-pbem-filter +Import PBEM game from standard input. +.SH SEE ALSO +More detailed user documentation is available from +.BR help:/six +(either enter this URL into \fBkonqueror\fP, or run \fBkhelpcenter +help:/six\fP). +.SH AUTHOR +Gabor Melis <mega@hotpop.com> --- six-0.3.3.orig/debian/six.menu +++ six-0.3.3/debian/six.menu @@ -0,0 +1,8 @@ +?package(six):\ + needs=x11\ + section=Games/Board\ + hints="KDE"\ + kderemove="y"\ + title="Six"\ + command=/usr/games/six +