commit: 575a287a3272ff8d112c0b88b8a4752d363dc78f Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Wed Mar 31 09:40:13 2021 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Wed Mar 31 09:40:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=575a287a
games-puzzle/greedy: Port to EAPI 7 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert <soap <AT> gentoo.org> ...eedy-0.2.0-r1.ebuild => greedy-0.2.0-r2.ebuild} | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/games-puzzle/greedy/greedy-0.2.0-r1.ebuild b/games-puzzle/greedy/greedy-0.2.0-r2.ebuild similarity index 62% rename from games-puzzle/greedy/greedy-0.2.0-r1.ebuild rename to games-puzzle/greedy/greedy-0.2.0-r2.ebuild index dffb899aebf..37e76149bcf 100644 --- a/games-puzzle/greedy/greedy-0.2.0-r1.ebuild +++ b/games-puzzle/greedy/greedy-0.2.0-r2.ebuild @@ -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}" - doins greedy.scores + dobin greedy + einstalldocs - dogamesbin greedy - dodoc CHANGES README TODO - - prepgamesdirs + insinto /var/games + doins greedy.scores # We need to set the permissions correctly - fperms 664 "${GAMES_STATEDIR}/greedy.scores" + fperms 664 /var/games/greedy.scores }
