blob: a3e89035f562b86d2e5747edee5638978e8a6507 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/taxidraw/taxidraw-0.3.2.ebuild,v 1.4 2009/10/20 12:58:33 maekke Exp $
EAPI=2
WX_GTK_VER="2.6"
inherit eutils wxwidgets games
MY_P=TaxiDraw-${PV}
DESCRIPTION="a taxiway editor for FlightGear and X-Plane"
HOMEPAGE="http://taxidraw.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="x11-libs/wxGTK:2.6[X]
net-misc/curl"
S=${WORKDIR}/${MY_P}
PATCHES=( "${FILESDIR}"/${P}-gcc41.patch )
src_configure() {
egamesconf --with-wx-config=${WX_CONFIG}
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
prepgamesdirs
}
|