diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-03-04 02:03:53 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-03-04 02:03:53 +0000 |
commit | 9affc07a7eafa5726983d3ee0ed53b9d6a6e5975 (patch) | |
tree | af6ff0a1e9a3e9ac2f61a138d27bee2abfdf8fb8 /eclass/games.eclass | |
parent | version bump - ebuild submitted by Samuli Suominen via bug #202280 (diff) | |
download | gentoo-2-9affc07a7eafa5726983d3ee0ed53b9d6a6e5975.tar.gz gentoo-2-9affc07a7eafa5726983d3ee0ed53b9d6a6e5975.tar.bz2 gentoo-2-9affc07a7eafa5726983d3ee0ed53b9d6a6e5975.zip |
punt GAMES_USE_SDL; now handled by use-based deps
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 488ba9e3af6d..fb5f4ade3ae5 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.132 2009/01/22 19:50:19 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.133 2009/03/04 02:03:53 mr_bones_ Exp $ # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -116,16 +116,6 @@ games_pkg_setup() { tc-export CC CXX [[ ${GAMES_CHECK_LICENSE} == "yes" ]] && check_license ${LICENSE} - # Make sure SDL was built in a certain way - if [[ -n ${GAMES_USE_SDL} ]] ; then - if built_with_use --missing false -o media-libs/libsdl ${GAMES_USE_SDL} ; then - eerror "You built libsdl with wrong USE flags." - eerror "Make sure you rebuild it like this:" - eerror "USE='-${GAMES_USE_SDL// / -}'" - die "your libsdl sucks" - fi - fi - enewgroup "${GAMES_GROUP}" 35 [[ ${GAMES_USER} != "root" ]] \ && enewuser "${GAMES_USER}" 35 -1 "${GAMES_PREFIX}" "${GAMES_GROUP}" |