diff options
Diffstat (limited to 'games-puzzle/arrows')
-rw-r--r-- | games-puzzle/arrows/Manifest | 2 | ||||
-rw-r--r-- | games-puzzle/arrows/arrows-0.6-r1.ebuild (renamed from games-puzzle/arrows/arrows-0.6.ebuild) | 21 |
2 files changed, 12 insertions, 11 deletions
diff --git a/games-puzzle/arrows/Manifest b/games-puzzle/arrows/Manifest index e28c70664e2e..14cbc0307882 100644 --- a/games-puzzle/arrows/Manifest +++ b/games-puzzle/arrows/Manifest @@ -1,3 +1,3 @@ DIST arrows-0.6.tar.gz 53374 BLAKE2B ba31d4ef1bc6e48ada197a13a359004a661a6dcf8875933da2a74f57ad90c3b0d422fd4c2427c4eb340fb26870952ebaa679ff8b0f88d7470f012bc3b8c0f868 SHA512 f6c55d616283ad25d9d830440deaa11de81bccfc2d8eabe627104626ea111d986e522f73d61e5aed58476cc34a3e2b3fe2a20ab1538b7ecef04ecb941f34d83e -EBUILD arrows-0.6.ebuild 930 BLAKE2B 913b8955e2c7577c1541aae747d8ae3d18d4cc592e2cf44b5bca4f1c3a5c24dbbe7acabaf7abf963af21e8453a0bf3b1988ca6a3cf9593d5f7101e4e8702acfc SHA512 e35045325188f8019c696414f65f98d541c8ac47692f791e82b5895180ce1b9016f661e8d179938919e957b22d3f5e38c35d4931b1f572d784aaf938de4663f2 +EBUILD arrows-0.6-r1.ebuild 895 BLAKE2B 2aab21a3b6e89451fe1972cd0eace456542641a47bde688958ee0602c75bce6b1fde432603c17c41e97ece3535a71eea7ad4da586dfce99928c4dac224e6e15e SHA512 bf8e71f225251531348c42b99cbd2718a9c68975e26f66f5b8ca16418f0efe4c0664bf00c7d86986d1e3bbc5fef344d413ba824ea03ea2b7131a29278c00d9cc MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-puzzle/arrows/arrows-0.6.ebuild b/games-puzzle/arrows/arrows-0.6-r1.ebuild index 33023848a4c7..5e3b5c6834b5 100644 --- a/games-puzzle/arrows/arrows-0.6.ebuild +++ b/games-puzzle/arrows/arrows-0.6-r1.ebuild @@ -1,10 +1,9 @@ -# 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 -DESCRIPTION="simple maze-like game where you navigate around and destroy arrows" +DESCRIPTION="Simple maze-like game where you navigate around and destroy arrows" HOMEPAGE="http://noreason.ca/?file=software" SRC_URI="http://noreason.ca/data/${P}.tar.gz" @@ -15,12 +14,15 @@ IUSE="" RDEPEND=">=x11-libs/gtk+-2.4:2" DEPEND="${RDEPEND} - virtual/pkgconfig" + virtual/pkgconfig +" src_prepare() { + default + # Modify path to data sed -i \ - -e "s:arrfl:${GAMES_DATADIR}/${PN}/arrfl:" \ + -e "s:arrfl:/usr/share/${PN}/arrfl:" \ -e 's:nm\[9:nm[35:' \ -e 's:nm\[6:nm[30:' \ -e 's:nm\[7:nm[31:' \ @@ -39,9 +41,8 @@ src_compile() { } src_install() { - dogamesbin arrows - insinto "${GAMES_DATADIR}/${PN}" + dobin arrows + insinto "/usr/share/${PN}" doins arrfl* - dodoc README - prepgamesdirs + einstalldocs } |