x11-misc/alock: Take ownership of package
[gentoo.git] / eclass / mono.eclass
1 # Copyright 1999-2011 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: mono.eclass
6 # @MAINTAINER:
7 # dotnet@gentoo.org
8 # @BLURB: common settings and functions for mono and dotnet related packages
9 # @DESCRIPTION:
10 # The mono eclass contains common environment settings that are useful for
11 # dotnet packages.  Currently, it provides no functions, just exports
12 # MONO_SHARED_DIR and sets LC_ALL in order to prevent errors during compilation
13 # of dotnet packages.
14
15 inherit multilib
16
17 # >=mono-0.92 versions using mcs -pkg:foo-sharp require shared memory, so we set the
18 # shared dir to ${T} so that ${T}/.wapi can be used during the install process.
19 export MONO_SHARED_DIR="${T}"
20
21 # Building mono, nant and many other dotnet packages is known to fail if LC_ALL
22 # variable is not set to C. To prevent this all mono related packages will be
23 # build with LC_ALL=C (see bugs #146424, #149817)
24 export LC_ALL=C
25
26 # Monodevelop-using applications need this to be set or they will try to create config
27 # files in the user's ~ dir.
28
29 export XDG_CONFIG_HOME="${T}"
30
31 # Fix bug 83020:
32 # "Access Violations Arise When Emerging Mono-Related Packages with MONO_AOT_CACHE"
33
34 unset MONO_AOT_CACHE
35
36 egacinstall() {
37         use !prefix && has "${EAPI:-0}" 0 1 2 && ED="${D}"
38         gacutil -i "${1}" \
39                 -root "${ED}"/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         use !prefix && has "${EAPI:-0}" 0 1 2 && ED="${D}"
47         local dir finddirs=() mv_command=${mv_command:-mv}
48         if [[ -d "${ED}/usr/lib" && "$(get_libdir)" != "lib" ]]
49         then
50                 if ! [[ -d "${ED}"/usr/"$(get_libdir)" ]]
51                 then
52                         mkdir "${ED}"/usr/"$(get_libdir)" || die "Couldn't mkdir ${ED}/usr/$(get_libdir)"
53                 fi
54                 ${mv_command} "${ED}"/usr/lib/* "${ED}"/usr/"$(get_libdir)"/ || die "Moving files into correct libdir failed"
55                 rm -rf "${ED}"/usr/lib
56                 for dir in "${ED}"/usr/"$(get_libdir)"/pkgconfig "${ED}"/usr/share/pkgconfig
57                 do
58
59                         if [[ -d "${dir}" && "$(find "${dir}" -name '*.pc')" != "" ]]
60                         then
61                                 pushd "${dir}" &> /dev/null
62                                 sed  -i -r -e 's:/(lib)([^a-zA-Z0-9]|$):/'"$(get_libdir)"'\2:g' \
63                                         *.pc \
64                                         || die "Sedding some sense into pkgconfig files failed."
65                                 popd "${dir}" &> /dev/null
66                         fi
67                 done
68                 if [[ -d "${ED}/usr/bin" ]]
69                 then
70                         for exe in "${ED}/usr/bin"/*
71                         do
72                                 if [[ "$(file "${exe}")" == *"shell script text"* ]]
73                                 then
74                                         sed -r -i -e ":/lib(/|$): s:/lib(/|$):/$(get_libdir)\1:" \
75                                                 "${exe}" || die "Sedding some sense into ${exe} failed"
76                                 fi
77                         done
78                 fi
79
80         fi
81 }