media-plugins/whysynth: fix RDEPEND

Closes: https://bugs.gentoo.org/840380
Closes: https://bugs.gentoo.org/932775
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2024-10-19 00:32:53 +09:00
parent ec3f2e6253
commit 4efdc8bfa9
2 changed files with 21 additions and 12 deletions

View File

@@ -3,7 +3,7 @@
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
<remote-id type="github">smbolton/whysynth</remote-id>
<remote-id type="github">theabolton/whysynth</remote-id>
</upstream>
<longdescription lang="en">
WhySynth is a versatile softsynth which operates as a plugin for the DSSI Soft Synth Interface. A brief list of features:

View File

@@ -1,32 +1,41 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
inherit autotools
DESCRIPTION="A software synthesizer plugin for the DSSI Soft Synth Interface"
HOMEPAGE="http://smbolton.com/whysynth.html https://github.com/smbolton/whysynth"
HOMEPAGE="https://smbolton.com/whysynth.html https://github.com/theabolton/whysynth"
WHYSYNTH_COMMIT="32e4bc73baa554bb1844b3165e657911f43f3568"
SRC_URI="https://github.com/smbolton/${PN}/archive/${WHYSYNTH_COMMIT}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/theabolton/${PN}/archive/${WHYSYNTH_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${WHYSYNTH_COMMIT}"
LICENSE="GPL-2"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
DEPEND="media-libs/dssi
media-libs/liblo
sci-libs/fftw:3.0
x11-libs/gtk+:2
DEPEND="
dev-libs/glib:2
media-libs/alsa-lib
media-libs/dssi
media-libs/ladspa-sdk
media-libs/alsa-lib"
media-libs/liblo
sci-libs/fftw:3.0=
x11-libs/cairo
x11-libs/gtk+:2
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
./autogen.sh
./autogen.sh || die
default
eautoreconf
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}