Codebase list hoichess / a97ecb1
Imported Debian patch 0.4.0-1 Oliver Korff authored 18 years ago Jeremy Bicha committed 7 years ago
9 changed file(s) with 156 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 hoichess for Debian
1 -------------------
2
3 This Software is useful with a frontend to play with. Successfully tested is
4 the current version of knights.
5
6 See
7
8 http://www.hoicher.de/hoichess
9 http://wbec-ridderkerk.nl/index.html
10 http://www.tim-mann.org/chess.html
11
12 for more information.
13
14 -- Oliver Korff <ok@xynyx.de>, Fri, 23 Dec 2005 22:01:56 +0100
0 hoichess (0.4.0-1) unstable; urgency=low
1
2 * Initial release Closes: #334927
3
4 -- Oliver Korff <ok@xynyx.de> Sun, 19 Mar 2006 20:41:15 +0100
0 Source: hoichess
1 Section: games
2 Priority: optional
3 Maintainer: Oliver Korff <ok@xynyx.de>
4 Build-Depends: debhelper (>= 4.0.0)
5 Standards-Version: 3.6.2
6
7 Package: hoichess
8 Architecture: any
9 Depends: ${shlibs:Depends}, ${misc:Depends}
10 Suggests: xboard (>=4.2.7-1)
11 Description: xboard compatible chess engine to play chess with
12 chess engine compatible with xboard, but may also be used
13 stand-alone, via terminal. Hoichess is written in C++ for
14 GNU/Linux systems, but but should work on most other Unix like
15 systems.
16 .
17 See http://www.hoicher.de/hoichess for more information.
0 This package was debianized by Oliver Korff <ok@xynyx.de> on
1 Fri, 23 Dec 2005 22:01:56 +0100.
2
3 It was downloaded from http://www.hoicher.de/hoichess/
4
5 Copyright Holder: Holger Ruckdeschel <holger@hoicher.de>
6
7 Released unser the terms of the GPL,
8 the complete text of the GNU General
9 Public License can be found in `/usr/share/common-licenses/GPL'.
10
0 usr/games
1 usr/share/doc/hoichess/html
0 BUGS
1 README
0 ?package(hoichess):needs="x11" section="Games/Board/Chess" \
1 title="HoiChess" command="/usr/games/xboard -fcp /usr/games/hoichess"
2 ?package(hoichess):needs="text" section="Games/Board/Chess" \
3 title="HoiChess" command="/usr/games/hoichess"
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2 # Sample debian/rules that uses debhelper.
3 # This file was originally written by Joey Hess and Craig Small.
4 # As a special exception, when this file is copied by dh-make into a
5 # dh-make output file, you may use that output file without restriction.
6 # This special exception was added by Craig Small in version 0.37 of dh-make.
7
8 # Uncomment this to turn on verbose mode.
9 #export DH_VERBOSE=1
10
11
12
13
14 CFLAGS = -Wall -g
15
16 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
17 CFLAGS += -O0
18 else
19 CFLAGS += -O2
20 endif
21
22 configure: configure-stamp
23 configure-stamp:
24 dh_testdir
25 # Add here commands to configure the package.
26
27 touch configure-stamp
28
29
30 build: build-stamp
31
32 build-stamp: configure-stamp
33 dh_testdir
34
35 # Add here commands to compile the package.
36 $(MAKE)
37 #docbook-to-man debian/hoichess.sgml > hoichess.1
38
39 touch build-stamp
40
41 clean:
42 dh_testdir
43 dh_testroot
44 rm -f build-stamp configure-stamp
45
46 # Add here commands to clean up after the build process.
47 -$(MAKE) clean
48
49 dh_clean
50
51 install: build
52 dh_testdir
53 dh_testroot
54 dh_clean -k
55 dh_installdirs
56
57 # Add here commands to install the package into debian/hoichess.
58 $(MAKE) install DESTDIR=$(CURDIR)/debian/hoichess
59
60
61 # Build architecture-independent files here.
62 binary-indep: build install
63 # We have nothing to do by default.
64
65 # Build architecture-dependent files here.
66 binary-arch: build install
67 dh_testdir
68 dh_testroot
69 dh_installchangelogs ChangeLog
70 dh_installdocs
71 dh_installexamples
72 # dh_install
73 dh_installmenu
74 # dh_installdebconf
75 # dh_installlogrotate
76 # dh_installemacsen
77 # dh_installpam
78 # dh_installmime
79 # dh_installinit
80 # dh_installcron
81 # dh_installinfo
82 dh_installman
83 dh_link
84 dh_strip
85 dh_compress
86 dh_fixperms
87 # dh_perl
88 # dh_python
89 # dh_makeshlibs
90 dh_installdeb
91 dh_shlibdeps
92 dh_gencontrol
93 dh_md5sums
94 dh_builddeb
95
96 binary: binary-indep binary-arch
97 .PHONY: build clean binary-indep binary-arch binary install configure