Gentoo Archives: gentoo-commits

From: "Thilo Bangert (bangert)" <bangert@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-geosciences/tangogps: metadata.xml ChangeLog tangogps-0.9.5.ebuild
Date: Sun, 01 Feb 2009 13:06:33
Message-Id: E1LTc1v-0003do-Oo@stork.gentoo.org
1 bangert 09/02/01 13:06:31
2
3 Added: metadata.xml ChangeLog tangogps-0.9.5.ebuild
4 Log:
5 tangogps is an easy to use, fast and lightweight mapping application
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
7
8 Revision Changes Path
9 1.1 sci-geosciences/tangogps/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/tangogps/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/tangogps/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci-geosciences</herd>
20 <maintainer>
21 <email>bangert@g.o</email>
22 <name>Thilo Bangert</name>
23 </maintainer>
24 <longdescription>
25 tangogps is an easy to use, fast and lightweight mapping application for use with or without GPS.
26
27 By default tangoGPS uses map data from the Openstreetmap project. Additionally a variety of other repositories can be easily added.
28
29 The maps are automagically downloaded and cached for offline use while you drag
30 or zoom the map. Furthermore you can conveniently pre-cache areas with
31 tangoGPS.
32 </longdescription>
33 </pkgmetadata>
34
35
36
37 1.1 sci-geosciences/tangogps/ChangeLog
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/tangogps/ChangeLog?rev=1.1&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/tangogps/ChangeLog?rev=1.1&content-type=text/plain
41
42 Index: ChangeLog
43 ===================================================================
44 # ChangeLog for sci-geosciences/tangogps
45 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
46 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tangogps/ChangeLog,v 1.1 2009/02/01 13:06:31 bangert Exp $
47
48 *tangogps-0.9.5 (01 Feb 2009)
49
50 01 Feb 2009; Thilo Bangert <bangert@g.o>
51 +files/tangogps-0.9.5-Makefile.in-honour-docdir.patch, +metadata.xml,
52 +tangogps-0.9.5.ebuild:
53 tangogps is an easy to use, fast and lightweight mapping application
54
55
56
57
58 1.1 sci-geosciences/tangogps/tangogps-0.9.5.ebuild
59
60 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/tangogps/tangogps-0.9.5.ebuild?rev=1.1&view=markup
61 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/tangogps/tangogps-0.9.5.ebuild?rev=1.1&content-type=text/plain
62
63 Index: tangogps-0.9.5.ebuild
64 ===================================================================
65 # Copyright 1999-2009 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tangogps/tangogps-0.9.5.ebuild,v 1.1 2009/02/01 13:06:31 bangert Exp $
68
69 inherit eutils
70
71 DESCRIPTION="tangogps is an easy to use, fast and lightweight mapping
72 application for use with or without GPS."
73 HOMEPAGE="http://www.tangogps.org/"
74 SRC_URI="http://www.tangogps.org/downloads/${P}.tar.gz"
75
76 LICENSE="GPL-2"
77 SLOT="0"
78 KEYWORDS="~amd64 ~x86"
79 IUSE="gps"
80
81 RDEPEND="x11-libs/gtk+
82 sys-apps/dbus
83 gnome-base/gconf
84 net-misc/curl
85 gps? ( >=sci-geosciences/gpsd-2.34 )"
86 DEPEND="sys-devel/gettext
87 ${RDEPEND}"
88
89 src_unpack() {
90 unpack ${A}
91 cd "${S}"
92 epatch "${FILESDIR}/${P}-Makefile.in-honour-docdir.patch"
93 }
94
95 src_compile() {
96 econf \
97 --docdir=/usr/share/doc/${P} \
98 || die "Configure failed!"
99
100 emake || die "Make failed!"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die "install failed"
105 }