blob: 5d06f067a90f7ac552ecf3f9e5fcd281cb058e6b (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/dietlibc-0.24.ebuild,v 1.8 2004/03/25 21:39:12 weeve Exp $
inherit eutils flag-o-matic fixheadtails gcc
DESCRIPTION="A minimal libc"
HOMEPAGE="http://www.fefe.de/dietlibc/"
SRC_URI="mirror://kernel/linux/libs/${PN}/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~hppa ~amd64 ~alpha ~ppc"
IUSE=""
DEPEND=">=sys-apps/sed-4"
src_unpack() {
unpack ${A} ; cd ${S}
epatch "${FILESDIR}/${PV}-dirent-prototype.patch"
[ $(gcc-major-version) -eq 3 ] && epatch "${FILESDIR}/gcc-33.patch"
# depending on glibc to provide guard symbols, does not work with -nostdlib building
filter-flags "-fstack-protector"
filter-flags "fstack-protector-all"
# Fix for 45716
replace-sparc64-flags
sed -i \
-e "s:^CFLAGS.*:CFLAGS = ${CFLAGS}:" \
-e "s:^prefix.*:prefix=/usr/diet:" \
-e "s:^#DESTDIR=.*:DESTDIR=${D}:" Makefile || \
die "sed Makefile failed"
# New fix for sparc64 and dietlibc, fixes bug #45601
[ "${PROFILE_ARCH}" = "sparc64" ] && \
epatch ${FILESDIR}/dietlibc-sparc64-makefile.patch
ht_fix_all
}
src_compile() {
filter-flags "-fstack-protector"
emake || die "emake failed"
}
src_install() {
make install || die "make install failed"
exeinto /usr/bin
newexe bin-$(uname -m | sed -e 's/i[4-9]86/i386/' -e 's/armv[3-6][lb]/arm/' -e 's/sparc64/sparc/')/diet-i diet || die "newexe failed"
doman diet.1 || die "doman failed"
dodoc AUTHOR BUGS CAVEAT CHANGES README THANKS TODO PORTING || \
die "dodoc failed"
}
|