summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-01-28 20:24:00 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-01-28 20:24:00 +0100
commitbcd73409ce62aac14598a679f9534bdc034b5187 (patch)
tree0c5cbec9a97583b72f9fc7db6709f605e2a851d6 /media-sound
parentmedia-sound/vmpk: Fix dev-qt/* SLOT deps to be 6 only (diff)
downloadgentoo-bcd73409ce62aac14598a679f9534bdc034b5187.tar.gz
gentoo-bcd73409ce62aac14598a679f9534bdc034b5187.tar.bz2
gentoo-bcd73409ce62aac14598a679f9534bdc034b5187.zip
media-sound/vmpk: drop 0.9.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/vmpk/vmpk-0.9.1.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/media-sound/vmpk/vmpk-0.9.1.ebuild b/media-sound/vmpk/vmpk-0.9.1.ebuild
deleted file mode 100644
index ffc295090c49..000000000000
--- a/media-sound/vmpk/vmpk-0.9.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2024 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"
-
-BDEPEND="
- app-text/docbook-xsl-stylesheets
- dev-qt/linguist-tools:5
- virtual/pkgconfig
-"
-DEPEND="
- dev-qt/qtbase:6[gui,network,widgets]
- >=media-sound/drumstick-2.10.0
- x11-libs/libxcb
- dbus? ( dev-qt/qtbase:6[dbus] )
-"
-RDEPEND="${DEPEND}
- dev-qt/qtsvg:5
-"
-
-src_prepare() {
- cmake_src_prepare
-}
-
-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
-}