mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
34 lines
788 B
Bash
34 lines
788 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Generate a list of hostnames based on country"
|
|
HOMEPAGE="https://www.morningstarsecurity.com/research/geoipgen"
|
|
SRC_URI="https://www.morningstarsecurity.com/downloads/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-lang/ruby
|
|
dev-libs/geoip
|
|
app-arch/unzip"
|
|
|
|
src_prepare() {
|
|
# fix db path
|
|
sed -i 's|/usr/local/share/|/etc/maxmind/|g' ${PN} || die
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN} || die
|
|
dodoc README CHANGELOG TODO || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "For ${PN} to work you have to download"
|
|
elog "http://www.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip"
|
|
elog "save it to /etc/maxmind and unzip it"
|
|
}
|