diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-27 09:58:47 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-27 09:58:47 +0000 |
commit | b981a32512a730f9daf783f4e64883fb2dc33ddb (patch) | |
tree | d937b46e4bb753d91c22b2abec7cf386080c20cc /games-arcade/koules | |
parent | use || in DEPEND to say what we really mean (Manifest recommit) (diff) | |
download | gentoo-2-b981a32512a730f9daf783f4e64883fb2dc33ddb.tar.gz gentoo-2-b981a32512a730f9daf783f4e64883fb2dc33ddb.tar.bz2 gentoo-2-b981a32512a730f9daf783f4e64883fb2dc33ddb.zip |
use || in DEPEND and RDEPEND to say what we really mean
Diffstat (limited to 'games-arcade/koules')
-rw-r--r-- | games-arcade/koules/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/koules/koules-1.4-r1.ebuild | 22 |
2 files changed, 17 insertions, 12 deletions
diff --git a/games-arcade/koules/ChangeLog b/games-arcade/koules/ChangeLog index d79f67ebd47a..388237d7e2f3 100644 --- a/games-arcade/koules/ChangeLog +++ b/games-arcade/koules/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/koules -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/koules/ChangeLog,v 1.2 2003/09/10 20:34:52 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/koules/ChangeLog,v 1.3 2004/03/27 09:58:47 mr_bones_ Exp $ + + 27 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> koules-1.4-r1.ebuild: + use || in DEPEND and RDEPEND to say what we really mean *koules-1.4-r1 (19 Aug 2003) diff --git a/games-arcade/koules/koules-1.4-r1.ebuild b/games-arcade/koules/koules-1.4-r1.ebuild index 06a97bf887ee..b2d7b9e32960 100644 --- a/games-arcade/koules/koules-1.4-r1.ebuild +++ b/games-arcade/koules/koules-1.4-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/koules/koules-1.4-r1.ebuild,v 1.3 2004/02/20 06:20:00 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/koules/koules-1.4-r1.ebuild,v 1.4 2004/03/27 09:58:47 mr_bones_ Exp $ -inherit games eutils +inherit eutils games DESCRIPTION="fast action arcade-style game w/sound and network support" HOMEPAGE="http://www.ucw.cz/~hubicka/koules/English/" @@ -14,24 +14,26 @@ KEYWORDS="x86" IUSE="X svga joystick" DEPEND=">=sys-apps/sed-4 - svga? ( media-libs/svgalib ) - X? ( virtual/x11 ) - || ( svga? ( ) X? ( ) virtual/x11 )" + || ( + svga? ( media-libs/svgalib ) + X? ( virtual/x11 ) + virtual/x11 )" RDEPEND="virtual/glibc - svga? ( media-libs/svgalib ) - X? ( virtual/x11 ) - || ( svga? ( ) X? ( ) virtual/x11 ) + || ( + svga? ( media-libs/svgalib ) + X? ( virtual/x11 ) + virtual/x11 ) || ( tcltk? ( dev-lang/tk dev-lang/tcl ) dev-util/dialog )" -S=${WORKDIR}/${PN}${PV} +S="${WORKDIR}/${PN}${PV}" src_unpack() { unpack ${A} cd ${S} - epatch ${FILESDIR}/${PV}-gcc3.patch + epatch "${FILESDIR}/${PV}-gcc3.patch" sed -i \ -e "/^KOULESDIR/s:=.*:=${GAMES_BINDIR}:" \ -e "/^SOUNDDIR/s:=.*:=${GAMES_DATADIR}/${PN}:" \ |