mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 21:43:03 -04:00
update EAPI 7 -> 8 delete duplicate files Closes: https://bugs.gentoo.org/830928 Signed-off-by: brian gloyer <brian.gloyer@gmail.com>
46 lines
767 B
Bash
46 lines
767 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit autotools
|
|
|
|
DESCRIPTION="cow client for netrek"
|
|
HOMEPAGE="https://netrek.org"
|
|
SRC_URI="https://github.com/quozl/netrek-client-cow/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/netrek-client-cow-${PV}"
|
|
|
|
# upstream has a file named check that is unrelated to tests
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
media-libs/imlib2
|
|
media-libs/libsdl
|
|
media-libs/sdl-mixer
|
|
x11-base/xorg-proto
|
|
x11-libs/libX11
|
|
x11-libs/libXxf86vm
|
|
x11-libs/libXmu
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
./autogen.sh
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
dobin netrek-client-cow
|
|
}
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-autoupdate.patch"
|
|
)
|