2022-08-29 00:21:43 +03:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
GST_ORG_MODULE=gst-plugins-bad
|
|
|
|
|
|
|
|
inherit gstreamer-meson
|
|
|
|
|
|
|
|
DESCRIPTION="DTS audio decoder plugin for Gstreamer"
|
2022-11-03 08:34:49 +03:00
|
|
|
KEYWORDS="amd64 ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv x86"
|
2022-08-29 00:21:43 +03:00
|
|
|
IUSE="+orc"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
>=media-libs/libdca-0.0.5-r3[${MULTILIB_USEDEP}]
|
|
|
|
orc? ( >=dev-lang/orc-0.4.17[${MULTILIB_USEDEP}] )
|
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
|
|
|
multilib_src_configure() {
|
|
|
|
local emesonargs=(
|
|
|
|
-Dgpl=enabled
|
|
|
|
)
|
|
|
|
|
|
|
|
gstreamer_multilib_src_configure
|
|
|
|
}
|