diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-03-06 21:33:52 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-03-06 21:33:52 +0000 |
commit | 4af1381721cdbb9788541b7dfe9161966f0e5b2b (patch) | |
tree | ec143953607f9ee3a938bc9e17acd7d7ad301c4d /games-rpg | |
parent | Build on raspberry-pi (diff) | |
download | gentoo-2-4af1381721cdbb9788541b7dfe9161966f0e5b2b.tar.gz gentoo-2-4af1381721cdbb9788541b7dfe9161966f0e5b2b.tar.bz2 gentoo-2-4af1381721cdbb9788541b7dfe9161966f0e5b2b.zip |
EAPI 5
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/xu4/ChangeLog | 7 | ||||
-rw-r--r-- | games-rpg/xu4/xu4-0.9.ebuild | 13 |
2 files changed, 11 insertions, 9 deletions
diff --git a/games-rpg/xu4/ChangeLog b/games-rpg/xu4/ChangeLog index bde7316e80d8..f8a486befa78 100644 --- a/games-rpg/xu4/ChangeLog +++ b/games-rpg/xu4/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-rpg/xu4 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/xu4/ChangeLog,v 1.10 2014/05/15 16:59:05 ulm Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/xu4/ChangeLog,v 1.11 2015/03/06 21:33:52 tupone Exp $ + + 06 Mar 2015; Tupone Alfredo <tupone@gentoo.org> xu4-0.9.ebuild: + EAPI 5 15 May 2014; Ulrich Müller <ulm@gentoo.org> xu4-0.9.ebuild: Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to diff --git a/games-rpg/xu4/xu4-0.9.ebuild b/games-rpg/xu4/xu4-0.9.ebuild index 56f35d912fb7..9c45d83cf6e6 100644 --- a/games-rpg/xu4/xu4-0.9.ebuild +++ b/games-rpg/xu4/xu4-0.9.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-rpg/xu4/xu4-0.9.ebuild,v 1.13 2014/05/15 16:59:05 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/xu4/xu4-0.9.ebuild,v 1.14 2015/03/06 21:33:52 tupone Exp $ -EAPI=2 +EAPI=5 inherit eutils games DESCRIPTION="A remake of the computer game Ultima IV" @@ -55,8 +55,7 @@ src_compile() { E_CFLAGS="${CFLAGS}" \ bindir="${GAMES_BINDIR}" \ datadir="/usr/share" \ - libdir="$(games_get_libdir)" \ - || die + libdir="$(games_get_libdir)" } src_install() { @@ -66,9 +65,9 @@ src_install() { bindir="${D}${GAMES_BINDIR}" \ datadir="${D}/usr/share" \ libdir="${D}$(games_get_libdir)" \ - install || die + install dodoc AUTHORS README doc/*txt "${WORKDIR}/u4-dos/ULTIMA4/"*TXT insinto "$(games_get_libdir)/u4" - doins "${WORKDIR}/"*zip || die + doins "${WORKDIR}/"*zip prepgamesdirs } |