commit:     aa6cd6abddaae65a99406c30da3c521d1bf81f15
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  1 06:49:12 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Mar  1 06:49:59 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6cd6ab

dev-libs/geoip: Fix download URL (bug #611192 by Hanno Boeck).

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/geoip/files/geoipupdate-r6.sh | 46 +++++++++++++++++++++++++++
 dev-libs/geoip/geoip-1.6.9-r1.ebuild   | 57 ++++++++++++++++++++++++++++++++++
 2 files changed, 103 insertions(+)

diff --git a/dev-libs/geoip/files/geoipupdate-r6.sh 
b/dev-libs/geoip/files/geoipupdate-r6.sh
new file mode 100644
index 00000000000..83b58101663
--- /dev/null
+++ b/dev-libs/geoip/files/geoipupdate-r6.sh
@@ -0,0 +1,46 @@
+#!/bin/sh
+
+GEOIP_MIRROR="https://download.maxmind.com/download/geoip/database";
+GEOIPDIR=@PREFIX@/usr/share/GeoIP
+TMPDIR=
+
+DATABASES="
+       GeoIPv6
+       GeoLiteCity
+       GeoLiteCityv6-beta/GeoLiteCityv6
+       GeoLiteCountry/GeoIP
+       asnum/GeoIPASNum
+       asnum/GeoIPASNumv6
+"
+
+if [ "${1}" = -f ] || [ "${1}" = --force ]; then
+       force=true
+fi
+
+if [ -d "${GEOIPDIR}" ]; then
+       cd $GEOIPDIR
+       if [ -n "${DATABASES}" ]; then
+               TMPDIR=$(mktemp -d geoipupdate.XXXXXXXXXX)
+
+               echo "Updating GeoIP databases..."
+
+               for db in $DATABASES; do
+                       fname=$(basename $db)
+
+                       if [ -f "${GEOIPDIR}/${fname}.dat" ] || [ ${force} ]; 
then
+                               wget --no-verbose -t 3 -T 60 \
+                                       "${GEOIP_MIRROR}/${db}.dat.gz" \
+                                       -O "${TMPDIR}/${fname}.dat.gz"
+                               if [ $? -eq 0 ]; then
+                                       gunzip -fdc "${TMPDIR}/${fname}.dat.gz" 
> "${TMPDIR}/${fname}.dat"
+                                       mv "${TMPDIR}/${fname}.dat" 
"${GEOIPDIR}/${fname}.dat"
+                                       chmod 0644 "${GEOIPDIR}/${fname}.dat"
+                                       case ${fname} in
+                                               GeoLite*) ln -sf ${fname}.dat 
`echo ${fname} | sed 's/GeoLite/GeoIP/'`.dat ;;
+                                       esac
+                               fi
+                       fi
+               done
+               [ -d "${TMPDIR}" ] && rm -rf $TMPDIR
+       fi
+fi

diff --git a/dev-libs/geoip/geoip-1.6.9-r1.ebuild 
b/dev-libs/geoip/geoip-1.6.9-r1.ebuild
new file mode 100644
index 00000000000..5ecf50082bd
--- /dev/null
+++ b/dev-libs/geoip/geoip-1.6.9-r1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils
+
+DESCRIPTION="GeoIP Legacy C API"
+HOMEPAGE="https://github.com/maxmind/geoip-api-c";
+SRC_URI="
+       https://github.com/maxmind/${PN}-api-c/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+"
+
+# GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db
+LICENSE="LGPL-2.1 GPL-2 MaxMind2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+IUSE="static-libs"
+RESTRICT="test"
+
+DEPEND="
+       net-misc/wget
+"
+RDEPEND="
+       ${DEPEND}
+"
+
+S="${WORKDIR}/${PN}-api-c-${PV}"
+
+src_prepare() {
+       default
+
+       eautoreconf
+}
+
+src_configure() {
+       econf $(use_enable static-libs static)
+       sed -e "s|@PREFIX@|${ROOT}|g" "${FILESDIR}"/geoipupdate-r6.sh > 
geoipupdate.sh || die
+}
+
+src_install() {
+       default
+
+       dodoc AUTHORS ChangeLog NEWS.md README*
+
+       prune_libtool_files
+
+       keepdir /usr/share/GeoIP
+
+       dosbin geoipupdate.sh
+}
+
+pkg_postinst() {
+       ewarn "WARNING: Databases are no longer installed by this ebuild."
+       elog "Don't forget to run 'geoipupdate.sh -f' (or geoipupdate from"
+       elog "net-misc/geoipupdate) to populate ${ROOT}/usr/share/GeoIP/"
+       elog "with geo-located IP address databases."
+}

Reply via email to