games-puzzle/greedy: Port to EAPI 7

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2021-03-31 11:40:13 +02:00
parent a876e5a7c6
commit 575a287a32

View File

@@ -1,8 +1,9 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit toolchain-funcs games
EAPI=7
inherit toolchain-funcs
DESCRIPTION="fun little ncurses puzzle game"
HOMEPAGE="http://www.kotinet.com/juhamattin/linux/index.html"
@@ -11,30 +12,29 @@ SRC_URI="http://www.kotinet.com/juhamattin/linux/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
RDEPEND="sys-libs/ncurses:0"
DEPEND="${RDEPEND}
virtual/pkgconfig"
RDEPEND="sys-libs/ncurses:0="
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
rm -f Makefile
default
rm Makefile || die
# It wants a scores file. We need to touch one and install it.
touch greedy.scores
touch greedy.scores || die
}
src_compile() {
emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) ncurses --libs)" ${PN}
emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) ncurses --libs)" greedy
}
src_install() {
insinto "${GAMES_STATEDIR}"
dobin greedy
einstalldocs
insinto /var/games
doins greedy.scores
dogamesbin greedy
dodoc CHANGES README TODO
prepgamesdirs
# We need to set the permissions correctly
fperms 664 "${GAMES_STATEDIR}/greedy.scores"
fperms 664 /var/games/greedy.scores
}