blob: 7846b736ed08a4b62f8372bcb86aeed73f12c250 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/kcheckers/kcheckers-0.8.1.ebuild,v 1.6 2009/11/21 18:21:59 maekke Exp $
EAPI=1
inherit eutils qt4 games
DESCRIPTION="Qt version of the classic boardgame checkers"
HOMEPAGE="http://kcheckers.wibix.de/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="x11-libs/qt-gui:4"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:/usr/local:${GAMES_DATADIR}:" \
common.h || die "sed common.h failed"
sed -i \
-e "s:PREFIX\"/share:\"${GAMES_DATADIR}:" \
main.cc toplevel.cc || die "sed failed"
}
src_compile() {
eqmake4
emake || die "emake failed"
}
src_install() {
dogamesbin kcheckers || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r i18n/* themes || die "doins failed"
newicon icons/biglogo.png ${PN}.png
make_desktop_entry ${PN} KCheckers
dodoc AUTHORS ChangeLog FAQ README TODO
prepgamesdirs
}
|