summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-01-19 00:43:31 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-01-19 00:43:31 +0000
commit2752fb3f0f377c5c124b91f1aac3a269fb7b1933 (patch)
tree4e45b188cc5f13d17de063ca7704bbf80050f404 /games-sports/gracer
parentFixed dependency, bug #204959. (diff)
downloadgentoo-2-2752fb3f0f377c5c124b91f1aac3a269fb7b1933.tar.gz
gentoo-2-2752fb3f0f377c5c124b91f1aac3a269fb7b1933.tar.bz2
gentoo-2-2752fb3f0f377c5c124b91f1aac3a269fb7b1933.zip
deps actually are hard (bug #206415)
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-sports/gracer')
-rw-r--r--games-sports/gracer/ChangeLog7
-rw-r--r--games-sports/gracer/gracer-0.1.5.ebuild18
2 files changed, 14 insertions, 11 deletions
diff --git a/games-sports/gracer/ChangeLog b/games-sports/gracer/ChangeLog
index 0a5be465770c..d651bcd2fffc 100644
--- a/games-sports/gracer/ChangeLog
+++ b/games-sports/gracer/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-sports/gracer
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-sports/gracer/ChangeLog,v 1.16 2007/02/21 23:54:04 peper Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-sports/gracer/ChangeLog,v 1.17 2008/01/19 00:43:31 mr_bones_ Exp $
+
+ 19 Jan 2008; Michael Sterrett <mr_bones_@gentoo.org> gracer-0.1.5.ebuild:
+ deps actually are hard (bug #206415)
21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
Transition to Manifest2.
diff --git a/games-sports/gracer/gracer-0.1.5.ebuild b/games-sports/gracer/gracer-0.1.5.ebuild
index 60ea561b1016..76ad27115b3f 100644
--- a/games-sports/gracer/gracer-0.1.5.ebuild
+++ b/games-sports/gracer/gracer-0.1.5.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2008 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.16 2006/10/20 06:53:23 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-sports/gracer/gracer-0.1.5.ebuild,v 1.17 2008/01/19 00:43:31 mr_bones_ Exp $
inherit eutils games
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/gracer/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
-IUSE="gif jpeg png joystick"
+IUSE="joystick"
DEPEND="x11-libs/libXi
x11-libs/libXmu
@@ -19,9 +19,9 @@ DEPEND="x11-libs/libXi
virtual/glut
virtual/opengl
dev-lang/tcl
- gif? ( media-libs/giflib )
- jpeg? ( media-libs/jpeg )
- png? ( media-libs/libpng )
+ media-libs/giflib
+ media-libs/jpeg
+ media-libs/libpng
media-libs/plib"
src_unpack() {
@@ -34,10 +34,10 @@ src_unpack() {
src_compile() {
egamesconf \
+ --enable-gif \
+ --enable-jpeg \
+ --enable-png \
$(use_enable joystick) \
- $(use_enable gif) \
- $(use_enable jpeg) \
- $(use_enable png) \
|| die
sed -i \
-e 's:-lplibsl:-lplibsl -lplibul:' $(find -name Makefile) \