diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-02 11:04:35 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-02 11:04:35 +0000 |
commit | a9ac494425196e218ea17c03482dde8fbae91187 (patch) | |
tree | 04236afa0ceaed01a18f55860151ea18096b7d33 /games-action | |
parent | Drop old. (diff) | |
download | gentoo-2-a9ac494425196e218ea17c03482dde8fbae91187.tar.gz gentoo-2-a9ac494425196e218ea17c03482dde8fbae91187.tar.bz2 gentoo-2-a9ac494425196e218ea17c03482dde8fbae91187.zip |
EAPI 4
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/tuxkart/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/tuxkart/tuxkart-0.4.0.ebuild | 18 |
2 files changed, 12 insertions, 13 deletions
diff --git a/games-action/tuxkart/ChangeLog b/games-action/tuxkart/ChangeLog index bf9341cb25ae..c519b1450640 100644 --- a/games-action/tuxkart/ChangeLog +++ b/games-action/tuxkart/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/tuxkart -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/ChangeLog,v 1.12 2006/12/01 19:56:48 wolf31o2 Exp $ +# Copyright 2002-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/ChangeLog,v 1.13 2015/01/02 11:04:35 tupone Exp $ + + 02 Jan 2015; Tupone Alfredo <tupone@gentoo.org> tuxkart-0.4.0.ebuild: + EAPI 4 01 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org> tuxkart-0.4.0.ebuild: Removing old virtual/x11 dependency. diff --git a/games-action/tuxkart/tuxkart-0.4.0.ebuild b/games-action/tuxkart/tuxkart-0.4.0.ebuild index a3948a9d046f..e261e21fe80d 100644 --- a/games-action/tuxkart/tuxkart-0.4.0.ebuild +++ b/games-action/tuxkart/tuxkart-0.4.0.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/tuxkart-0.4.0.ebuild,v 1.5 2006/12/01 19:56:48 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/tuxkart-0.4.0.ebuild,v 1.6 2015/01/02 11:04:35 tupone Exp $ +EAPI=4 inherit games DESCRIPTION="A racing game starring Tux, the linux penguin" @@ -24,10 +25,7 @@ RDEPEND=">=media-libs/plib-1.8.0 DEPEND="${RDEPEND} x11-libs/libXt" -src_unpack() { - unpack ${A} - - cd "${S}" +src_prepare() { # apparently <sys/perm.h> doesn't exist on alpha if use alpha; then sed -i \ @@ -43,14 +41,12 @@ src_unpack() { || die "sed src/Makefile.in failed" } -src_compile() { - egamesconf --datadir="${GAMES_DATADIR_BASE}" || die - emake || die "emake failed" +src_configure() { + egamesconf --datadir="${GAMES_DATADIR_BASE}" } src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS CHANGES README + default dohtml doc/*.html rm -rf "${D}/usr/share/tuxkart/" |