mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
Closes: https://bugs.gentoo.org/944990 Closes: https://bugs.gentoo.org/944157 Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/43954 Closes: https://github.com/gentoo/gentoo/pull/43954 Signed-off-by: Sam James <sam@gentoo.org>
66 lines
1.7 KiB
Bash
66 lines
1.7 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs verify-sig
|
|
|
|
DESCRIPTION="reimplement libdjb - excellent libraries from Dan Bernstein"
|
|
SRC_URI="
|
|
http://www.fefe.de/${PN}/${P}.tar.xz
|
|
verify-sig? ( http://www.fefe.de/${PN}/${P}.tar.xz.sig )
|
|
"
|
|
HOMEPAGE="https://www.fefe.de/libowfat/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
|
|
IUSE="diet"
|
|
|
|
RDEPEND="diet? ( >=dev-libs/dietlibc-0.33_pre20090721 )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-fefe )"
|
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/fefe.asc
|
|
|
|
pkg_setup() {
|
|
# Required for mult/umult64.c to be usable
|
|
append-flags -fomit-frame-pointer
|
|
}
|
|
|
|
src_compile() {
|
|
# Primary use case is for code by the same author. Which then fails with
|
|
# LTO errors. It builds a static library only, anyway. Result: LTO can be
|
|
# used if you don't upgrade the compiler. If you do, the compiler errors,
|
|
# or if you are unlucky, ICEs. Just don't use LTO, there is no point...
|
|
filter-lto
|
|
|
|
# https://bugs.gentoo.org/944157
|
|
# https://bugs.gentoo.org/944990
|
|
append-cflags -std=gnu17
|
|
|
|
# workaround for broken dependencies
|
|
emake headers
|
|
|
|
emake \
|
|
CC="$(tc-getCC)" \
|
|
AR="$(tc-getAR)" \
|
|
RANLIB="$(tc-getRANLIB)" \
|
|
CFLAGS="-I. ${CFLAGS}" \
|
|
DIET="${EPREFIX}/usr/bin/diet -Os" \
|
|
prefix="${EPREFIX}/usr" \
|
|
INCLUDEDIR="${EPREFIX}/usr/include" \
|
|
$( use diet || echo 'DIET=' )
|
|
}
|
|
|
|
src_install() {
|
|
emake \
|
|
DESTDIR="${D}" \
|
|
LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
|
|
MAN3DIR="${EPREFIX}/usr/share/man/man3" \
|
|
INCLUDEDIR="${EPREFIX}/usr/include" \
|
|
install
|
|
|
|
mv "${ED}"/usr/share/man/man3/{buffer.3,owfat-buffer.3} || die
|
|
}
|