diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-17 16:43:57 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-17 16:43:57 +0000 |
commit | 2b6d9e8cb69109bc62f42ead256ee1670a1b175d (patch) | |
tree | 4895e0e4943f7eee16179f5ec80a95f1ce8e34d3 /games-emulation/openmsx | |
parent | EAPI 5 (diff) | |
download | gentoo-2-2b6d9e8cb69109bc62f42ead256ee1670a1b175d.tar.gz gentoo-2-2b6d9e8cb69109bc62f42ead256ee1670a1b175d.tar.bz2 gentoo-2-2b6d9e8cb69109bc62f42ead256ee1670a1b175d.zip |
EAPI 5
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-emulation/openmsx')
-rw-r--r-- | games-emulation/openmsx/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/openmsx/openmsx-0.9.1.ebuild | 13 |
2 files changed, 11 insertions, 9 deletions
diff --git a/games-emulation/openmsx/ChangeLog b/games-emulation/openmsx/ChangeLog index 63065b3edf9e..fe91506461e0 100644 --- a/games-emulation/openmsx/ChangeLog +++ b/games-emulation/openmsx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/openmsx -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.49 2014/05/15 16:39:09 ulm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.50 2015/01/17 16:43:57 tupone Exp $ + + 17 Jan 2015; Tupone Alfredo <tupone@gentoo.org> openmsx-0.9.1.ebuild: + EAPI 5 15 May 2014; Ulrich Müller <ulm@gentoo.org> openmsx-0.9.1.ebuild: Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to diff --git a/games-emulation/openmsx/openmsx-0.9.1.ebuild b/games-emulation/openmsx/openmsx-0.9.1.ebuild index f5f14b4a0e4a..f6ce679fff86 100644 --- a/games-emulation/openmsx/openmsx-0.9.1.ebuild +++ b/games-emulation/openmsx/openmsx-0.9.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.9.1.ebuild,v 1.5 2014/05/15 16:39:09 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.9.1.ebuild,v 1.6 2015/01/17 16:43:57 tupone Exp $ -EAPI=2 +EAPI=5 inherit eutils games DESCRIPTION="MSX emulator that aims for perfection" @@ -22,6 +22,7 @@ DEPEND="dev-lang/tcl media-libs/sdl-image[png] media-libs/sdl-ttf virtual/opengl" +RDEPEND="${DEPEND}" src_prepare() { sed -i \ @@ -38,8 +39,7 @@ src_prepare() { src_compile() { emake \ CXXFLAGS="${CXXFLAGS}" \ - INSTALL_SHARE_DIR="${GAMES_DATADIR}"/${PN} \ - || die + INSTALL_SHARE_DIR="${GAMES_DATADIR}"/${PN} } src_install() { @@ -47,9 +47,8 @@ src_install() { INSTALL_BINARY_DIR="${D}${GAMES_BINDIR}" \ INSTALL_SHARE_DIR="${D}${GAMES_DATADIR}"/${PN} \ INSTALL_DOC_DIR="${D}"/usr/share/doc/${PF} \ - install || die "emake install failed" + install dodoc README - prepalldocs prepgamesdirs } |