diff options
author | Thilo Bangert <bangert@gentoo.org> | 2009-02-05 19:30:48 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2009-02-05 19:30:48 +0000 |
commit | 17538ecf32311bfaf0affa9906371298f978ee56 (patch) | |
tree | 916d4448bbe2be7fead868d86e283573c148ed5b /sci-geosciences/tangogps | |
parent | Add a patch to build on FreeBSD and rekeyword it; bug #256859 (diff) | |
download | gentoo-2-17538ecf32311bfaf0affa9906371298f978ee56.tar.gz gentoo-2-17538ecf32311bfaf0affa9906371298f978ee56.tar.bz2 gentoo-2-17538ecf32311bfaf0affa9906371298f978ee56.zip |
version bump - now with photo geocoding support
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'sci-geosciences/tangogps')
-rw-r--r-- | sci-geosciences/tangogps/ChangeLog | 7 | ||||
-rw-r--r-- | sci-geosciences/tangogps/tangogps-0.9.6.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/sci-geosciences/tangogps/ChangeLog b/sci-geosciences/tangogps/ChangeLog index 1c5eae93e257..72c251b00ce8 100644 --- a/sci-geosciences/tangogps/ChangeLog +++ b/sci-geosciences/tangogps/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-geosciences/tangogps # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tangogps/ChangeLog,v 1.1 2009/02/01 13:06:31 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tangogps/ChangeLog,v 1.2 2009/02/05 19:30:48 bangert Exp $ + +*tangogps-0.9.6 (05 Feb 2009) + + 05 Feb 2009; Thilo Bangert <bangert@gentoo.org> +tangogps-0.9.6.ebuild: + version bump - now with photo geocoding support *tangogps-0.9.5 (01 Feb 2009) diff --git a/sci-geosciences/tangogps/tangogps-0.9.6.ebuild b/sci-geosciences/tangogps/tangogps-0.9.6.ebuild new file mode 100644 index 000000000000..02952b3a3fe6 --- /dev/null +++ b/sci-geosciences/tangogps/tangogps-0.9.6.ebuild @@ -0,0 +1,41 @@ +# 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.1 2009/02/05 19:30:48 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 + 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" +} |