blob: 8e6c1c684910cf245b95df69b99c1572bb1d1632 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-hppa64/gcc-hppa64-3.3.2-r1.ebuild,v 1.5 2006/06/06 01:28:21 eradicator Exp $
inherit eutils
# Variables
MYARCH="$(echo ${PN} | cut -d- -f2)"
TMP_P="${P/-${MYARCH}/}"
TMP_PN="${PN/-${MYARCH}/}"
I="/usr"
DESCRIPTION="Gcc for 64bit hppa kernels"
HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html"
SRC_URI="ftp://gcc.gnu.org/pub/gcc/releases/${TMP_P}/${TMP_P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="-* hppa"
IUSE="build"
DEPEND="virtual/libc
>=sys-devel/binutils-hppa64-2.14.90.0.7
>=sys-devel/binutils-2.14.90.0.7
|| ( app-admin/eselect-compiler >=sys-devel/gcc-config-1.3.1 )"
RDEPEND="virtual/libc
|| ( app-admin/eselect-compiler >=sys-devel/gcc-config-1.3.1 )
>=sys-libs/zlib-1.1.4
>=sys-apps/texinfo-4.2-r4
!build? ( >=sys-libs/ncurses-5.2-r2 )"
TARGET=hppa64-linux
version_patch() {
[ ! -f "$1" ] && return 1
[ -z "$2" ] && return 1
sed -e "s:@GENTOO@:$2:g" ${1} > ${T}/${1##*/}
epatch ${T}/${1##*/}
}
src_unpack() {
unpack ${TMP_P}.tar.bz2
cd ${WORKDIR}
ln -s ${TMP_P} ${P}
cd ${S}
# Make gcc's version info specific to Gentoo
if [ -z "${PP_VER}" ]; then
version_patch ${FILESDIR}/${TMP_P}-gentoo-branding.patch \
"(Gentoo Linux ${PVR})" || die "Failed Branding"
fi
epatch ${FILESDIR}/${TMP_P}-rtl-optimization.patch
}
src_compile() {
cd ${WORKDIR}
# Build in a separate build tree
mkdir -p ${WORKDIR}/build
cd ${WORKDIR}/build
einfo "Configuring GCC..."
addwrite "/dev/zero"
${S}/configure --prefix=${I} \
--build=hppa-linux \
--host=hppa-linux \
--disable-shared \
--without-libc \
--enable-languages=c \
--target=${TARGET} \
${myconf} || die
einfo "Building GCC..."
S="${WORKDIR}/build" \
emake CPATH=/usr/include CFLAGS="${CFLAGS}" || die
}
src_install() {
# Do allow symlinks in ${I}/lib/gcc-lib/${CHOST}/${PV}/include as
# this can break the build.
for x in cd ${WORKDIR}/build/gcc/include/*
do
if [ -L ${x} ]
then
rm -f ${x}
fi
done
einfo "Installing GCC..."
# Do the 'make install' from the build directory
cd ${WORKDIR}/build
S="${WORKDIR}/build" \
make prefix=${D}${I} \
FAKE_ROOT="${D}" \
install || die
#Remove unneeded files
for i in lib/libiberty.a man share include info
do
rm -R ${D}/usr/${i}
done
}
|