diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-01-20 20:37:23 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-01-20 20:37:23 +0000 |
commit | b06759c666a9929919aa31c522ef82c3208b7a94 (patch) | |
tree | ce88ac366ad488554d188f0680e2c8f3585fd196 /games-action | |
parent | Stable on sparc, kinda because of #119587 (diff) | |
download | gentoo-2-b06759c666a9929919aa31c522ef82c3208b7a94.tar.gz gentoo-2-b06759c666a9929919aa31c522ef82c3208b7a94.tar.bz2 gentoo-2-b06759c666a9929919aa31c522ef82c3208b7a94.zip |
Added modular X dependencies and closing bug #119096.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/tuxkart/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/tuxkart/tuxkart-0.4.0.ebuild | 21 |
2 files changed, 21 insertions, 7 deletions
diff --git a/games-action/tuxkart/ChangeLog b/games-action/tuxkart/ChangeLog index e14088f29024..e79a94bb5d5e 100644 --- a/games-action/tuxkart/ChangeLog +++ b/games-action/tuxkart/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/tuxkart -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/ChangeLog,v 1.10 2004/06/24 22:00:23 agriffis Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/ChangeLog,v 1.11 2006/01/20 20:37:23 wolf31o2 Exp $ + + 20 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org> tuxkart-0.4.0.ebuild: + Added modular X dependencies and closing bug #119096. *tuxkart-0.4.0 (19 Jun 2004) diff --git a/games-action/tuxkart/tuxkart-0.4.0.ebuild b/games-action/tuxkart/tuxkart-0.4.0.ebuild index 24984630660e..ce14fc5abb38 100644 --- a/games-action/tuxkart/tuxkart-0.4.0.ebuild +++ b/games-action/tuxkart/tuxkart-0.4.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 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.3 2004/10/31 05:06:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/tuxkart/tuxkart-0.4.0.ebuild,v 1.4 2006/01/20 20:37:23 wolf31o2 Exp $ inherit games @@ -14,15 +14,26 @@ KEYWORDS="alpha amd64 x86" IUSE="" RDEPEND=">=media-libs/plib-1.8.0 - virtual/x11 + || ( + ( + x11-libs/libX11 + x11-libs/libICE + x11-libs/libSM + x11-libs/libXext + x11-libs/libXmu + x11-libs/libXi ) + virtual/x11 ) virtual/opengl" DEPEND="${RDEPEND} + || ( + x11-libs/libXt + virtual/x11 ) >=sys-apps/sed-4" src_unpack() { - unpack ${A} + unpack "${A}" - cd ${S} + cd "${S}" # apparently <sys/perm.h> doesn't exist on alpha if use alpha; then sed -i \ |