forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtkboard-0.11_pre0.ebuild
50 lines (42 loc) · 1.02 KB
/
gtkboard-0.11_pre0.ebuild
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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils games
MY_P=${P/_}
DESCRIPTION="Board games system"
HOMEPAGE="http://gtkboard.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="gnome"
RDEPEND="x11-libs/gtk+:2
media-libs/libsdl:0[sound]
media-libs/sdl-mixer[vorbis]
gnome? ( gnome-base/libgnomeui )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc41.patch \
"${FILESDIR}"/${P}-gcc45.patch
sed -i -e "/^LIBS/s:@LIBS@:@LIBS@ -lgmodule-2.0 -lm:" \
src/Makefile.in
}
src_configure() {
egamesconf \
--disable-dependency-tracking \
--datadir="${GAMES_DATADIR}"/${PN} \
--enable-gtk2 \
--enable-sdl \
$(use_enable gnome)
}
src_install() {
emake DESTDIR="${D}" install
doicon pixmaps/${PN}.png
make_desktop_entry ${PN} Gtkboard
dodoc AUTHORS ChangeLog TODO
dohtml doc/index.html
prepgamesdirs
}