public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/gpsdrive: metadata.xml ChangeLog gpsdrive-2.10_pre7.ebuild
@ 2009-06-24  8:05 Alfredo Tupone (tupone)
  0 siblings, 0 replies; only message in thread
From: Alfredo Tupone (tupone) @ 2009-06-24  8:05 UTC (permalink / raw
  To: gentoo-commits

tupone      09/06/24 08:05:08

  Modified:             metadata.xml ChangeLog
  Added:                gpsdrive-2.10_pre7.ebuild
  Log:
  Version bump to 2.10_pre7
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  app-misc/gpsdrive/metadata.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/metadata.xml?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/metadata.xml?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/metadata.xml?r1=1.5&r2=1.6

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/gpsdrive/metadata.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- metadata.xml	27 Sep 2008 03:46:55 -0000	1.5
+++ metadata.xml	24 Jun 2009 08:05:08 -0000	1.6
@@ -12,5 +12,6 @@
   <flag name='gdal'>Include gdal and ogr support for format conversions.</flag>
   <flag name='mapnik'>Include mapnik support for custom map creation.</flag>
   <flag name='scripts'>Include some of the additional helper scripts.</flag>
+  <flag name='speech'>Include speech support.</flag>
 </use>
 </pkgmetadata>



1.31                 app-misc/gpsdrive/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/gpsdrive/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	7 Dec 2008 20:38:20 -0000	1.30
+++ ChangeLog	24 Jun 2009 08:05:08 -0000	1.31
@@ -1,6 +1,12 @@
 # ChangeLog for app-misc/gpsdrive
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gpsdrive/ChangeLog,v 1.30 2008/12/07 20:38:20 nerdboy Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gpsdrive/ChangeLog,v 1.31 2009/06/24 08:05:08 tupone Exp $
+
+*gpsdrive-2.10_pre7 (24 Jun 2009)
+
+  24 Jun 2009; Alfredo Tupone <tupone@gentoo.org> metadata.xml,
+  +gpsdrive-2.10_pre7.ebuild:
+  Version bump to 2.10_pre7
 
   07 Dec 2008; Steve Arnold <nerdboy@gentoo.org> gpsdrive-2.10_pre5.ebuild:
   Updated cmake-utils usage and removed legacy MAKEOPTS value (closes bug 



1.1                  app-misc/gpsdrive/gpsdrive-2.10_pre7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/gpsdrive-2.10_pre7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gpsdrive/gpsdrive-2.10_pre7.ebuild?rev=1.1&content-type=text/plain

Index: gpsdrive-2.10_pre7.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gpsdrive/gpsdrive-2.10_pre7.ebuild,v 1.1 2009/06/24 08:05:08 tupone Exp $
EAPI=2

inherit cmake-utils eutils fdo-mime

DESCRIPTION="GPS navigation system with NMEA and Garmin support, zoomable map display, waypoints, etc."
HOMEPAGE="http://www.gpsdrive.de/"
SRC_URI="${HOMEPAGE}/packages/${P/_/}.tar.gz"

LICENSE="GPL-2"
SLOT="0"

S=${WORKDIR}/${P/_/}

KEYWORDS="~amd64 ~ppc ~x86"
# submit bug for ppc64

IUSE="dbus debug libgda gdal mapnik scripts speech"

COMMON_DEP="sci-geosciences/gpsd
	net-misc/curl
	dev-libs/libxml2
	dev-db/sqlite:3
	x11-libs/gtk+:2
	dbus? ( dev-libs/dbus-glib )
	gdal? ( sci-libs/gdal )
	mapnik? ( sci-geosciences/mapnik )
	libgda? ( >=gnome-extra/libgda-3.0.1[postgres] )
	speech? ( app-accessibility/speech-dispatcher )"

DEPEND="${COMMON_DEP}
	dev-util/pkgconfig"

RDEPEND="${COMMON_DEP}
	sci-geosciences/openstreetmap-icons
	sci-geosciences/mapnik-world-boundaries
	media-fonts/dejavu"

src_prepare() {
	# Update mapnik font path...
	sed -i \
		-e "s:truetype/ttf-dejavu:dejavu:g" \
		-e "s:mapnik/0.5:mapnik:g" \
	    tests/gpsdriverc-in \
	    src/gpsdrive_config.c || die "sed failed"
	# Fix desktop file...
	sed -i -e "s:gpsicon:/usr/share/gpsdrive/pixmaps/gpsicon.png:g" \
	    -e "s:Graphics;Network;Geography:Application;Geography;GPS:g" \
	    data/gpsdrive.desktop || die "sed failed"
}

src_configure() {
	local mycmakeargs="${mycmakeargs}
		$(cmake-utils_use_with scripts SCRIPTS)
		$(cmake-utils_use_with mapnik MAPNIK)
		$(cmake-utils_use_with dbus DBUS)
		$(cmake-utils_use_with libgda GDA3)
		$(cmake-utils_use_with speech SPEECH)
		$(cmake-utils_use_with gdal GDAL)"
	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install
	dodoc AUTHORS ChangeLog README \
		Documentation/{CREDITS.i18n,FAQ.gpsdrive,FAQ.gpsdrive.fr,LEEME} \
		Documentation/{LISEZMOI,NMEA.txt,LISEZMOI.kismet,TODO} \
		Documentation/README.{Bluetooth,lib_map,nasamaps,tracks,kismet}
	if use mapnik ; then
		dodoc Documentation/install-mapnik-osm.txt
	else
	    rm -f "${D}"usr/bin/gpsdrive_mapnik_gentiles.py
	    rm -f "${D}"usr/share/gpsdrive/osm-template.xml
	fi
	if use scripts ; then
		dodoc Documentation/README.gpspoint2gspdrive
		if ! use gdal ; then
			rm -f "${D}"usr/bin/{gdal_slice,nasaconv}.sh
		fi
	else
		rm -f "${D}"usr/share/man/man1/gpsd_nmea.sh.1
	fi
}

pkg_postinst() {
	fdo-mime_desktop_database_update
	elog
	elog "Be sure to see the README files in /usr/share/doc/${PF}"
	elog "for information on using Kismet with gpsdrive."
	elog
	if use mapnik ; then
		elog "Using mapnik to render online map require you to"
		elog "load data into the postgis database. Follow instructions"
		elog "on http://wiki.openstreetmap.org/index.php/Mapnik"
	fi
	elog
	elog "This version also now depends on the gpsd package, and"
	elog "specific devices are supported there.  Start gpsd first,"
	elog "otherwise gpsdrive will only run in simulation mode (which"
	elog "is handy for downloading maps for another location, but"
	elog "not much else)."
	elog
}

pkg_postrm() {
	fdo-mime_desktop_database_update
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-06-24  8:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-24  8:05 [gentoo-commits] gentoo-x86 commit in app-misc/gpsdrive: metadata.xml ChangeLog gpsdrive-2.10_pre7.ebuild Alfredo Tupone (tupone)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox