diff options
author | David Seifert <soap@gentoo.org> | 2021-03-31 11:40:13 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-03-31 11:40:13 +0200 |
commit | 575a287a3272ff8d112c0b88b8a4752d363dc78f (patch) | |
tree | c442041b419113ddcbcbb936ae09b843daccafa0 /games-puzzle/greedy | |
parent | med-asound/din: bump to 50.1 (diff) | |
download | gentoo-575a287a3272ff8d112c0b88b8a4752d363dc78f.tar.gz gentoo-575a287a3272ff8d112c0b88b8a4752d363dc78f.tar.bz2 gentoo-575a287a3272ff8d112c0b88b8a4752d363dc78f.zip |
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>
Diffstat (limited to 'games-puzzle/greedy')
-rw-r--r-- | games-puzzle/greedy/greedy-0.2.0-r2.ebuild (renamed from games-puzzle/greedy/greedy-0.2.0-r1.ebuild) | 34 |
1 files 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 index dffb899aebff..37e76149bcf1 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 } |