mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-12 16:18:42 +02:00
Closes: https://bugs.gentoo.org/925497 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
50 lines
1,012 B
Bash
50 lines
1,012 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Plugin API for software instruments with user interfaces"
|
|
HOMEPAGE="https://dssi.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/dssi/${P}.tar.gz"
|
|
|
|
LICENSE="BSD LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86"
|
|
|
|
RDEPEND="
|
|
media-libs/alsa-lib
|
|
>=media-libs/liblo-0.12
|
|
>=media-libs/ladspa-sdk-1.12-r2
|
|
>=media-libs/libsndfile-1.0.11
|
|
>=media-libs/libsamplerate-0.1.1-r1
|
|
virtual/jack
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.1.1-no-werror.patch
|
|
"${FILESDIR}"/${PN}-1.1.1-incompatible-pointer.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i \
|
|
-e 's:libdir=.*:libdir=@libdir@:' \
|
|
dssi.pc.in || die
|
|
|
|
sed -i -e '/PKG_CHECK_MODULES(QT/s:QtGui:dIsAbLe&:' configure.ac || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
DOCS=( README doc/TODO doc/*.txt )
|
|
|
|
default
|
|
|
|
find "${ED}" -name '*.la' -delete || die "Pruning failed"
|
|
}
|