blob: 2cfe0d907c2b1d896b9d3bd37487746090187702 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tangogps/tangogps-0.9.6.ebuild,v 1.2 2009/02/08 16:05:35 bangert Exp $
inherit eutils
DESCRIPTION="tangogps is an easy to use, fast and lightweight mapping
application for use with or without GPS."
HOMEPAGE="http://www.tangogps.org/"
SRC_URI="http://www.tangogps.org/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gps"
RDEPEND="x11-libs/gtk+
sys-apps/dbus
gnome-base/gconf
net-misc/curl
media-libs/libexif
gps? ( >=sci-geosciences/gpsd-2.34 )"
DEPEND="sys-devel/gettext
${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-0.9.5-Makefile.in-honour-docdir.patch"
}
src_compile() {
econf \
--docdir=/usr/share/doc/${P} \
|| die "Configure failed!"
emake || die "Make failed!"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|