diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-04-30 21:33:31 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-04-30 21:33:31 +0100 |
commit | 2f8db31405fac68eea6f7257d58529243815033b (patch) | |
tree | 54259cc8988a98a10586fc0496b1f3501cd1e2a1 /games-emulation/stella | |
parent | a4e2a46beb5e4858ef27bdedbb0ff6d2ced430ad (diff) |
gentoo resync : 30.04.2018
Diffstat (limited to 'games-emulation/stella')
-rw-r--r-- | games-emulation/stella/Manifest | 2 | ||||
-rw-r--r-- | games-emulation/stella/stella-4.7.2-r1.ebuild (renamed from games-emulation/stella/stella-4.7.2.ebuild) | 26 |
2 files changed, 14 insertions, 14 deletions
diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest index a3f6a5704475..e504b14973d3 100644 --- a/games-emulation/stella/Manifest +++ b/games-emulation/stella/Manifest @@ -1,3 +1,3 @@ DIST stella-4.7.2-src.tar.xz 1715332 BLAKE2B 7b397a4e662f8db247a67ddedb314c9b11ee4e99d55768b1cd8e2587b452fab9c5d45c840bf1577833712a2c96d42985d39437d1fac16e93c35762e015ddf445 SHA512 dcfaba9b554ab08c9ba79c8e95551bc688fae4ab0ab368df11c05f3dc7c9431d32068d5dd658ec4d1aa8cb826c7205fc4f301145a149d32369833409992455e2 -EBUILD stella-4.7.2.ebuild 1368 BLAKE2B 3d24724cb9cd50ae50e7d758d0ead4f7635fa78eb13a71c2e19205244a6f9d420900855d24e74eba55ff24878313995b039e2ee531f52c5d9023152c469de760 SHA512 897cfd1b772db34fccc1d4da35f68966fe42a804c6c6ceb4907f3527d0c5181d700f5dfa6b27341a2819035dfa433590bfb674cf6d1af26a467f7b5d561f3beb +EBUILD stella-4.7.2-r1.ebuild 1327 BLAKE2B 5932b462fe8a66386fe6dcd5d1d91b46c584b943b3081e47bc0e33d34e409773cbb63034fbc55609c19649d760050833062fc7813f109677423e3b7775817baa SHA512 cc81a37cc9362b1c2e07fd4f7e6216523a45659c6395da0627089e6a5a17a47eb71432a718e32aa2911fa3f4279c2b15b948f49d742ce3776942e02930cc27cd MISC metadata.xml 329 BLAKE2B 3ee498d6ed1bda6ccdd1e6e6a7eae732766c005ae6bf4c02b09f8f5de417d9f4c20ae925a2d7d148204f0c43a4c4ef1310cd6d925dee4beb2ede0c74ae34b636 SHA512 80e6880e6edea2eab64504d6cdf4496f94f9bfb6a4ea63da347b9fb05ca3fa999d646406e22563799d8ba40c1d3d095094ea8d86a500bb490ce2034c3ff38182 diff --git a/games-emulation/stella/stella-4.7.2.ebuild b/games-emulation/stella/stella-4.7.2-r1.ebuild index fdad7813c4b1..1412860717cd 100644 --- a/games-emulation/stella/stella-4.7.2.ebuild +++ b/games-emulation/stella/stella-4.7.2-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils gnome2-utils games +EAPI=6 +inherit desktop gnome2-utils DESCRIPTION="Stella Atari 2600 VCS Emulator" HOMEPAGE="http://stella.sourceforge.net/" @@ -13,12 +13,15 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="joystick" -DEPEND="media-libs/libsdl2[joystick?,opengl,video] - media-libs/libpng:0 - sys-libs/zlib" -RDEPEND=${DEPEND} +RDEPEND=" + media-libs/libsdl2[joystick?,opengl,video] + media-libs/libpng:0= + sys-libs/zlib +" +DEPEND="${RDEPEND}" src_prepare() { + default sed -i \ -e '/INSTALL/s/-s //' \ -e '/STRIP/d' \ @@ -33,9 +36,9 @@ src_configure() { # not an autoconf script ./configure \ --prefix="/usr" \ - --bindir="${GAMES_BINDIR}" \ + --bindir="/usr/bin" \ --docdir="/usr/share/doc/${PF}" \ - --datadir="${GAMES_DATADIR}" \ + --datadir="/usr/share" \ $(use_enable joystick) \ || die } @@ -50,17 +53,14 @@ src_install() { newicon -s ${i} src/common/stella-${i}x${i}.png stella.png done domenu src/unix/stella.desktop - dohtml -r docs/* - prepgamesdirs + HTML_DOCS="docs/*" einstalldocs } pkg_preinst() { - games_pkg_preinst gnome2_icon_savelist } pkg_postinst() { - games_pkg_postinst gnome2_icon_cache_update } |