mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 15:43:55 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
65 lines
1.3 KiB
Bash
65 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs portability multilib-minimal
|
|
|
|
MY_PN=${PN/-/_}
|
|
MY_P=${MY_PN}_${PV}
|
|
|
|
DESCRIPTION="The Linux Audio Developer's Simple Plugin API"
|
|
HOMEPAGE="https://www.ladspa.org/"
|
|
SRC_URI="https://www.ladspa.org/download/${MY_P}.tgz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
|
|
|
|
RDEPEND="media-libs/libsndfile[${MULTILIB_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-properbuild.patch"
|
|
)
|
|
|
|
HTML_DOCS="doc/*.html"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
multilib_copy_sources
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
# bug #911262
|
|
append-lfs-flags
|
|
}
|
|
|
|
multilib_src_compile() {
|
|
emake -C src CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
DYNAMIC_LD_LIBS="$(dlopen_lib)" \
|
|
CC="$(tc-getCC)" CXX="$(tc-getCXX)" \
|
|
targets
|
|
}
|
|
|
|
multilib_src_test() {
|
|
emake -C src test
|
|
}
|
|
|
|
multilib_src_install() {
|
|
emake -C src INSTALL_PLUGINS_DIR="/usr/$(get_libdir)/ladspa" \
|
|
DESTDIR="${ED}" \
|
|
MKDIR_P="mkdir -p" \
|
|
install
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
einstalldocs
|
|
|
|
# Needed for apps like rezound
|
|
dodir /etc/env.d
|
|
echo "LADSPA_PATH=${EPREFIX}/usr/$(get_libdir)/ladspa" > "${ED}/etc/env.d/60ladspa"
|
|
}
|