commit: c8cc2ed0c4014b67f68b97542d1171a4e45a27dc Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Tue Jan 28 19:23:27 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Tue Jan 28 19:23:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8cc2ed0
media-sound/vmpk: Fix dev-qt/* SLOT deps to be 6 only Bug: https://bugs.gentoo.org/948971 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> media-sound/vmpk/vmpk-0.9.1-r1.ebuild | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/media-sound/vmpk/vmpk-0.9.1-r1.ebuild b/media-sound/vmpk/vmpk-0.9.1-r1.ebuild new file mode 100644 index 000000000000..d2fbe7b85d0f --- /dev/null +++ b/media-sound/vmpk/vmpk-0.9.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Virtual MIDI Piano Keyboard" +HOMEPAGE="https://vmpk.sourceforge.io/" +SRC_URI="https://downloads.sourceforge.net/vmpk/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus" + +DEPEND=" + dev-qt/qtbase:6[dbus?,gui,network,widgets] + >=media-sound/drumstick-2.10.0 + x11-libs/libxcb +" +RDEPEND="${DEPEND} + dev-qt/qtsvg:6 +" +BDEPEND=" + app-text/docbook-xsl-stylesheets + dev-qt/qttools:6[linguist] + virtual/pkgconfig +" + +src_configure() { + local mycmakeargs=( + -DENABLE_DBUS=$(usex dbus) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + dodir /usr/share/doc/${PF}/html + mv "${D}"/usr/share/vmpk/*.html "${D}"/usr/share/doc/${PF}/html/ || die +}
