| 1 |
# Copyright 1999-2013 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.5.4.ebuild,v 1.15 2013/04/21 02:31:00 vapier Exp $
|
| 4 |
|
| 5 |
PATCH_VER="1.2"
|
| 6 |
UCLIBC_VER="1.0"
|
| 7 |
|
| 8 |
# Hardened gcc 4 stuff
|
| 9 |
PIE_VER="0.4.7"
|
| 10 |
SPECS_VER="0.2.0"
|
| 11 |
SPECS_GCC_VER="4.4.3"
|
| 12 |
# arch/libc configurations known to be stable with {PIE,SSP}-by-default
|
| 13 |
PIE_GLIBC_STABLE="x86 amd64 ppc ppc64 arm ia64"
|
| 14 |
PIE_UCLIBC_STABLE="x86 arm amd64 ppc ppc64"
|
| 15 |
SSP_STABLE="amd64 x86 ppc ppc64 arm"
|
| 16 |
# uclibc need tls and nptl support for SSP support
|
| 17 |
SSP_UCLIBC_STABLE=""
|
| 18 |
#end Hardened stuff
|
| 19 |
|
| 20 |
inherit toolchain
|
| 21 |
|
| 22 |
DESCRIPTION="The GNU Compiler Collection"
|
| 23 |
|
| 24 |
LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.2+"
|
| 25 |
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
|
| 26 |
|
| 27 |
RDEPEND=""
|
| 28 |
DEPEND="${RDEPEND}
|
| 29 |
elibc_glibc? ( >=sys-libs/glibc-2.8 )
|
| 30 |
ppc? ( >=${CATEGORY}/binutils-2.17 )
|
| 31 |
ppc64? ( >=${CATEGORY}/binutils-2.17 )
|
| 32 |
>=${CATEGORY}/binutils-2.15.94"
|
| 33 |
if [[ ${CATEGORY} != cross-* ]] ; then
|
| 34 |
PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.8 )"
|
| 35 |
fi
|
| 36 |
|
| 37 |
src_unpack() {
|
| 38 |
toolchain_src_unpack
|
| 39 |
|
| 40 |
use vanilla && return 0
|
| 41 |
|
| 42 |
sed -i 's/use_fixproto=yes/:/' gcc/config.gcc #PR33200
|
| 43 |
|
| 44 |
[[ ${CHOST} == ${CTARGET} ]] && epatch "${FILESDIR}"/gcc-spec-env.patch
|
| 45 |
}
|