blob: ddc8fe32a0ca404a13f15203e8bc3f0308767de0 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit autotools subversion
DESCRIPTION="An open-source car navigation system with a routing engine"
HOMEPAGE="http://www.navit-project.org"
SRC_URI=""
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS=""
IUSE="dbus garmin gps gtk nls python sdl speechd svg"
RDEPEND="dev-libs/glib:2
garmin? ( dev-libs/libgarmin )
gtk? ( x11-libs/gtk+:2
x11-misc/xkbd )
sdl? ( media-libs/libsdl
media-libs/sdl-image
dev-games/cegui
media-libs/quesoglc )
python? ( dev-lang/python )
dbus? ( sys-apps/dbus )
gps? ( sci-geosciences/gpsd )
speechd? ( app-accessibility/speech-dispatcher )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-vcs/cvs
svg? ( || ( gnome-base/librsvg media-gfx/imagemagick[png,svg] ) )"
ESVN_REPO_URI="http://navit.svn.sourceforge.net/svnroot/navit/trunk/navit"
src_prepare() {
autopoint -f || die "autopoint failed"
eautoreconf
}
src_configure() {
local myconf
if use svg; then
if has_version gnome-base/librsvg; then
myconf="--with-svg2png-use-rsvg-convert"
else
myconf="--with-svg2png-use-convert"
fi
else
myconf="--disable-svg2png"
fi
econf $(use_enable garmin) \
$(use_enable gps libgps) \
$(use_enable gtk gui-gtk) \
$(use_enable sdl gui-sdl) \
$(use_enable nls) \
$(use_enable dbus binding-dbus) \
$(use_enable python binding-python) \
$(use_enable speechd speech-speechd) \
--disable-graphics-qt-painter \
--disable-samplemap \
${myconf}
}
src_install () {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS ChangeLog README || die "dodoc failed"
}
|