diff options
Diffstat (limited to 'dev-libs/dietlibc/dietlibc-0.33_pre20130103.ebuild')
-rw-r--r-- | dev-libs/dietlibc/dietlibc-0.33_pre20130103.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-libs/dietlibc/dietlibc-0.33_pre20130103.ebuild b/dev-libs/dietlibc/dietlibc-0.33_pre20130103.ebuild deleted file mode 100644 index 82391a2d554c..000000000000 --- a/dev-libs/dietlibc/dietlibc-0.33_pre20130103.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dietlibc/dietlibc-0.33_pre20130103.ebuild,v 1.2 2014/01/16 13:51:52 jer Exp $ - -EAPI=5 -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="A libc optimized for small size" -HOMEPAGE="http://www.fefe.de/dietlibc/" -SRC_URI="http://dev.gentoo.org/~pacho/maintainer-needed/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS=" ~alpha ~amd64 ~arm ~ia64 ~mips ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="" -RDEPEND="" - -DIETHOME=/usr/diet - -src_prepare() { - # Replace sparc64 related C[XX]FLAGS (see bug #45716) - use sparc && replace-sparc64-flags - - # gcc-hppa suffers support for SSP, compilation will fail - use hppa && strip-unsupported-flags - - # Makefile does not append CFLAGS - append-flags -nostdinc -W -Wall -Wextra -Wchar-subscripts \ - -Wmissing-prototypes -Wmissing-declarations -Wno-switch \ - -Wno-unused -Wredundant-decls -fno-strict-aliasing - - # only use -nopie on archs that support it - gcc-specs-pie && append-flags -nopie - - sed -i -e 's:strip::' Makefile || die - append-flags -Wa,--noexecstack -} - -src_compile() { - emake prefix="${EPREFIX}"${DIETHOME} \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - STRIP=":" -} - -src_install() { - emake prefix="${EPREFIX}"${DIETHOME} \ - DESTDIR="${D}" \ - install-bin \ - install-headers - - dobin "${ED}"${DIETHOME}/bin/* - doman "${ED}"${DIETHOME}/man/*/* - rm -r "${ED}"${DIETHOME}/{man,bin} || die - - dodoc AUTHOR BUGS CAVEAT CHANGES README THANKS TODO PORTING -} |