blob: 9ec5dc96b5bb56624b628762cf076987ee8cb80b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/dietlibc-0.29-r1.ebuild,v 1.3 2006/04/11 10:23:21 phreak Exp $
inherit eutils flag-o-matic
DESCRIPTION="A minimal libc"
HOMEPAGE="http://www.fefe.de/dietlibc/"
SRC_URI="mirror://kernel/linux/libs/${PN}/${P}.tar.bz2
http://dev.gentoo.org/~phreak/distfiles/${P}-patches-${PR}.tar.bz2
http://dev.gentoo.org/~hollow/distfiles/${P}-patches-${PR}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
DEPEND=""
pkg_setup() {
# We need to disable the -pie features, dietlibc won't build with pie
# enabled.
echo
einfo "dev-libs/dietlibc is having some problems with PIE support."
einfo "Therefore PIE is disabled for now!"
echo
append-flags -fno-pie
# Replace sparc64 related C[XX]FLAGS (see bug #45716)
use sparc && replace-sparc64-flags
# gcc-hppa suffers support for SSP, compilation will fail
use hppa && strip-unsupported-flags
}
src_unpack() {
unpack ${A}
cd "${S}"
use !ppc && \
EPATCH_EXCLUDE="${PN}-0.29-ppc32-userland-on-64bit.patch"
epatch "${WORKDIR}"/patches/*.patch
echo
ebegin "Preparing \${S}/lib/ssp.c"
cp -a "${WORKDIR}/tools/ssp.c" "${S}/lib"
eend $?
}
src_compile() {
local make_opt=
use debug && make_opt="DEBUG=1"
emake CFLAGS="${CFLAGS}" ${make_opt} || die "emake failed"
}
src_install() {
make install DESTDIR="${D}" || die "make install failed"
dobin "${D}"/usr/diet/bin/* || die "dobin failed"
doman "${D}"/usr/diet/man/*/* || die "doman failed"
rm -r "${D}"/usr/diet/{man,bin}
dodoc AUTHOR BUGS CAVEAT CHANGES README THANKS TODO PORTING
# Fixing a bug on ppc/ppc64, where diet is assuming the
# libraries are located at /usr/diet/lib-powerpc instead of
# /usr/diet/lib-ppc
use ppc64 && dosym /usr/diet/lib-ppc64 /usr/diet/lib-powerpc64
use ppc && dosym /usr/diet/lib-ppc /usr/diet/lib-powerpc
}
|