blob: e331db6da3804213dbe4285bedf4e310413a7ab7 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils qt4-r2 games
DESCRIPTION="Qt version of the classic boardgame checkers"
HOMEPAGE="http://qcheckers.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE=""
DEPEND="dev-qt/qtgui:4"
RDEPEND=${DEPEND}
src_prepare() {
sed -i \
-e "s:/usr/local:${GAMES_DATADIR}:" \
common.h || die
sed -i \
-e "s:PREFIX\"/share:\"${GAMES_DATADIR}:" \
main.cc toplevel.cc || die
}
src_configure() {
qt4-r2_src_configure
}
src_install() {
dogamesbin kcheckers
insinto "${GAMES_DATADIR}"/${PN}
doins -r i18n/* themes
newicon icons/biglogo.png ${PN}.png
make_desktop_entry ${PN} KCheckers
dodoc AUTHORS ChangeLog FAQ README TODO
prepgamesdirs
}
|