diff options
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}" |