mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 16:08:17 +00:00
The arch and OS that matches it are obsolete. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
28 lines
736 B
Bash
28 lines
736 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit multilib-minimal
|
|
|
|
DESCRIPTION="A portable abstraction library for DVD decryption"
|
|
HOMEPAGE="https://www.videolan.org/developers/libdvdcss.html"
|
|
SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="1.2"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
|
|
IUSE="doc"
|
|
|
|
BDEPEND="doc? ( app-text/doxygen )"
|
|
|
|
multilib_src_configure() {
|
|
ECONF_SOURCE=${S} econf \
|
|
--disable-static \
|
|
$(multilib_native_use_enable doc)
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
einstalldocs
|
|
find "${ED}" -type f -name '*.la' -delete || die
|
|
}
|