blob: a4d589ded8594dd597e112b6c702cee1b54f3323 (
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-apple/gcc-apple-3.5.0_p3506-r1.ebuild,v 1.2 2010/03/08 17:12:11 grobian Exp $
EAPI="3"
inherit eutils
GCC_VERS=${PV/_p*/}
APPLE_VERS=${PV/*_p/}
DESCRIPTION="Apple branch of the GNU Compiler Collection"
HOMEPAGE="http://gcc.gnu.org"
SRC_URI="http://www.opensource.apple.com/darwinsource/tarballs/other/gcc_os_35-${APPLE_VERS}.tar.gz"
LICENSE="APSL-2 GPL-2"
SLOT="35"
KEYWORDS="~ppc-macos"
IUSE="nls fortran objc nocxx"
RDEPEND=">=sys-libs/zlib-1.1.4
>=sys-libs/ncurses-5.2-r2
nls? ( sys-devel/gettext )
>=sys-devel/gcc-config-1.3.12-r4"
DEPEND="${RDEPEND}
>=sys-apps/texinfo-4.2-r4
>=sys-devel/bison-1.875
sys-devel/binutils-apple"
S=${WORKDIR}/gcc_os_35-${APPLE_VERS}
src_prepare() {
# we use our libtool
sed -i -e "s:/usr/bin/libtool:${EPREFIX}/usr/bin/libtool:" \
gcc/config/darwin.h || die "sed gcc/config/darwin.h failed"
# add prefixed Frameworks to default search paths
sed -i -e "/\"\/System\/Library\/Frameworks\"\,/i\ \ \"${EPREFIX}/Frameworks\"\, " \
gcc/config/darwin-c.c || die "sed gcc/config/darwin-c.c failed"
# Workaround deprecated "+Nc" syntax for GNU tail(1)
sed -i -e "s:tail +16c:tail -c +16:g" \
gcc/Makefile.in || die "sed gcc/Makefile.in failed."
}
src_configure() {
local langs="c"
use nocxx || langs="${langs},c++"
use fortran && langs="${langs},f77"
use objc && langs="${langs},objc"
local myconf="${myconf} \
--prefix=${EPREFIX}/usr \
--bindir=${EPREFIX}/usr/${CHOST}/gcc-bin/${GCC_VERS} \
--includedir=${EPREFIX}/usr/lib/gcc/${CHOST}/${GCC_VERS}/include \
--datadir=${EPREFIX}/usr/share/gcc-data/${CHOST}/${GCC_VERS} \
--mandir=${EPREFIX}/usr/share/gcc-data/${CHOST}/${GCC_VERS}/man \
--infodir=${EPREFIX}/usr/share/gcc-data/${CHOST}/${GCC_VERS}/info \
--with-gxx-include-dir=${EPREFIX}/usr/lib/gcc/${CHOST}/${GCC_VERS}/include/g++-v${GCC_VERS/\.*/} \
--host=${CHOST} \
--enable-version-specific-runtime-libs"
[[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}"
# Straight from the GCC install doc:
# "GCC has code to correctly determine the correct value for target
# for nearly all native systems. Therefore, we highly recommend you
# not provide a configure target when configuring a native compiler."
# Native Language Support
if use nls ; then
myconf="${myconf} --enable-nls --without-included-gettext"
else
myconf="${myconf} --disable-nls"
fi
# reasonably sane globals (hopefully)
# --disable-libunwind-exceptions needed till unwind sections get fixed. see ps.m for details
myconf="${myconf} \
--with-system-zlib \
--disable-checking \
--disable-werror \
--disable-libunwind-exceptions"
# languages to build
myconf="${myconf} --enable-languages=${langs}"
# ???
myconf="${myconf} --enable-shared --enable-threads=posix"
# make clear we're in an offset
use prefix && myconf="${myconf} --with-local-prefix=${EPREFIX}/usr"
# we don't use a GNU linker, so tell GCC where to find the linker stuff we
# want it to use
myconf="${myconf} \
--with-as=${EPREFIX}/usr/bin/as \
--with-ld=${EPREFIX}/usr/bin/ld"
mkdir -p "${WORKDIR}"/build
cd "${WORKDIR}"/build
einfo "Configuring GCC with: ${myconf//--/\n\t--}"
"${S}"/configure ${myconf} || die "conf failed"
}
src_compile() {
cd "${WORKDIR}"/build || die
make -j1 bootstrap || die "emake failed"
}
src_install() {
cd "${WORKDIR}"/build
make DESTDIR="${D}" install || die
use build && rm -rf "${ED}"/usr/{man,share}
find "${ED}" -name libiberty.a -exec rm -f {} \;
# create gcc-config entry
dodir /etc/env.d/gcc
local gcc_envd_base="/etc/env.d/gcc/${CHOST}-${GCC_VERS}"
gcc_envd_file="${ED}${gcc_envd_base}"
echo "PATH=\"${EPREFIX}/usr/${CHOST}/gcc-bin/${GCC_VERS}\"" > ${gcc_envd_file}
echo "ROOTPATH=\"${EPREFIX}/usr/${CHOST}/gcc-bin/${GCC_VERS}\"" >> ${gcc_envd_file}
LDPATH="${EPREFIX}/usr/lib/gcc/${CHOST}/${GCC_VERS}"
echo "LDPATH=\"${LDPATH}\"" >> ${gcc_envd_file}
BITS=$(${ED}/usr/${CHOST}/gcc-bin/${GCC_VERS}/gcc -dumpspecs | grep -A1 multilib: | tail -n1 | grep -o 64 | head -n1)
[[ -z ${BITS} ]] \
&& BITS="32" \
|| BITS="32 ${BITS}"
echo "GCCBITS=\"${BITS}\"" >> ${gcc_envd_file}
echo "MANPATH=\"${EPREFIX}/usr/share/gcc-data/${CHOST}/${GCC_VERS}/man\"" >> ${gcc_envd_file}
echo "INFOPATH=\"${EPREFIX}/usr/share/gcc-data/${CHOST}/${GCC_VERS}/info\"" >> ${gcc_envd_file}
echo "STDCXX_INCDIR=\"g++-v${GCC_VERS/\.*/}\"" >> ${gcc_envd_file}
}
|