mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-libs/geoip: Fix download URL (bug #611192 by Hanno Boeck).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
46
dev-libs/geoip/files/geoipupdate-r6.sh
Normal file
46
dev-libs/geoip/files/geoipupdate-r6.sh
Normal file
@@ -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
|
||||
57
dev-libs/geoip/geoip-1.6.9-r1.ebuild
Normal file
57
dev-libs/geoip/geoip-1.6.9-r1.ebuild
Normal file
@@ -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."
|
||||
}
|
||||
Reference in New Issue
Block a user