| 1 |
# Copyright 1999-2008 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/mono.eclass,v 1.10 2008/12/26 00:37:47 loki_val Exp $
|
| 4 |
|
| 5 |
# @ECLASS: mono.eclass
|
| 6 |
# @MAINTAINER:
|
| 7 |
# dotnet@gentoo.org
|
| 8 |
# @BLURB: common settings and functions for mono and dotnet related
|
| 9 |
# packages
|
| 10 |
# @DESCRIPTION:
|
| 11 |
# The mono eclass contains common environment settings that are useful for
|
| 12 |
# dotnet packages. Currently, it provides no functions, just exports
|
| 13 |
# MONO_SHARED_DIR and sets LC_ALL in order to prevent errors during compilation
|
| 14 |
# of dotnet packages.
|
| 15 |
|
| 16 |
inherit multilib
|
| 17 |
|
| 18 |
# >=mono-0.92 versions using mcs -pkg:foo-sharp require shared memory, so we set the
|
| 19 |
# shared dir to ${T} so that ${T}/.wapi can be used during the install process.
|
| 20 |
export MONO_SHARED_DIR="${T}"
|
| 21 |
|
| 22 |
# Building mono, nant and many other dotnet packages is known to fail if LC_ALL
|
| 23 |
# variable is not set to C. To prevent this all mono related packages will be
|
| 24 |
# build with LC_ALL=C (see bugs #146424, #149817)
|
| 25 |
export LC_ALL=C
|
| 26 |
|
| 27 |
# Monodevelop-using applications need this to be set or they will try to create config
|
| 28 |
# files in the user's ~ dir.
|
| 29 |
|
| 30 |
export XDG_CONFIG_HOME="${T}"
|
| 31 |
|
| 32 |
# Fix bug 83020:
|
| 33 |
# "Access Violations Arise When Emerging Mono-Related Packages with MONO_AOT_CACHE"
|
| 34 |
|
| 35 |
unset MONO_AOT_CACHE
|
| 36 |
|
| 37 |
egacinstall() {
|
| 38 |
gacutil -i "${1}" \
|
| 39 |
-root "${D}"/usr/$(get_libdir) \
|
| 40 |
-gacdir /usr/$(get_libdir) \
|
| 41 |
-package ${2:-${GACPN:-${PN}}} \
|
| 42 |
|| die "installing ${1} into the Global Assembly Cache failed"
|
| 43 |
}
|
| 44 |
|
| 45 |
mono_multilib_comply() {
|
| 46 |
local dir finddirs=()
|
| 47 |
if [[ -d "${D}/usr/lib" && "$(get_libdir)" != "lib" ]]
|
| 48 |
then
|
| 49 |
if ! [[ -d "${D}"/usr/"$(get_libdir)" ]]
|
| 50 |
then
|
| 51 |
mkdir "${D}"/usr/"$(get_libdir)" || die "Couldn't mkdir ${D}/usr/$(get_libdir)"
|
| 52 |
fi
|
| 53 |
cp -ar "${D}"/usr/lib/* "${D}"/usr/"$(get_libdir)"/ || die "Moving files into correct libdir failed"
|
| 54 |
rm -rf "${D}"/usr/lib
|
| 55 |
for dir in "${D}"/usr/"$(get_libdir)"/pkgconfig "${D}"/usr/share/pkgconfig
|
| 56 |
do
|
| 57 |
[[ -d "${dir}" ]] && finddirs=( "${finddirs[@]}" "${dir}" )
|
| 58 |
done
|
| 59 |
if ! [[ -z "${finddirs[@]// /}" ]]
|
| 60 |
then
|
| 61 |
sed -i -r -e 's:/(lib)([^a-zA-Z0-9]|$):/'"$(get_libdir)"'\2:g' \
|
| 62 |
$(find "${finddirs[@]}" -name '*.pc') \
|
| 63 |
|| die "Sedding some sense into pkgconfig files failed."
|
| 64 |
fi
|
| 65 |
|
| 66 |
fi
|
| 67 |
}
|