diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-05-02 14:13:35 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-05-02 14:13:35 +0100 |
commit | 7c7c2c9727d6b2ff30945b5aea0d575e1c406d8b (patch) | |
tree | bac2a67fb24ac0836147fe370d30e1610ae1845d /games-kids | |
parent | 2f8db31405fac68eea6f7257d58529243815033b (diff) |
gentoo resync : 02.05.2018
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/Manifest.gz | bin | 1908 -> 1911 bytes | |||
-rw-r--r-- | games-kids/memonix/Manifest | 2 | ||||
-rw-r--r-- | games-kids/memonix/memonix-1.6-r1.ebuild (renamed from games-kids/memonix/memonix-1.6.ebuild) | 35 |
3 files changed, 12 insertions, 25 deletions
diff --git a/games-kids/Manifest.gz b/games-kids/Manifest.gz Binary files differindex 5ae27c6728f9..6f8db0ca250a 100644 --- a/games-kids/Manifest.gz +++ b/games-kids/Manifest.gz diff --git a/games-kids/memonix/Manifest b/games-kids/memonix/Manifest index c2e75a0a79d6..cdb6b91a8a35 100644 --- a/games-kids/memonix/Manifest +++ b/games-kids/memonix/Manifest @@ -1,3 +1,3 @@ DIST memonix_1.6_src.tar.bz2 6949315 BLAKE2B 7af09f7a83acbfe76b1e78c431056d99cc64abff52cae7092dcabf6fa561b367c8ee99d89c17981675c1e933d3ad892c0fb7f055f820489e64a197fd1aac352e SHA512 212def9c30cd878103d4ac8b7f57c5fcaeffa74ee7ece18a993c69304de94a2ce9eea24a70af394477532ac9a0887b595e220e106239cac5e6aec5a75d1a8ff1 -EBUILD memonix-1.6.ebuild 1024 BLAKE2B 74c47c247bd0a1057459a49099a41883a57922e346c8e131704bda1955a8b183203dca5d122510ec8308445b1b4a7af1790de9202fdaacfcb39d9c0b83d44306 SHA512 6b535f49d5b10511ac0f7a6ad534cd036310ecb144aec8b4620eb78acabe83a2d530793311c06a9a29931ac51850f787e5b8e28bd7db2b621e7c2094b03564e1 +EBUILD memonix-1.6-r1.ebuild 832 BLAKE2B e44e7fa837659eae1a98363acd757f7b1c3c8751645019712a0b2af3e4f43a475ec8faa0cde5f50ad3dad1bec7ca95a4d114030e7a0ac604d8d36bbe1a09d8d1 SHA512 e18d5c876a278f1de8c0b5c46dd21a4605640886c42f5a43dd98a25a243b3394fd04995394afa41f46f4dcea2c0473076f5c5a7a7c0f493656a8333b583fa422 MISC metadata.xml 249 BLAKE2B 7113a758d7abc93accec998a8843d8ef51ca8b72d72e659e224d5cec2a1a6a63e6c0605958091532ac6e51fa0d501ca4fd9f3f4a9e55baeb31519a02971b465f SHA512 895577c3a805c40581da03057b94e3f28f05f23012bf350c1e3575847d1a0fe40bb044a46f909012a200d991a400f6389358a60e9c2b5bef0da01fb26f846118 diff --git a/games-kids/memonix/memonix-1.6.ebuild b/games-kids/memonix/memonix-1.6-r1.ebuild index d7ab208ab1ed..72187823716e 100644 --- a/games-kids/memonix/memonix-1.6.ebuild +++ b/games-kids/memonix/memonix-1.6-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit cmake-utils games +EAPI=6 +inherit cmake-utils eutils DESCRIPTION="Brain teasers, puzzle and memory games for kid's in one pack" HOMEPAGE="http://www.viewizard.com/memonix/" @@ -13,39 +13,26 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="media-libs/libsdl:0[sound,opengl,video,X] +RDEPEND=" + media-libs/libsdl:0[sound,opengl,video,X] media-libs/sdl-image[jpeg] media-libs/sdl-mixer[vorbis] - !games-kids/memonix-bin" -RDEPEND="${DEPEND}" +" +DEPEND="${RDEPEND}" -S=${WORKDIR}/MemonixSourceCode - -src_prepare() { - cmake-utils_src_prepare -} - -src_configure() { - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} +S="${WORKDIR}/MemonixSourceCode" src_install() { - exeinto "$(games_get_libdir)" + exeinto /usr/"$(get_libdir)" doexe ../${P}_build/Memonix - insinto "${GAMES_DATADIR}/${PN}" + insinto "/usr/share/${PN}" doins ../gamedata.vfs - games_make_wrapper ${PN} "$(games_get_libdir)"/Memonix "${GAMES_DATADIR}"/${PN} + make_wrapper ${PN} /usr/"$(get_libdir)"/Memonix /usr/share/${PN} newicon ../icon48.png ${PN}.png make_desktop_entry ${PN} dodoc ReadMe.txt - - prepgamesdirs } |