# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=4 JAVA_ANT_ENCODING=UTF-8 inherit java-pkg-2 java-ant-2 DESCRIPTION="Tool to create garmin maps" HOMEPAGE="http://www.mkgmap.org.uk" SRC_URI="http://www.mkgmap.org.uk/snapshots/${PN}-r${PV}-src.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=">=virtual/jdk-1.6" RDEPEND=">=virtual/jre-1.6" S="${WORKDIR}/${PN}-r${PV}" src_compile() { eant dist || die } src_install() { java-pkg_newjar "dist/${PN}.jar" || die "java-pkg_newjar failed" java-pkg_dolauncher "${PN}" --jar "${PN}.jar" || die "java-pkg_dolauncher failed" dodoc dist/README dist/doc/Credits dist/doc/*.txt doman dist/doc/mkgmap.1 }