gentoo-ebuilds/media-libs/a52dec/a52dec-0.7.4-r9.ebuild
David Seifert 8b47fbcc52
media-libs/a52dec: remove USE=djbfft
Closes: https://bugs.gentoo.org/282412
Signed-off-by: David Seifert <soap@gentoo.org>
2025-11-30 18:02:32 +01:00

64 lines
1.4 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic multilib-minimal
DESCRIPTION="Library for decoding ATSC A/52 streams used in DVD"
HOMEPAGE="https://liba52.sourceforge.net/"
SRC_URI="https://liba52.sourceforge.net/files/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
IUSE="oss"
PATCHES=(
"${FILESDIR}"/${P}-build.patch
"${FILESDIR}"/${P}-freebsd.patch
"${FILESDIR}"/${P}-tests-optional.patch
"${FILESDIR}"/${P}-test-hidden-symbols.patch
"${FILESDIR}"/${P}-dont-mangle-cflags.patch
"${FILESDIR}"/${P}-rm_getopt.patch
)
src_prepare() {
default
sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die # bug #466978
mv configure.{in,ac} || die
# use getopt.h from glibc/musl, bug 944997
rm src/getopt.h || die
eautoreconf
filter-flags -fprefetch-loop-arrays
}
multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
--enable-shared \
--disable-djbfft \
$(usev !oss --disable-oss)
# remove useless subdirs
if ! multilib_is_native_abi; then
sed -i \
-e 's/ src//' \
-e 's/ libao//' \
Makefile || die
fi
}
multilib_src_compile() {
emake CFLAGS="${CFLAGS}"
}
multilib_src_install_all() {
einstalldocs
dodoc HISTORY doc/liba52.txt
find "${ED}" -name '*.la' -type f -delete || die
}