blob: a24cd406dcc54f1fa73238591280b68368f26fd1 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/kfreeflight/kfreeflight-0.2.1_rc1.ebuild,v 1.5 2008/02/28 20:50:42 mr_bones_ Exp $
WANT_AUTOMAKE=1.9 # bug #206412
inherit autotools eutils kde-functions games
MY_P=${P//_/}
DESCRIPTION="GUI-Frontend for FlightGear"
HOMEPAGE="http://kfreeflight.sourceforge.net/"
SRC_URI="mirror://sourceforge/kfreeflight/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="arts"
RDEPEND="games-simulation/flightgear"
S=${WORKDIR}/${PN}-${PV%_*}
need-kde 3.5.2
src_compile() {
egamesconf \
--datadir=/usr/share \
$(use_with arts) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS NEWS TODO
rm -rf "${D}"/usr/share/applnk
newicon src/hi64-app-kfreeflight.png ${PN}.png
make_desktop_entry ${PN} KFreeFlight
prepgamesdirs
}
|