diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2018-11-28 03:06:19 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-11-28 03:07:04 +0100 |
commit | d826d453eb9d096b24ad2b6e51c6baa14fc23ddb (patch) | |
tree | 3c938c099a9fd6a617381e168e9ff3a56f7299ff /dev-libs/dietlibc/dietlibc-0.34.ebuild | |
parent | dev-libs/libowfat: bump to v0.32 (diff) | |
download | gentoo-d826d453eb9d096b24ad2b6e51c6baa14fc23ddb.tar.gz gentoo-d826d453eb9d096b24ad2b6e51c6baa14fc23ddb.tar.bz2 gentoo-d826d453eb9d096b24ad2b6e51c6baa14fc23ddb.zip |
dev-libs/dietlibc: bump to v0.34
Note: Doesn't work with current binutils-2.31.1 version, see $S/FAQ
or bug 672126 for details.
Bug: https://bugs.gentoo.org/672126
Closes: https://bugs.gentoo.org/639728
Closes: https://bugs.gentoo.org/671756
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-libs/dietlibc/dietlibc-0.34.ebuild')
-rw-r--r-- | dev-libs/dietlibc/dietlibc-0.34.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/dev-libs/dietlibc/dietlibc-0.34.ebuild b/dev-libs/dietlibc/dietlibc-0.34.ebuild new file mode 100644 index 000000000000..4a35f612fa6d --- /dev/null +++ b/dev-libs/dietlibc/dietlibc-0.34.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="A libc optimized for small size" +HOMEPAGE="https://www.fefe.de/dietlibc/" +SRC_URI="https://www.fefe.de/dietlibc/${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" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + if $(tc-getLD) --version | grep -q "2.31.1"; then + ewarn "${PN} does not work with unpatched binutils-2.31.1," + ewarn "see \"${S}/FAQ\"" + ewarn "and https://bugs.gentoo.org/672126 for details." + ewarn "In the meanwhile you can install another binutils version" + ewarn "and use binutils-config to switch version." + sleep 10 + fi + fi +} + +src_prepare() { + default + + # 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 -W -Wall -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 -no-pie + + 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 +} |