dev-java/geoip-java: Initial import. Fixes bug 313437.

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
This commit is contained in:
Patrice Clement
2016-01-26 09:12:17 +00:00
parent 5c490a2ad6
commit 114c2afed7
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST geoip-java-1.3.0.zip 138673 SHA256 be987fd9ca10d1288660a09dac28a1402a89d1f8abb557ca54eeea4f552fd60e SHA512 3925a94072a97dac732f4a77f4f141e1484c630b2122b4322cb487c209adbbb30936b782579943c1c766b43ef4ad0db3e264c738ad777656706272ca53ccf85b WHIRLPOOL 614fd9c0de213bd970c7d1d10223a6767d218ae911bf534a35c350af03518adc5d0cf134fbc33e6a7fe280ff9cbc376961868451f82dbdb158d4185b7bfbb80e

View File

@@ -0,0 +1,44 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
JAVA_PKG_IUSE="source doc examples"
inherit java-pkg-2 java-pkg-simple
MY_PN="geoip-api-java"
DESCRIPTION="Java library for lookup countries by IP addresses."
HOMEPAGE="https://github.com/maxmind"
SRC_URI="https://github.com/maxmind/${MY_PN}/archive/v${PV}.zip -> ${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=virtual/jre-1.6"
DEPEND=">=virtual/jdk-1.6"
S="${WORKDIR}/${MY_PN}-${PV}"
JAVA_SRC_DIR="src"
java_prepare() {
rm -rf src/test || die
}
src_install() {
java-pkg-simple_src_install
dodoc README.md Changes.md || die
use examples && java-pkg_doexamples examples/*
}
pkg_postinst() {
einfo "Country and City data files can be downloaded here:"
einfo " http://www.maxmind.com/app/geolitecountry"
einfo " http://www.maxmind.com/app/geolitecity"
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<upstream>
<remote-id type="github">maxmind/geoip-api-java</remote-id>
</upstream>
<maintainer type="person">
<email>monsieurp@gentoo.org</email>
<name>Patrice Clement</name>
</maintainer>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
</pkgmetadata>