2020-07-06 00:03:10 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2017-01-26 09:19:41 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-07-06 00:03:10 +03:00
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit autotools
|
2017-01-26 09:19:41 +03:00
|
|
|
|
|
|
|
DESCRIPTION="Multiplayer, networked game of little tanks with really big weapons"
|
|
|
|
HOMEPAGE="http://www.nongnu.org/koth/"
|
|
|
|
SRC_URI="https://savannah.nongnu.org/download/${PN}/default.pkg/${PV}/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2019-10-12 18:52:35 +03:00
|
|
|
KEYWORDS="~alpha ~amd64 ~x86"
|
2017-01-26 09:19:41 +03:00
|
|
|
|
|
|
|
DEPEND="media-libs/libggi"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
PATCHES=(
|
2020-07-06 00:03:10 +03:00
|
|
|
"${FILESDIR}"/${P}-autotools.patch
|
|
|
|
"${FILESDIR}"/${P}-gcc.patch
|
2017-01-26 09:19:41 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
2020-07-06 00:03:10 +03:00
|
|
|
mv configure.{in,ac} || die
|
|
|
|
eautoreconf
|
2017-01-26 09:19:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2020-07-06 00:03:10 +03:00
|
|
|
default
|
|
|
|
dodoc doc/*.txt
|
|
|
|
|
2017-01-26 09:19:41 +03:00
|
|
|
insinto /etc/koth
|
|
|
|
doins src/koth.cfg
|
|
|
|
}
|