31 lines
633 B
Bash
31 lines
633 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..15} )
|
|
|
|
inherit python-r1
|
|
|
|
DESCRIPTION="geos_one loved tools"
|
|
HOMEPAGE="https://linamh.disconnected-by-peer.at"
|
|
SRC_URI="https://ftp.disconnected-by-peer.at/go/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2 GPL-3 BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
RESTRICT="mirror"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="
|
|
${PYTHON_DEPS}
|
|
app-misc/pax-utils
|
|
app-portage/portage-utils
|
|
sys-apps/portage
|
|
"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
|
|
dodoc README LICENSES AUTHORS
|
|
}
|