blob: 7e6e9849f2e29e8f267e1de3660f3b95eec7a42c (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/awale/awale-1.5.ebuild,v 1.1 2013/01/27 19:20:44 hasufell Exp $
EAPI=5
inherit autotools eutils gnome2-utils games
DESCRIPTION="Free Awale - The game of all Africa"
HOMEPAGE="http://www.nongnu.org/awale/"
SRC_URI="mirror://nongnu/awale/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="tk"
RDEPEND="tk? ( dev-lang/tcl dev-lang/tk )"
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
mv configure.in configure.ac || die
mv src/xawale.tcl src/xawale.tcl.in || die
eautoreconf
}
src_configure() {
egamesconf \
--mandir=/usr/share/man \
--with-iconsdir=/usr/share/icons/hicolor/48x48/apps \
--with-desktopdir=/usr/share/applications \
$(use_enable tk)
}
src_install() {
emake -j1 DESTDIR="${D}" install
dodoc AUTHORS ChangeLog NEWS README THANKS
prepgamesdirs
use tk && fperms +x "${GAMES_DATADIR}"/${PN}/xawale.tcl
}
pkg_preinst() {
games_pkg_preinst
gnome2_icon_savelist
}
pkg_postinst() {
games_pkg_postinst
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|