diff options
Diffstat (limited to 'games-puzzle/textmaze')
-rw-r--r-- | games-puzzle/textmaze/Manifest | 2 | ||||
-rw-r--r-- | games-puzzle/textmaze/textmaze-1.2-r1.ebuild (renamed from games-puzzle/textmaze/textmaze-1.2.ebuild) | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/games-puzzle/textmaze/Manifest b/games-puzzle/textmaze/Manifest index 06c39537ea42..a66fe6f1237a 100644 --- a/games-puzzle/textmaze/Manifest +++ b/games-puzzle/textmaze/Manifest @@ -1,3 +1,3 @@ DIST textmaze_v1.2.tar.gz 15827 BLAKE2B df66068bef5b39f18b03d4ce9243ebaa2ddc52f58f3d5b2d8a46ff81efd188467e1a9f13ab818fc592f25dd1acaecaba80aca153b7d3900d527cb9cc1d45c034 SHA512 f6a2733049ea461f15b40eec4a414356dbfe252d859d132278d9ea8a4efcdc6753a28817529b429bad662a2042f2f7cd5cb1f2383d9ddbf773c76b80ea2af7d9 -EBUILD textmaze-1.2.ebuild 611 BLAKE2B d0447f62a6f9736b7ad4159a66fef106120af8cec793fd2322595a63af827b90ee858c570fa0f952b9d0215197d720d3392cf89f17a3f93e119cdddcd9516b24 SHA512 bd68d5089f2de2908082b58f0959d63e7a957e30f70c91248e93d8e9dc7ec791244336455ea9e1b840af3881532ce805c3f1aa97e300e3dd225cfffceafa8ab8 +EBUILD textmaze-1.2-r1.ebuild 590 BLAKE2B 987c83c64716a66b65c6f8090325fcfebba2af2b2efba21954599fd372a671516742aaa72e88b9899f59b336d40bc1062012079270e656c90ea6367f1dbffd43 SHA512 baca7e929bc639bb20ea91a7e4cd854fbd23c39847992bd3e2c4533775ec3d4d97934cc26679403bf72bc17c45071bd480c3395f0bd31237b66eeb7e355116ca MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-puzzle/textmaze/textmaze-1.2.ebuild b/games-puzzle/textmaze/textmaze-1.2-r1.ebuild index 27d3c275cccc..959e94bd77ec 100644 --- a/games-puzzle/textmaze/textmaze-1.2.ebuild +++ b/games-puzzle/textmaze/textmaze-1.2-r1.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit games +EAPI=6 MY_P=${PN}_v${PV} DESCRIPTION="An ncurses-based maze solving game written in Perl" @@ -15,17 +14,18 @@ KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-perl/Curses" +DEPEND="" -S=${WORKDIR}/TextMaze +S="${WORKDIR}/TextMaze" src_prepare() { + default sed -i \ -e "s#/usr/local/bin/perl#/usr/bin/perl#" \ textmaze || die } src_install() { - dogamesbin textmaze - dodoc CHANGES README - prepgamesdirs + dobin textmaze + einstalldocs } |