You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libaacs/libaacs-0.11.1-r1.ebuild

50 lines
1.2 KiB

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit multilib-minimal
DESCRIPTION="Open implementation of the Advanced Access Content System (AACS) specification"
HOMEPAGE="https://www.videolan.org/developers/libaacs.html"
SRC_URI="https://downloads.videolan.org/pub/videolan/libaacs/${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86"
RDEPEND="
>=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}]
>=dev-libs/libgpg-error-1.12[${MULTILIB_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/bison
sys-devel/flex
"
DOCS=( ChangeLog KEYDB.cfg README.md )
multilib_src_configure() {
# Force Bison & flex as it doesn't work even w/ build system fixed
# https://code.videolan.org/videolan/libaacs/-/merge_requests/14
unset YACC
export LEX=flex
local myeconfargs=(
--disable-optimizations
--enable-shared
)
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
# Workaround automake bug: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=54390
mkdir -p "${BUILD_DIR}"/src/file || die
}
multilib_src_install_all() {
einstalldocs
find "${ED}" -type f -name "*.la" -delete || die
}