diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-27 01:08:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-27 01:08:27 +0000 |
commit | d1cf4ec59ff7a20161ef2b8226b59fbc86443107 (patch) | |
tree | 5de4d2955d662c3b9883efb8dc984bdd333430a7 /eclass/games.eclass | |
parent | Stable on amd64/ia64 wrt bug #170881. (diff) | |
download | gentoo-2-d1cf4ec59ff7a20161ef2b8226b59fbc86443107.tar.gz gentoo-2-d1cf4ec59ff7a20161ef2b8226b59fbc86443107.tar.bz2 gentoo-2-d1cf4ec59ff7a20161ef2b8226b59fbc86443107.zip |
implement $(games_get_libdir) for the multilib lamers
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 1843fc792e97..ead9e588b9ea 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -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/eclass/games.eclass,v 1.118 2006/12/20 01:38:35 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.119 2007/03/27 01:08:27 vapier Exp $ # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -32,10 +32,14 @@ export GAMES_USER=${GAMES_USER:-root} export GAMES_USER_DED=${GAMES_USER_DED:-games} export GAMES_GROUP=${GAMES_GROUP:-games} +games_get_libdir() { + echo ${GAMES_LIBDIR:-${GAMES_PREFIX}/$(get_libdir)} +} + egamesconf() { econf \ --prefix="${GAMES_PREFIX}" \ - --libdir="${GAMES_LIBDIR}" \ + --libdir="$(games_get_libdir)" \ --datadir="${GAMES_DATADIR}" \ --sysconfdir="${GAMES_SYSCONFDIR}" \ --localstatedir="${GAMES_STATEDIR}" \ @@ -82,7 +86,7 @@ prepgamesdirs() { local dir f for dir in \ "${GAMES_PREFIX}" "${GAMES_PREFIX_OPT}" "${GAMES_DATADIR}" \ - "${GAMES_SYSCONFDIR}" "${GAMES_STATEDIR}" "${GAMES_LIBDIR}" \ + "${GAMES_SYSCONFDIR}" "${GAMES_STATEDIR}" "$(games_get_libdir)" \ "${GAMES_BINDIR}" "$@" do [[ ! -d ${D}/${dir} ]] && continue @@ -105,7 +109,7 @@ prepgamesdirs() { gamesenv() { # As much as I hate doing this, we need to be a bit more flexibility with # our library directories. - local hasit=0 GAMES_LIBDIRS="" + local hasit=0 GAMES_LIBDIRS="" GAMES_LIBDIR=$(games_get_libdir) if has_multilib_profile ; then for libdir in $(get_all_libdirs) ; do if [[ ${GAMES_LIBDIR} != ${GAMES_PREFIX}/${libdir} ]] ; then @@ -118,6 +122,8 @@ gamesenv() { [[ ${hasit} == "1" ]] \ && GAMES_LIBDIRS=${GAMES_LIBDIRS:1} \ || GAMES_LIBDIRS="${GAMES_LIBDIR}:${GAMES_LIBDIRS}" + # Wish we could use doevnd here, but we dont want the env + # file to be tracked in the CONTENTS of every game cat <<-EOF > "${ROOT}"/etc/env.d/${GAMES_ENVD} LDPATH="${GAMES_LIBDIRS}" PATH="${GAMES_BINDIR}" |