blob: e79778654a19f25c295b451c0fcdd585672dd68e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.5.ebuild,v 1.4 2005/05/04 23:25:00 vapier Exp $
#
# don't monkey with this ebuild unless contacting portage devs.
# period.
#
inherit eutils flag-o-matic eutils toolchain-funcs multilib
DESCRIPTION="sandbox'd LD_PRELOAD hack"
SRC_URI="mirror://gentoo/${P}.tar.bz2
http://dev.gentoo.org/~azarah/sandbox/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
#KEYWORDS=" alpha amd64 arm hppa ia64 mips ppc ppc-macos ppc64 s390 sh sparc x86"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
RESTRICT="multilib-pkg-force"
DEPEND="virtual/libc"
has_old_amd64_multilib() {
if has_m32 && [[ ${CONF_MULTILIBDIR} == "lib32" ]] ; then
export SANDBOX_MULTILIB=0
else
export SANDBOX_MULTILIB=1
fi
return ${SANDBOX_MULTILIB}
}
src_unpack() {
if has_multilib_profile ; then
for ABI in $(get_install_abis); do
unpack ${A}
cd ${WORKDIR}
einfo "Unpacking sandbox for ABI=${ABI}..."
mv ${S} ${S%/}-${ABI} || die "failed moving \$S to ${ABI}"
done
else
if has_old_amd64_multilib ; then
unpack ${A}
mv ${S} lib32
fi
unpack ${A}
fi
}
abi_fail_check() {
local ABI=$1
if [[ ${ABI} == "x86" ]] ; then
echo
eerror "Building failed for ABI=x86!. This usually means a broken"
eerror "multilib setup. Please fix that before filling a bugreport"
eerror "against sandbox."
echo
fi
}
src_compile() {
filter-lfs-flags #90228
if has_multilib_profile ; then
OABI="${ABI}"
export CFLAGS="${CFLAGS} -DSB_HAVE_64BIT_ARCH"
for ABI in $(get_install_abis); do
export ABI
cd ${S}-${ABI}
einfo "Configuring sandbox for ABI=${ABI}..."
econf --libdir="/usr/$(get_libdir)" || {
abi_fail_check "${ABI}"
die "econf failed for ${ABI}"
}
einfo "Building sandbox for ABI=${ABI}..."
emake || {
abi_fail_check "${ABI}"
die "emake failed for ${ABI}"
}
done
ABI="${OABI}"
else
econf || die "econf failed"
emake || die "emake failed"
if has_old_amd64_multilib ; then
cd ${WORKDIR}/lib32
append-flags -m32
econf --libdir=/usr/${CONF_MULTILIBDIR} || die "econf m32 failed"
emake || die "emake m32 failed"
fi
fi
}
src_install() {
if has_multilib_profile; then
OABI="${ABI}"
for ABI in $(get_install_abis); do
export ABI
cd ${S}-${ABI}
einfo "Installing sandbox for ABI=${ABI}..."
make DESTDIR="${D}" install || die "make install failed for ${ABI}"
done
ABI="${OABI}"
else
if has_old_amd64_multilib ; then
make install DESTDIR="${D}" -C ${WORKDIR}/lib32 || die "install m32 failed"
fi
make install DESTDIR="${D}" || die "install failed"
fi
}
|