diff options
Diffstat (limited to 'dev-libs/uclibc/uclibc-0.9.26.ebuild')
-rw-r--r-- | dev-libs/uclibc/uclibc-0.9.26.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-libs/uclibc/uclibc-0.9.26.ebuild b/dev-libs/uclibc/uclibc-0.9.26.ebuild new file mode 100644 index 000000000000..41ba9a67e956 --- /dev/null +++ b/dev-libs/uclibc/uclibc-0.9.26.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uclibc/uclibc-0.9.26.ebuild,v 1.1 2004/01/04 06:04:53 solar Exp $ + +inherit eutils + +MY_P="${P/ucl/uCl}" +DESCRIPTION="C library for developing embedded Linux systems" +HOMEPAGE="http://www.uclibc.org/" +SRC_URI="http://www.kernel.org/pub/linux/libs/uclibc/${MY_P}.tar.bz2" +IUSE="etdyn" +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~mips" + +DEPEND="sys-devel/gcc" +PROVIDE="virtual/glibc" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + local PIE=0 + local SSP=0 + + unpack ${A} + cd ${S} + + # fixup for install perms + sed -i -e "s:-fa:-dRf:g" Makefile + + make defconfig >/dev/null || die "could not config" + for def in UCLIBC_{HAS_LOCALE,PROFILING} DO{DEBUG,ASSERTS} SUPPORT_LD_DEBUG{,_EARLY} ; do + sed -i "s:${def}=y:# ${def} is not set:" .config + done + + if [ `use x86` ] ; then + use etdyn && PIC=1 + [ "`is-flag -fPIC`" == "true" ] && PIC=1 + fi + + [ "`is-flag -fstack-protector`" == "true" ] && SSP=1 + [ "`is-flag -fstack-protector-all`" == "true" ] && SSP=1 + + if [ "${PIC}" == 1 ] ; then + einfo "Enable Position Independent Executable support in ${P}" + sed -i -e "s:# UCLIBC_PIE_SUPPORT.*:UCLIBC_PIE_SUPPORT=y:" .config + fi + if [ "${SSP}" == 1 ]; then + einfo "Enable Stack Smashing Protections support in ${P}" + sed -i -e "s:# UCLIBC_PROPOLICE.*:UCLIBC_PROPOLICE=y:" .config + fi + + cp .config myconfig + + emake clean >/dev/null || die "could not clean" +} + +src_compile() { + mv myconfig .config + emake -j1 || die "could not make" +} + +src_install() { + emake PREFIX=${D} install || die "install failed" +} |