mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
50 lines
1015 B
Bash
50 lines
1015 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools flag-o-matic toolchain-funcs
|
|
|
|
DESCRIPTION="Programs Crypto/Network/Multipurpose Library"
|
|
HOMEPAGE="http://mixter.void.ru/"
|
|
SRC_URI="http://mixter.void.ru/${P/.}.tgz"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
IUSE="static-libs"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-fix-pattern.patch
|
|
"${FILESDIR}"/${P}-gentoo-r1.patch
|
|
"${FILESDIR}"/${P}-libnet.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
mv configure.{in,ac} || die
|
|
|
|
sed -i \
|
|
-e 's/expf/libmix_expf/g' \
|
|
-e 's/logf/libmix_logf/g' \
|
|
aes/saferp.c || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# -Werror=lto-type-mismatch
|
|
# https://bugs.gentoo.org/855875
|
|
# No upstream bug report -- upstream website doesn't resolve and no
|
|
# other contact method.
|
|
filter-lto
|
|
|
|
tc-export CC CXX
|
|
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
--without-net2
|
|
}
|