diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-17 15:38:17 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-17 15:38:17 +0000 |
commit | 7df0b36176eb6ec7b6f31cfb4b657654f0aa4c02 (patch) | |
tree | 93e5881bb336adce846ee4e16527d5a6ee8aa83b /games-simulation/lincity/lincity-1.12.1.ebuild | |
parent | Update SRC_URI. (diff) | |
download | gentoo-2-7df0b36176eb6ec7b6f31cfb4b657654f0aa4c02.tar.gz gentoo-2-7df0b36176eb6ec7b6f31cfb4b657654f0aa4c02.tar.bz2 gentoo-2-7df0b36176eb6ec7b6f31cfb4b657654f0aa4c02.zip |
fix deps for bug #82318
(Portage version: 2.0.51-r15)
Diffstat (limited to 'games-simulation/lincity/lincity-1.12.1.ebuild')
-rw-r--r-- | games-simulation/lincity/lincity-1.12.1.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/games-simulation/lincity/lincity-1.12.1.ebuild b/games-simulation/lincity/lincity-1.12.1.ebuild index 7401deb88d4b..a477b9fe62e9 100644 --- a/games-simulation/lincity/lincity-1.12.1.ebuild +++ b/games-simulation/lincity/lincity-1.12.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity/lincity-1.12.1.ebuild,v 1.1 2004/10/20 03:20:36 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity/lincity-1.12.1.ebuild,v 1.2 2005/02/17 15:38:17 mr_bones_ Exp $ inherit games @@ -8,18 +8,17 @@ DESCRIPTION="city/country simulation game for X and Linux SVGALib" HOMEPAGE="http://lincity.sourceforge.net/" SRC_URI="mirror://sourceforge/lincity/${P}.tar.gz" -KEYWORDS="x86 ppc amd64" LICENSE="GPL-2" SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="nls svga X" -IUSE="nls X svga" - +# dep fix (bug #82318) DEPEND="virtual/libc nls? ( sys-devel/gettext ) - || ( - svga? ( media-libs/svgalib ) - X? ( virtual/x11 ) - virtual/x11 )" + svga? ( media-libs/svgalib ) + X? ( virtual/x11 ) + !X? ( !svga? ( virtual/x11 ) )" src_compile() { local myconf= @@ -31,8 +30,8 @@ src_compile() { --disable-dependency-tracking \ --with-gzip \ $(use_enable nls) \ - $(use_with X x) \ $(use_with svga) \ + $(use_with X x) \ ${myconf} \ || die emake || die "emake failed" |