Codebase list brutalchess / 081bf42
Import Debian changes 0.5.2+dfsg-7 brutalchess (0.5.2+dfsg-7) unstable; urgency=medium * Team upload. * Drop FreeType.patch. Apparently src:freetype has reverted the changes from earlier versions and the path to freetype.h had to be adjusted again. Thanks to Chris West for the report. (Closes: #808488) brutalchess (0.5.2+dfsg-6) unstable; urgency=medium * Vcs-Browser: Use https. * Update 05_use_our_fonts.diff: Use the correct path to DejaVuSans.ttf. Thanks to Chris Leick for the report. See also #791671. * Declare compliance with Debian Policy 3.9.6. * wrap-and-sort -sa. Markus Koschany 5 years ago
6 changed file(s) with 39 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
0 debian/brutalchess.desktop /usr/share/applications
01 debian/brutalchess.xpm /usr/share/pixmaps
1 debian/brutalchess.desktop /usr/share/applications
0 brutalchess (0.5.2+dfsg-7) unstable; urgency=medium
1
2 * Team upload.
3 * Drop FreeType.patch. Apparently src:freetype has reverted the changes from
4 earlier versions and the path to freetype.h had to be adjusted again.
5 Thanks to Chris West for the report. (Closes: #808488)
6
7 -- Markus Koschany <apo@debian.org> Mon, 21 Dec 2015 00:43:32 +0100
8
9 brutalchess (0.5.2+dfsg-6) unstable; urgency=medium
10
11 * Vcs-Browser: Use https.
12 * Update 05_use_our_fonts.diff: Use the correct path to DejaVuSans.ttf.
13 Thanks to Chris Leick for the report. See also #791671.
14 * Declare compliance with Debian Policy 3.9.6.
15 * wrap-and-sort -sa.
16
17 -- Markus Koschany <apo@debian.org> Fri, 30 Oct 2015 17:41:17 +0100
18
019 brutalchess (0.5.2+dfsg-5) unstable; urgency=medium
120
221 [ Markus Koschany ]
11 Section: games
22 Priority: optional
33 Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
4 Uploaders: Barry deFreese <bddebian@comcast.net>, Vincent Legout <vlegout@debian.org>
5 Build-Depends: debhelper (>= 9), dh-autoreconf,
6 libsdl-image1.2-dev, libfreetype6-dev, libxmu-dev, libxi-dev, libgl1-mesa-dev,
4 Uploaders:
5 Barry deFreese <bddebian@comcast.net>,
6 Vincent Legout <vlegout@debian.org>
7 Build-Depends:
8 debhelper (>= 9),
9 dh-autoreconf,
10 libfreetype6-dev,
11 libgl1-mesa-dev,
12 libsdl-image1.2-dev,
13 libxi-dev,
14 libxmu-dev,
715 sharutils
8 Standards-Version: 3.9.5
16 Standards-Version: 3.9.6
917 Homepage: http://brutalchess.sf.net/
1018 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/brutalchess/
11 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/brutalchess/
19 Vcs-Browser: https://anonscm.debian.org/viewvc/pkg-games/packages/trunk/brutalchess/
1220
1321 Package: brutalchess
1422 Architecture: any
15 Depends: ${shlibs:Depends}, ${misc:Depends}, fonts-dejavu
23 Depends:
24 fonts-dejavu,
25 ${misc:Depends},
26 ${shlibs:Depends}
1627 Description: 3D chess game with reflection of the chessmen
1728 Brutal Chess features full 3D graphics, an advanced particle engine, and
1829 several different levels of intelligent AI, inspired by the once popular
33 // add debugging
44 } else if(FontLoader::loadFont("sans", FONTS_DIR + string("ZEROES__.TTF"), 32)) {
55 // add debugging
6 + } else if(FontLoader::loadFont("sans", string("/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf"), 32)) {
7 + cout << "Load font: " << string("/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf") << endl;
6 + } else if(FontLoader::loadFont("sans", string("/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf"), 32)) {
7 + cout << "Load font: " << string("/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf") << endl;
88 } else {
99 cerr << "Failed to load fonts." << endl;
1010 return false;
+0
-28
debian/patches/FreeType.patch less more
0 From: Markus Koschany <apo@gambaru.de>
1 Date: Sat, 21 Dec 2013 13:09:45 +0100
2 Subject: FreeType
3
4 Bug: http://bugs.debian.org/732235
5 ---
6 src/fontloader.h | 8 ++++----
7 1 file changed, 4 insertions(+), 4 deletions(-)
8
9 diff --git a/src/fontloader.h b/src/fontloader.h
10 index 745b9eb..66bf6e7 100644
11 --- a/src/fontloader.h
12 +++ b/src/fontloader.h
13 @@ -13,10 +13,10 @@
14 #include <ft2build.h>
15 #include FT_FREETYPE_H
16
17 -#include <freetype/freetype.h>
18 -#include <freetype/ftglyph.h>
19 -#include <freetype/ftoutln.h>
20 -#include <freetype/fttrigon.h>
21 +#include <freetype2/freetype.h>
22 +#include <freetype2/ftglyph.h>
23 +#include <freetype2/ftoutln.h>
24 +#include <freetype2/fttrigon.h>
25
26 // Other Headers we'll need.
27 #include <vector>
33 04_ftbs_gcc4.3_413483.diff
44 05_use_our_fonts.diff
55 06_gcc-4.7.patch
6 FreeType.patch
76 disable-quake-pieces.patch