blob: 52b3aed1013a16159492ed69900fa53dba8c9b2f (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.11.92.0.12.3-r2.ebuild,v 1.20 2004/08/14 02:27:55 vapier Exp $
DESCRIPTION="Tools necessary to build programs"
HOMEPAGE="http://sources.redhat.com/binutils/"
SRC_URI="mirror://kernel/linux/devel/binutils/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2 BINUTILS"
SLOT="0"
KEYWORDS="x86 sparc"
IUSE="nls static build"
DEPEND="virtual/libc
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${P}.tar.bz2
cd ${S}
#man pages are tarred up seperately because building them depends
#on perl, which isn't installed at Gentoo Linux bootstrap time.
mkdir man; cd man
tar xjf ${DISTDIR}/${PN}-manpages-${PV}.tar.bz2 || die
}
src_compile() {
local myconf
use nls \
&& myconf="${myconf} --without-included-gettext" \
|| myconf="${myconf} --disable-nls"
./configure --enable-shared \
--enable-64-bit-bfd \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--host=${CHOST} \
${myconf} || die
if use static
then
emake -e LDFLAGS=-all-static || die
else
emake || die
fi
if ! use build
then
#make the info pages (makeinfo included with gcc is used)
make info || die
fi
}
src_install() {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
install || die
#c++filt is included with gcc -- what are these GNU people thinking?
#but not the manpage, so leave that!
rm -f ${D}/usr/bin/c++filt #${D}/usr/share/man/man1/c++filt*
#strip has a symlink going from /usr/${CHOST}/bin/strip to /usr/bin/strip
#we should reverse it:
rm ${D}/usr/${CHOST}/bin/strip; mv ${D}/usr/bin/strip ${D}/usr/${CHOST}/bin/strip
#the strip symlink gets created in the loop below
#ar, as, ld, nm, ranlib and strip are in two places; create symlinks. This will reduce the
#size of the tbz2 significantly. We also move all the stuff in /usr/bin to /usr/${CHOST}/bin
#and create the appropriate symlinks. Things are cleaner that way.
cd ${D}/usr/bin
local x
for x in * strip
do
if [ ! -e ../${CHOST}/bin/${x} ]
then
mv $x ../${CHOST}/bin/${x}
else
rm -f $x
fi
ln -s ../${CHOST}/bin/${x} ${x}
done
cd ${S}
if ! use build
then
#install info pages
make infodir=${D}/usr/share/info install-info || die
dodoc COPYING* README
docinto bfd
dodoc bfd/ChangeLog* bfd/COPYING bfd/README bfd/PORTING bfd/TODO
docinto binutils
dodoc binutils/ChangeLog binutils/NEWS binutils/README
docinto gas
dodoc gas/ChangeLog* gas/CONTRIBUTORS gas/COPYING gas/NEWS gas/README*
docinto gprof
dodoc gprof/ChangeLog* gprof/TEST gprof/TODO
docinto ld
dodoc ld/ChangeLog* ld/README ld/NEWS ld/TODO
docinto libiberty
dodoc libiberty/ChangeLog* libiberty/COPYING.LIB libiberty/README
docinto opcodes
dodoc opcodes/ChangeLog*
#install pre-generated manpages
rm -f ${D}/usr/share/man/man1/*
doman ${S}/man/*.1
else
rm -rf ${D}/usr/share/man
fi
}
|