summaryrefslogtreecommitdiff
blob: a6f0e11f444265c16a52dd58c8d7f92355d9469e (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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/viking-0.9.9.ebuild,v 1.2 2011/03/06 09:31:24 jlec Exp $

EAPI="1"

DESCRIPTION="Viking is a program to manage GPS data"
HOMEPAGE="http://viking.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
IUSE="gps nls"
KEYWORDS="~amd64 ~ppc ~x86"

RDEPEND="x11-libs/gtk+:2
	gps? ( sci-geosciences/gpsd )
	nls? ( sys-devel/gettext )
	net-misc/curl
	sci-geosciences/gpsbabel"
DEPEND="x11-libs/gtk+:2
	gps? ( sci-geosciences/gpsd )
	nls? ( sys-devel/gettext )
	dev-util/intltool
	dev-util/pkgconfig"

src_compile() {
	econf --enable-openstreetmap \
		--enable-expedia \
		--enable-terraserver \
		--enable-google \
		$(use_enable gps realtime-gps-tracking) \
		$(use_enable nls)

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "Install failed"
	dodoc README doc/GEOCODED-PHOTOS doc/GETTING-STARTED doc/GPSMAPPER \
		|| die "Unable to install docs"
}