diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-12-01 22:19:28 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-12-01 22:19:28 +0000 |
commit | a19844e38c1a468b0693d80d5ccf9e72201e243e (patch) | |
tree | 09eec3e4a15e500dc250d134ff41e09d861dd05c /games-arcade | |
parent | Stable on alpha wrt bug #153645. (diff) | |
download | gentoo-2-a19844e38c1a468b0693d80d5ccf9e72201e243e.tar.gz gentoo-2-a19844e38c1a468b0693d80d5ccf9e72201e243e.tar.bz2 gentoo-2-a19844e38c1a468b0693d80d5ccf9e72201e243e.zip |
Added built_with_use check for bug #156609.
(Portage version: 2.1.2_rc2-r1)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/stepmania/ChangeLog | 5 | ||||
-rw-r--r-- | games-arcade/stepmania/stepmania-3.9.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/games-arcade/stepmania/ChangeLog b/games-arcade/stepmania/ChangeLog index 8ce5db5b8116..ca7b105a74f6 100644 --- a/games-arcade/stepmania/ChangeLog +++ b/games-arcade/stepmania/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/stepmania # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/stepmania/ChangeLog,v 1.13 2006/11/17 06:06:13 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/stepmania/ChangeLog,v 1.14 2006/12/01 22:19:28 wolf31o2 Exp $ + + 01 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org> stepmania-3.9.ebuild: + Added built_with_use check for bug #156609. 17 Nov 2006; Michael Sterrett <mr_bones_@gentoo.org> stepmania-3.9.ebuild: stable for x86 diff --git a/games-arcade/stepmania/stepmania-3.9.ebuild b/games-arcade/stepmania/stepmania-3.9.ebuild index e9379514ffbe..c1c330a0e0b4 100644 --- a/games-arcade/stepmania/stepmania-3.9.ebuild +++ b/games-arcade/stepmania/stepmania-3.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/stepmania/stepmania-3.9.ebuild,v 1.5 2006/11/17 06:06:13 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/stepmania/stepmania-3.9.ebuild,v 1.6 2006/12/01 22:19:28 wolf31o2 Exp $ inherit eutils autotools games @@ -29,6 +29,11 @@ DEPEND="gtk? ( >=x11-libs/gtk+-2.0 ) vorbis? ( media-libs/libvorbis ) virtual/opengl" +pkg_setup() { + built_with_use media-libs/libsdl opengl || \ + die "You need to compile meida-libs/libsdl with USE=opengl." +} + src_unpack() { unpack ${A} cd "${S}" |