# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm2mp/osm2mp-0.80.ebuild,v 1.2 2010/05/11 01:00:59 jer 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 || die "sed failed" } src_install() { newbin osm2mp.pl osm2mp || die insinto /usr/share/osm2mp doins poi.cfg poly.cfg header.tpl || die dodoc todo || die }