diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-05-28 19:39:52 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-05-28 19:55:23 +0200 |
commit | 293913aa9400b5af47402c67f63e100614079e28 (patch) | |
tree | d3f078fdec02b86d7bd18357686218351c1d7eed /dev-libs/dietlibc | |
parent | dev-libs/dietlibc: Fix compilation (#644116 by Mike Hiretsky) (diff) | |
download | gentoo-293913aa9400b5af47402c67f63e100614079e28.tar.gz gentoo-293913aa9400b5af47402c67f63e100614079e28.tar.bz2 gentoo-293913aa9400b5af47402c67f63e100614079e28.zip |
dev-libs/dietlibc: Drop old
Package-Manager: Portage-2.3.38, Repoman-2.3.9
Diffstat (limited to 'dev-libs/dietlibc')
-rw-r--r-- | dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild b/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild deleted file mode 100644 index c35bb403afe4..000000000000 --- a/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="A libc optimized for small size" -HOMEPAGE="http://www.fefe.de/dietlibc/" -SRC_URI="https://dev.gentoo.org/~patrick/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~arm ~ia64 ~mips sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="" -RDEPEND="" - -DIETHOME=/usr/diet - -S=${WORKDIR}/dietlibc - -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 - - # Disable ssp for we default to it on >=gcc-4.8.3 - append-flags $(test-flags -fno-stack-protector) - - # only use -nopie on archs that support it - tc-enables-pie && append-flags -nopie - - sed -i -e 's:strip::' Makefile || die - append-flags -Wa,--noexecstack -} - -src_compile() { - emake -j1 prefix="${EPREFIX}"${DIETHOME} \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - STRIP=":" -} - -src_install() { - emake -j1 prefix="${EPREFIX}"${DIETHOME} \ - DESTDIR="${D}" \ - install-bin \ - install-headers \ - install-profiling - - dobin "${ED}"${DIETHOME}/bin/* - doman "${ED}"${DIETHOME}/man/*/* - rm -r "${ED}"${DIETHOME}/{man,bin} || die - - dodoc AUTHOR BUGS CAVEAT CHANGES README THANKS TODO PORTING -} |