This is an automated email from the git hooks/post-receive script. apo-guest pushed a commit to branch master in repository dreamchess.
commit 863d42a9a7b0202fd41ba6dbc2dda78e74be8753 Author: Gonéri Le Bouder <[email protected]> Date: Thu Dec 14 18:47:57 2006 +0000 import of the Debian files from Paul Bell --- changelog | 6 ++++ compat | 1 + control | 24 ++++++++++++++ copyright | 30 ++++++++++++++++++ docs | 2 ++ rules | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 170 insertions(+) diff --git a/changelog b/changelog new file mode 100644 index 0000000..cab7afb --- /dev/null +++ b/changelog @@ -0,0 +1,6 @@ +dreamchess (0.1.0-1) unstable; urgency=low + + * see 'changelog' + + -- dreamchess devs <http://www.dreamchess.org/> Sun, 24 Sep 2006 00:00:00 +0100 + diff --git a/compat b/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/compat @@ -0,0 +1 @@ +4 diff --git a/control b/control new file mode 100644 index 0000000..a502e82 --- /dev/null +++ b/control @@ -0,0 +1,24 @@ +Source: dreamchess +Section: games +Priority: optional +Maintainer: fabertawe <[email protected]> +Build-Depends: debhelper (>= 4.0.0), autotools-dev +Standards-Version: 3.6.2 + +Package: dreamchess +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: A 3D chess game + DreamChess features 3D OpenGL graphics and provides various chess board sets, + ranging from classic wooden to flat. + . + A moderately strong chess engine is included: Dreamer. However, should this + engine be too weak for you, then you can use any other XBoard-compatible chess + engine, including the popular Crafty and GNU Chess. + . + Other features include on-screen move lists using SAN notation, undo + functionality, and savegames in PGN format. + . + http://www.dreamchess.org/ + . + Compiled on Ubuntu Edgy Eft 6.10 (x86_64 generic). diff --git a/copyright b/copyright new file mode 100644 index 0000000..5357a72 --- /dev/null +++ b/copyright @@ -0,0 +1,30 @@ +This package was debianized by fabertawe <[email protected]> on +Sun, 1 Oct 2006 17:11:19 +0100. + +It was downloaded from <http://www.dreamchess.org/> + +Copyright Holder: + +Andrew Ball +- Opposing Elements theme +- Default avatars + +Brandon May (melancholy) +- Graphics + +Kris McAulay <[email protected]> +- Graphical user interface +- Misc graphics + +Walter van Niftrik <[email protected]> +- Chess engine +- xboard protocol implementation +- 3D Models + +Rogier van Schaijk <[email protected]> +- Title screen graphics + +License: + +DreamChess is licensed under the GNU General Public License. +See /usr/share/common-licenses diff --git a/docs b/docs new file mode 100644 index 0000000..50bd824 --- /dev/null +++ b/docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/rules b/rules new file mode 100755 index 0000000..fca6897 --- /dev/null +++ b/rules @@ -0,0 +1,107 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# 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. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# 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) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/dreamchess.sgml > dreamchess.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/dreamchess. + $(MAKE) install DESTDIR=$(CURDIR)/debian/dreamchess + + +# 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_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/dreamchess.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

