blob: 88263f39f97afa16bb70d3416e2773b96517d5db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/scid/scid-3.6.24.ebuild,v 1.1 2008/07/04 06:33:16 tupone Exp $
inherit eutils games
DESCRIPTION="a free chess database application"
HOMEPAGE="http://scid.sourceforge.net/"
SRC_URI="mirror://sourceforge/scid/${P}.tar.bz2
mirror://sourceforge/scid/spelling_2008_4.zip
mirror://sourceforge/scid/ratings_2008_4.zip
mirror://sourceforge/scid/photos2007.zip
mirror://sourceforge/scid/scidlet40k.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND=">=dev-lang/tk-8.3
>=sys-libs/zlib-1.1.3"
RDEPEND="${DEPEND}
!games-board/chessdb
x11-libs/libX11
>=dev-lang/python-2.1"
DEPEND="${DEPEND}
app-arch/unzip"
S="${WORKDIR}"/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.patch
sed -i \
-e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \
tcl/config.tcl \
tcl/start.tcl \
src/scidlet.cpp || die "sed failed"
gzip ../ratings_2008_4.ssp
}
src_compile() {
./configure \
COMPILE=c++ \
LINK=c++ \
BINDIR="${D}${GAMES_BINDIR}" \
OPTIMIZE="${CXXFLAGS}" \
TCL_INCLUDE="" \
SHAREDIR="${D}${GAMES_DATADIR}/${PN}" \
# buggy makefiles bug #46110
emake -j1 all_scid || die "emake failed"
}
src_install() {
emake -j1 install_scid || die "emake install failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r sounds || die "failed installing sounds"
dodoc CHANGES ChangeLog README THANKS TODO
dohtml help/*.html
cd ..
newins spelling_2008_4.ssp spelling.ssp \
|| die "Failed installing spelling.ssp"
newins ratings_2008_4.ssp.gz ratings.ssp.gz \
|| die "Failed installing ratings.ssp"
doins *.spf \
|| die "Failed installing photos"
newins scidlet40k.sbk scidlet.sbk \
|| die "Failed installing scidlet.sbk"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "To enable speech, emerge dev-tcltk/snack"
elog "To enable some piece sets, emerge dev-tcltk/tkimg"
elog "To enable Xfcc support, emerge dev-tcltk/tdom"
}
|