# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header $ inherit java-pkg-2 java-pkg-simple MY_PN="GeoIPJava" DESCRIPTION="Java library for lookup countries by IP addresses." SRC_URI="http://geolite.maxmind.com/download/geoip/api/java/${MY_PN}-${PV}.zip" HOMEPAGE="http://www.maxmind.com/app/ip-location" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="example" RDEPEND=">=virtual/jre-1.4" DEPEND=">=virtual/jdk-1.4" S="${WORKDIR}/${MY_PN}-${PV}" JAVA_SRC_DIR="${S}/source" src_install() { java-pkg-simple_src_install dodoc README LICENSE Changes if use example; then insinto /usr/share/${PN} doins *.java fi }