| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.7 2005/01/13 00:48:39 eradicator Exp $
|
| 4 |
#
|
| 5 |
# Author: Jeremy Huddleston <eradicator@gentoo.org>
|
| 6 |
#
|
| 7 |
# This eclass is for all functions pertaining to handling multilib.
|
| 8 |
# configurations.
|
| 9 |
|
| 10 |
ECLASS=multilib
|
| 11 |
INHERITED="$INHERITED $ECLASS"
|
| 12 |
|
| 13 |
DESCRIPTION="Based on the ${ECLASS} eclass"
|
| 14 |
|
| 15 |
# This function simply returns the desired lib directory. With portage
|
| 16 |
# 2.0.51, we now have support for installing libraries to lib32/lib64
|
| 17 |
# to accomidate the needs of multilib systems. It's no longer a good idea
|
| 18 |
# to assume all libraries will end up in lib. Replace any (sane) instances
|
| 19 |
# where lib is named directly with $(get_libdir) if possible.
|
| 20 |
#
|
| 21 |
# Travis Tilley <lv@gentoo.org> (24 Aug 2004)
|
| 22 |
#
|
| 23 |
# Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004):
|
| 24 |
# Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set,
|
| 25 |
# fall back on old behavior. Any profile that has these set should also
|
| 26 |
# depend on a newer version of portage (not yet released) which uses these
|
| 27 |
# over CONF_LIBDIR in econf, dolib, etc...
|
| 28 |
get_libdir() {
|
| 29 |
LIBDIR_TEST=$(type econf)
|
| 30 |
if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then
|
| 31 |
# if there is an override, we want to use that... always.
|
| 32 |
CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}"
|
| 33 |
elif [ -n "$(get_abi_LIBDIR)" ]; then
|
| 34 |
CONF_LIBDIR="$(get_abi_LIBDIR)"
|
| 35 |
elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support
|
| 36 |
# will be <portage-2.0.51_pre20
|
| 37 |
CONF_LIBDIR="lib"
|
| 38 |
fi
|
| 39 |
# and of course, default to lib if CONF_LIBDIR isnt set
|
| 40 |
echo ${CONF_LIBDIR:=lib}
|
| 41 |
unset LIBDIR_TEST
|
| 42 |
}
|
| 43 |
|
| 44 |
get_multilibdir() {
|
| 45 |
if [ -n "$(get_abi_LIBDIR)" ]; then
|
| 46 |
eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org"
|
| 47 |
exit 1
|
| 48 |
fi
|
| 49 |
echo ${CONF_MULTILIBDIR:=lib32}
|
| 50 |
}
|
| 51 |
|
| 52 |
# Sometimes you need to override the value returned by get_libdir. A good
|
| 53 |
# example of this is xorg-x11, where lib32 isnt a supported configuration,
|
| 54 |
# and where lib64 -must- be used on amd64 (for applications that need lib
|
| 55 |
# to be 32bit, such as adobe acrobat). Note that this override also bypasses
|
| 56 |
# portage version sanity checking.
|
| 57 |
# get_libdir_override expects one argument, the result get_libdir should
|
| 58 |
# return:
|
| 59 |
#
|
| 60 |
# get_libdir_override lib64
|
| 61 |
#
|
| 62 |
# Travis Tilley <lv@gentoo.org> (31 Aug 2004)
|
| 63 |
get_libdir_override() {
|
| 64 |
if [ -n "$(get_abi_LIBDIR)" ]; then
|
| 65 |
eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org"
|
| 66 |
exit 1
|
| 67 |
fi
|
| 68 |
CONF_LIBDIR="$1"
|
| 69 |
CONF_LIBDIR_OVERRIDE="$1"
|
| 70 |
}
|
| 71 |
|
| 72 |
# get_abi_var <VAR> [<ABI>]
|
| 73 |
# returns the value of ${<VAR>_<ABI>} which should be set in make.defaults
|
| 74 |
#
|
| 75 |
# ex:
|
| 76 |
# CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32
|
| 77 |
#
|
| 78 |
# Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)"
|
| 79 |
# This will hopefully be added to portage soon...
|
| 80 |
#
|
| 81 |
# If <ABI> is not specified, ${ABI} is used.
|
| 82 |
# If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used.
|
| 83 |
# If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string.
|
| 84 |
#
|
| 85 |
# Jeremy Huddleston <eradicator@gentoo.org>
|
| 86 |
get_abi_var() {
|
| 87 |
local flag=${1}
|
| 88 |
local abi
|
| 89 |
if [ $# -gt 1 ]; then
|
| 90 |
abi=${2}
|
| 91 |
elif [ -n "${ABI}" ]; then
|
| 92 |
abi=${ABI}
|
| 93 |
elif [ -n "${DEFAULT_ABI}" ]; then
|
| 94 |
abi=${DEFAULT_ABI}
|
| 95 |
else
|
| 96 |
return 1
|
| 97 |
fi
|
| 98 |
|
| 99 |
local var="${flag}_${abi}"
|
| 100 |
echo ${!var}
|
| 101 |
}
|
| 102 |
|
| 103 |
get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; }
|
| 104 |
get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; }
|
| 105 |
get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; }
|
| 106 |
|
| 107 |
# Return a list of the ABIs we want to install for with
|
| 108 |
# the last one in the list being the default.
|
| 109 |
get_abi_order() {
|
| 110 |
local order=""
|
| 111 |
|
| 112 |
if [ -z "${MULTILIB_ABIS}" ]; then
|
| 113 |
echo "NOMULTILIB"
|
| 114 |
return 1
|
| 115 |
fi
|
| 116 |
|
| 117 |
if hasq multilib-pkg-force ${RESTRICT} ||
|
| 118 |
{ hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then
|
| 119 |
for x in ${MULTILIB_ABIS}; do
|
| 120 |
if [ "${x}" != "${DEFAULT_ABI}" ]; then
|
| 121 |
hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}"
|
| 122 |
fi
|
| 123 |
done
|
| 124 |
hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}"
|
| 125 |
|
| 126 |
if [ -n "${ABI_ALLOW}" ]; then
|
| 127 |
local ordera=""
|
| 128 |
for x in ${order}; do
|
| 129 |
if hasq ${x} ${ABI_ALLOW}; then
|
| 130 |
ordera="${ordera} ${x}"
|
| 131 |
fi
|
| 132 |
done
|
| 133 |
order="${ordera}"
|
| 134 |
fi
|
| 135 |
else
|
| 136 |
order="${DEFAULT_ABI}"
|
| 137 |
fi
|
| 138 |
|
| 139 |
if [ -z "${order}" ]; then
|
| 140 |
die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package."
|
| 141 |
fi
|
| 142 |
|
| 143 |
echo ${order}
|
| 144 |
return 0
|
| 145 |
}
|
| 146 |
|
| 147 |
# get_all_libdir()
|
| 148 |
# Returns a list of all the libdirs used by this profile. This includes
|
| 149 |
# those that might not be touched by the current ebuild.
|
| 150 |
get_all_libdirs() {
|
| 151 |
local libdirs="lib"
|
| 152 |
local abi
|
| 153 |
local dir
|
| 154 |
|
| 155 |
if [ -n "${MULTILIB_ABIS}" ]; then
|
| 156 |
for abi in ${MULTILIB_ABIS}; do
|
| 157 |
[ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})"
|
| 158 |
done
|
| 159 |
elif [ -n "${CONF_LIBDIR}" ]; then
|
| 160 |
for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do
|
| 161 |
[ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}"
|
| 162 |
done
|
| 163 |
fi
|
| 164 |
|
| 165 |
echo "${libdirs}"
|
| 166 |
}
|
| 167 |
|
| 168 |
# Return true if ${ABI} is the last ABI on our list (or if we're not
|
| 169 |
# using the new multilib configuration. This can be used to determine
|
| 170 |
# if we're in the last (or only) run through src_{unpack,compile,install}
|
| 171 |
is_final_abi() {
|
| 172 |
[ -z "${ABI}" ] && return 0
|
| 173 |
local ALL_ABIS=$(get_abi_order)
|
| 174 |
local LAST_ABI=${ALL_ABIS/* /}
|
| 175 |
[ "${LAST_ABI}" = "${ABI}" ]
|
| 176 |
}
|
| 177 |
|
| 178 |
# echo the number of ABIs we will be installing for
|
| 179 |
number_abis() {
|
| 180 |
get_abi_order | wc -w
|
| 181 |
}
|
| 182 |
|
| 183 |
# prep_ml_includes:
|
| 184 |
#
|
| 185 |
# Some includes (include/asm, glibc, etc) are ABI dependent. In this case,
|
| 186 |
# We can install them in different locations for each ABI and create a common
|
| 187 |
# header which includes the right one based on CDEFINE_${ABI}. If your
|
| 188 |
# package installs ABI-specific headers, just add 'prep_ml_includes' to the
|
| 189 |
# end of your src_install(). It takes a list of directories that include
|
| 190 |
# files are installed in (default is /usr/include if none are passed).
|
| 191 |
#
|
| 192 |
# Example:
|
| 193 |
# src_install() {
|
| 194 |
# ...
|
| 195 |
# prep_ml_includes /usr/qt/3/include
|
| 196 |
# }
|
| 197 |
|
| 198 |
prep_ml_includes() {
|
| 199 |
local dirs
|
| 200 |
if [ ${#} -eq 0 ]; then
|
| 201 |
dirs="/usr/include"
|
| 202 |
else
|
| 203 |
dirs="${@}"
|
| 204 |
fi
|
| 205 |
|
| 206 |
if [ $(number_abis) -gt 1 ]; then
|
| 207 |
local dir
|
| 208 |
for dir in ${dirs}; do
|
| 209 |
mv ${D}/${dir} ${D}/${dir}.${ABI}
|
| 210 |
done
|
| 211 |
|
| 212 |
if is_final_abi; then
|
| 213 |
for dir in ${dirs}; do
|
| 214 |
local args="${dir}"
|
| 215 |
local abi
|
| 216 |
for abi in $(get_abi_order); do
|
| 217 |
args="${args} $(get_abi_CDEFINE ${abi}):${dir}.${abi}"
|
| 218 |
done
|
| 219 |
create_ml_includes ${args}
|
| 220 |
done
|
| 221 |
fi
|
| 222 |
fi
|
| 223 |
}
|
| 224 |
|
| 225 |
# If you need more control than prep_ml_includes can offer (like linux-headers
|
| 226 |
# for the asm-* dirs, then use create_ml_includes. The firs argument is the
|
| 227 |
# common dir. The remaining args are of the form <symbol>:<dir> where
|
| 228 |
# <symbol> is what is put in the #ifdef for choosing that dir.
|
| 229 |
#
|
| 230 |
# Ideas for this code came from debian's sparc-linux headers package.
|
| 231 |
#
|
| 232 |
# Example:
|
| 233 |
# create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64
|
| 234 |
# create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64
|
| 235 |
create_ml_includes() {
|
| 236 |
local dest="${1}"
|
| 237 |
shift
|
| 238 |
local mlinfo="${@}"
|
| 239 |
local basedirs=$(create_ml_includes-listdirs ${mlinfo})
|
| 240 |
|
| 241 |
create_ml_includes-makedestdirs ${dest} ${basedirs}
|
| 242 |
|
| 243 |
local file
|
| 244 |
for file in $(create_ml_includes-allfiles ${basedirs}); do
|
| 245 |
local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')"
|
| 246 |
{
|
| 247 |
echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */"
|
| 248 |
#echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__"
|
| 249 |
#echo "#define __CREATE_ML_INCLUDES_STUB_${name}__"
|
| 250 |
#echo ""
|
| 251 |
|
| 252 |
local dir
|
| 253 |
for dir in ${basedirs}; do
|
| 254 |
if [ -f "${D}/${dir}/${file}" ]; then
|
| 255 |
echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})"
|
| 256 |
echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\""
|
| 257 |
echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */"
|
| 258 |
echo ""
|
| 259 |
fi
|
| 260 |
done
|
| 261 |
|
| 262 |
#echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */"
|
| 263 |
} > ${D}/${dest}/${file}
|
| 264 |
done
|
| 265 |
}
|
| 266 |
|
| 267 |
# Helper function for create_ml_includes
|
| 268 |
create_ml_includes-relative_between() {
|
| 269 |
local src="$(create_ml_includes-tidy_path ${1})"
|
| 270 |
local dst="$(create_ml_includes-tidy_path ${2})"
|
| 271 |
|
| 272 |
src=(${src//\// })
|
| 273 |
dst=(${dst//\// })
|
| 274 |
|
| 275 |
local i
|
| 276 |
for ((i=0; i<${#src[*]}; i++)); do
|
| 277 |
[ "${dst[i]}" != "${src[i]}" ] && break
|
| 278 |
done
|
| 279 |
|
| 280 |
local common=$i
|
| 281 |
|
| 282 |
for ((i=${#src[*]}; i>common; i--)); do
|
| 283 |
echo -n ../
|
| 284 |
done
|
| 285 |
|
| 286 |
for ((i=common; i<${#dst[*]}-1; i++)); do
|
| 287 |
echo -n ${dst[i]}/
|
| 288 |
done
|
| 289 |
|
| 290 |
echo -n ${dst[i]}
|
| 291 |
}
|
| 292 |
|
| 293 |
# Helper function for create_ml_includes
|
| 294 |
create_ml_includes-tidy_path() {
|
| 295 |
local removed="${1}"
|
| 296 |
|
| 297 |
if [ -n "${removed}" ]; then
|
| 298 |
# Remove multiple slashes
|
| 299 |
while [ "${removed}" != "${removed/\/\//\/}" ]; do
|
| 300 |
removed=${removed/\/\//\/}
|
| 301 |
done
|
| 302 |
|
| 303 |
# Remove . directories
|
| 304 |
while [ "${removed}" != "${removed//\/.\//\/}" ]; do
|
| 305 |
removed=${removed//\/.\//\/}
|
| 306 |
done
|
| 307 |
[ "${removed##*/}" = "." ] && removed=${removed%/*}
|
| 308 |
|
| 309 |
# Removed .. directories
|
| 310 |
while [ "${removed}" != "${removed//\/..\/}" ]; do
|
| 311 |
local p1="${removed%%\/..\/*}"
|
| 312 |
local p2="${removed#*\/..\/}"
|
| 313 |
|
| 314 |
removed="${p1%\/*}/${p2}"
|
| 315 |
done
|
| 316 |
|
| 317 |
# Remove trailing ..
|
| 318 |
[ "${removed##*/}" = ".." ] && removed=${removed%/*/*}
|
| 319 |
|
| 320 |
# Remove trailing /
|
| 321 |
[ "${removed##*/}" = "" ] && removed=${removed%/*}
|
| 322 |
|
| 323 |
echo ${removed}
|
| 324 |
fi
|
| 325 |
}
|
| 326 |
|
| 327 |
# Helper function for create_ml_includes
|
| 328 |
create_ml_includes-listdirs() {
|
| 329 |
local dirs
|
| 330 |
local data
|
| 331 |
for data in ${@}; do
|
| 332 |
dirs="${dirs} ${data/*:/}"
|
| 333 |
done
|
| 334 |
echo ${dirs:1}
|
| 335 |
}
|
| 336 |
|
| 337 |
# Helper function for create_ml_includes
|
| 338 |
create_ml_includes-makedestdirs() {
|
| 339 |
local dest=${1}
|
| 340 |
shift
|
| 341 |
local basedirs=${@}
|
| 342 |
|
| 343 |
dodir ${dest}
|
| 344 |
|
| 345 |
local basedir
|
| 346 |
for basedir in ${basedirs}; do
|
| 347 |
local dir
|
| 348 |
for dir in $(find ${D}/${basedir} -type d); do
|
| 349 |
dodir ${dest}/${dir/${D}\/${basedir}/}
|
| 350 |
done
|
| 351 |
done
|
| 352 |
}
|
| 353 |
|
| 354 |
# Helper function for create_ml_includes
|
| 355 |
create_ml_includes-allfiles() {
|
| 356 |
local basedirs=${@}
|
| 357 |
|
| 358 |
local basedir
|
| 359 |
for basedir in ${basedirs}; do
|
| 360 |
local file
|
| 361 |
for file in $(find ${D}/${basedir} -type f); do
|
| 362 |
echo ${file/${D}\/${basedir}\//}
|
| 363 |
done
|
| 364 |
done | sort | uniq
|
| 365 |
}
|
| 366 |
|
| 367 |
# Helper function for create_ml_includes
|
| 368 |
create_ml_includes-sym_for_dir() {
|
| 369 |
local dir="${1}"
|
| 370 |
shift
|
| 371 |
local data
|
| 372 |
for data in ${@}; do
|
| 373 |
if [ "${dir}" = "${data/*:/}" ]; then
|
| 374 |
echo ${data/:*/}
|
| 375 |
return 0
|
| 376 |
fi
|
| 377 |
done
|
| 378 |
echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}"
|
| 379 |
# exit because we'll likely be called from a subshell
|
| 380 |
exit 1
|
| 381 |
}
|