diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-02-22 14:44:24 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-02-22 14:44:24 +0000 |
commit | 4af97e8a2815906b85d23f8f0b4a83e2c4a67815 (patch) | |
tree | 31f4d4e4b24a10f0c5b33dc7447df33e239a2921 /sci-geosciences/osm2mp | |
parent | Version bump (diff) | |
download | gentoo-2-4af97e8a2815906b85d23f8f0b4a83e2c4a67815.tar.gz gentoo-2-4af97e8a2815906b85d23f8f0b4a83e2c4a67815.tar.bz2 gentoo-2-4af97e8a2815906b85d23f8f0b4a83e2c4a67815.zip |
osm2mp bump
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sci-geosciences/osm2mp')
-rw-r--r-- | sci-geosciences/osm2mp/ChangeLog | 9 | ||||
-rw-r--r-- | sci-geosciences/osm2mp/osm2mp-0.65.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/sci-geosciences/osm2mp/ChangeLog b/sci-geosciences/osm2mp/ChangeLog index 77d05ccc5b08..18fb8199f7c8 100644 --- a/sci-geosciences/osm2mp/ChangeLog +++ b/sci-geosciences/osm2mp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-geosciences/osm2mp -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm2mp/ChangeLog,v 1.1 2008/12/27 16:55:57 hanno Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm2mp/ChangeLog,v 1.2 2009/02/22 14:44:24 hanno Exp $ + +*osm2mp-0.65 (22 Feb 2009) + + 22 Feb 2009; Hanno Boeck <hanno@gentoo.org> +osm2mp-0.65.ebuild: + Version bump. *osm2mp-0.60 (27 Dec 2008) diff --git a/sci-geosciences/osm2mp/osm2mp-0.65.ebuild b/sci-geosciences/osm2mp/osm2mp-0.65.ebuild new file mode 100644 index 000000000000..0a5c782d6f8c --- /dev/null +++ b/sci-geosciences/osm2mp/osm2mp-0.65.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm2mp/osm2mp-0.65.ebuild,v 1.1 2009/02/22 14:44:24 hanno Exp $ + +DESCRIPTION="Converts openstreetmap data to mp format (used e. g. by mkgmap)" +HOMEPAGE="http://forum.openstreetmap.org/viewtopic.php?id=1162" +SRC_URI="http://garminmapsearch.com/osm/${PN}_v${PV/./}.zip" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +DEPEND="dev-perl/Template-Toolkit + virtual/perl-Getopt-Long" +RDEPEND="${DEPEND}" +S="${WORKDIR}" + +src_compile() { + sed -i -e 's:poi.cfg:/usr/share/osm2mp/poi.cfg:g' \ + -e 's:poly.cfg:/usr/share/osm2mp/poly.cfg:g' \ + -e 's:header.tpl:/usr/share/osm2mp/header.tpl:g' \ + osm2mp.pl +} + +src_install() { + dobin osm2mp.pl + insinto /usr/share/osm2mp + doins poi.cfg poly.cfg header.tpl + dodoc todo +} |