mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 12:33:40 -04:00
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:
@@ -3,7 +3,7 @@
|
|||||||
<pkgmetadata>
|
<pkgmetadata>
|
||||||
<!-- maintainer-needed -->
|
<!-- maintainer-needed -->
|
||||||
<upstream>
|
<upstream>
|
||||||
<remote-id type="github">smbolton/whysynth</remote-id>
|
<remote-id type="github">theabolton/whysynth</remote-id>
|
||||||
</upstream>
|
</upstream>
|
||||||
<longdescription lang="en">
|
<longdescription lang="en">
|
||||||
WhySynth is a versatile softsynth which operates as a plugin for the DSSI Soft Synth Interface. A brief list of features:
|
WhySynth is a versatile softsynth which operates as a plugin for the DSSI Soft Synth Interface. A brief list of features:
|
||||||
|
|||||||
@@ -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
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=7
|
EAPI=8
|
||||||
|
|
||||||
inherit autotools
|
inherit autotools
|
||||||
|
|
||||||
DESCRIPTION="A software synthesizer plugin for the DSSI Soft Synth Interface"
|
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"
|
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}"
|
S="${WORKDIR}/${PN}-${WHYSYNTH_COMMIT}"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2+"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
|
||||||
|
|
||||||
DEPEND="media-libs/dssi
|
DEPEND="
|
||||||
media-libs/liblo
|
dev-libs/glib:2
|
||||||
sci-libs/fftw:3.0
|
media-libs/alsa-lib
|
||||||
x11-libs/gtk+:2
|
media-libs/dssi
|
||||||
media-libs/ladspa-sdk
|
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}"
|
RDEPEND="${DEPEND}"
|
||||||
BDEPEND="virtual/pkgconfig"
|
BDEPEND="virtual/pkgconfig"
|
||||||
|
|
||||||
src_prepare() {
|
src_prepare() {
|
||||||
./autogen.sh
|
./autogen.sh || die
|
||||||
default
|
default
|
||||||
eautoreconf
|
eautoreconf
|
||||||
}
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
default
|
||||||
|
find "${ED}" -type f -name '*.la' -delete || die
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user