diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-05 11:24:54 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-05 11:24:54 +0000 |
commit | 51c837afaf6fc7f59aff838caa2e0c613d7cd9ac (patch) | |
tree | ba338140e904e55e65bc17b652a0f6a28212b057 /games-arcade/lbreakout | |
parent | EAPI 5 (diff) | |
download | gentoo-2-51c837afaf6fc7f59aff838caa2e0c613d7cd9ac.tar.gz gentoo-2-51c837afaf6fc7f59aff838caa2e0c613d7cd9ac.tar.bz2 gentoo-2-51c837afaf6fc7f59aff838caa2e0c613d7cd9ac.zip |
EAPI 5
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-arcade/lbreakout')
-rw-r--r-- | games-arcade/lbreakout/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/lbreakout/lbreakout-010315.ebuild | 14 |
2 files changed, 11 insertions, 10 deletions
diff --git a/games-arcade/lbreakout/ChangeLog b/games-arcade/lbreakout/ChangeLog index 48ac33325278..7286b2f650a9 100644 --- a/games-arcade/lbreakout/ChangeLog +++ b/games-arcade/lbreakout/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/lbreakout -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout/ChangeLog,v 1.9 2010/01/30 14:00:55 armin76 Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout/ChangeLog,v 1.10 2015/01/05 11:24:54 tupone Exp $ + + 05 Jan 2015; Tupone Alfredo <tupone@gentoo.org> lbreakout-010315.ebuild: + EAPI 5 30 Jan 2010; Raúl Porcel <armin76@gentoo.org> lbreakout-010315.ebuild: Drop ia64 keyword diff --git a/games-arcade/lbreakout/lbreakout-010315.ebuild b/games-arcade/lbreakout/lbreakout-010315.ebuild index 95b3ea14e06d..feae7127761c 100644 --- a/games-arcade/lbreakout/lbreakout-010315.ebuild +++ b/games-arcade/lbreakout/lbreakout-010315.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout/lbreakout-010315.ebuild,v 1.9 2010/01/30 14:00:55 armin76 Exp $ - +# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout/lbreakout-010315.ebuild,v 1.10 2015/01/05 11:24:54 tupone Exp $ +EAPI=5 inherit games DESCRIPTION="Breakout clone written with the SDL library" @@ -14,10 +14,9 @@ KEYWORDS="amd64 ppc x86" IUSE="" DEPEND=">=media-libs/libsdl-1.1.5" +RDEPEND="${DEPEND}" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i \ -e '/^sdir=/s:$datadir/games:$datadir:' \ -e '/^hdir=/s:/var/lib/games:$localstatedir:' \ @@ -27,8 +26,7 @@ src_unpack() { src_install() { dodir "${GAMES_STATEDIR}" - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS README ChangeLog + default dohtml lbreakout/manual/* prepgamesdirs } |