diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-10-20 06:53:23 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-10-20 06:53:23 +0000 |
commit | 249bb7643d6fd6023d424bd0be6048f761381465 (patch) | |
tree | 328acb4b682826ac3894e8b89b72549dfa1ea83b /games-sports/gracer | |
parent | Add a needed fixlocalpod call to src_install spotted by Jakub Moc <jakub@gent... (diff) | |
download | gentoo-2-249bb7643d6fd6023d424bd0be6048f761381465.tar.gz gentoo-2-249bb7643d6fd6023d424bd0be6048f761381465.tar.bz2 gentoo-2-249bb7643d6fd6023d424bd0be6048f761381465.zip |
Remove gnuconfig_update
(Portage version: 2.1.2_pre3-r5)
Diffstat (limited to 'games-sports/gracer')
-rw-r--r-- | games-sports/gracer/gracer-0.1.5.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/games-sports/gracer/gracer-0.1.5.ebuild b/games-sports/gracer/gracer-0.1.5.ebuild index 591807d841c9..60ea561b1016 100644 --- a/games-sports/gracer/gracer-0.1.5.ebuild +++ b/games-sports/gracer/gracer-0.1.5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/gracer/gracer-0.1.5.ebuild,v 1.15 2006/09/27 07:21:40 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-sports/gracer/gracer-0.1.5.ebuild,v 1.16 2006/10/20 06:53:23 nyhm Exp $ -inherit gnuconfig eutils games +inherit eutils games DESCRIPTION="3D motor sports simulator" HOMEPAGE="http://gracer.sourceforge.net/" @@ -13,9 +13,8 @@ SLOT="0" KEYWORDS="amd64 ppc sparc x86" IUSE="gif jpeg png joystick" -DEPEND="|| ( ( x11-libs/libXi - x11-libs/libXmu ) - virtual/x11 ) +DEPEND="x11-libs/libXi + x11-libs/libXmu virtual/glu virtual/glut virtual/opengl @@ -34,7 +33,6 @@ src_unpack() { } src_compile() { - gnuconfig_update egamesconf \ $(use_enable joystick) \ $(use_enable gif) \ @@ -48,7 +46,7 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README prepgamesdirs } |