34 lines
860 B
Bash
34 lines
860 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mkgmap/mkgmap-1995.ebuild,v 1.1 2011/08/02 16:45:45 scarabeus Exp $
|
|
|
|
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
|
|
}
|