diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2022-06-26 09:56:35 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2022-06-26 09:56:35 +0200 |
commit | 22d4858088ec63b12fd4b76be3aa536f2c2c468e (patch) | |
tree | 631c51bf3dafbfcc670d793c8c4467934bfb66a8 /media-plugins | |
parent | media-plugins/mda-lv2: added python 3.10 & 3.11 (diff) | |
download | gentoo-22d4858088ec63b12fd4b76be3aa536f2c2c468e.tar.gz gentoo-22d4858088ec63b12fd4b76be3aa536f2c2c468e.tar.bz2 gentoo-22d4858088ec63b12fd4b76be3aa536f2c2c468e.zip |
media-plugins/ams-lv2: eapi7, added python 3.10, deps versions cleanup
Bug: https://bugs.gentoo.org/846035
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild b/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild new file mode 100644 index 000000000000..b695320fd5aa --- /dev/null +++ b/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +# version 1.2.2 does not compile with python 3.11 +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE="threads(+)" +inherit waf-utils python-any-r1 + +DESCRIPTION="A port of the AMS internal modules to LV2 plugins to create modular synthesizers" +HOMEPAGE="https://github.com/blablack/ams-lv2" +SRC_URI="https://github.com/blablack/ams-lv2/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-cpp/gtkmm:2.4 + media-libs/lv2 + media-libs/lvtk[gtk2] + sci-libs/fftw:3.0 + x11-libs/cairo + x11-libs/gtk+:2 + virtual/jack" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + virtual/pkgconfig" + +DOCS=( LICENSE README.md THANKS ) |