summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-01-30 16:50:04 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-01-30 17:33:32 +0100
commitc7eaaeaad620b7e8b712b6cdf95056050ab6114f (patch)
tree3320f98a300c723df42b86e5f9502914e63f8b3c /media-sound/drumstick
parentdev-ml/dune: set min required ocaml version (diff)
downloadgentoo-c7eaaeaad620b7e8b712b6cdf95056050ab6114f.tar.gz
gentoo-c7eaaeaad620b7e8b712b6cdf95056050ab6114f.tar.bz2
gentoo-c7eaaeaad620b7e8b712b6cdf95056050ab6114f.zip
media-sound/drumstick: Drop 1.1.3
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/drumstick')
-rw-r--r--media-sound/drumstick/Manifest1
-rw-r--r--media-sound/drumstick/drumstick-1.1.3.ebuild78
2 files changed, 0 insertions, 79 deletions
diff --git a/media-sound/drumstick/Manifest b/media-sound/drumstick/Manifest
index ed207917b60d..c48004762c66 100644
--- a/media-sound/drumstick/Manifest
+++ b/media-sound/drumstick/Manifest
@@ -1,2 +1 @@
-DIST drumstick-1.1.3.tar.gz 1358468 BLAKE2B af4cc923d380a1da66c835a6302e47e31c17ff90ba9277fe6063e6029c3d4d087e85905487a4dae657cdbfb743d2ac6e6c5a30c0905c9bc736d8666105e52099 SHA512 41990c269c41dc011e14c9bf008b983cd3722ea52429ec7eabaa5689a6f69b1760fc766604378c30bb1dfab537b77f7522a13377b873308835a0e7701d24448e
DIST drumstick-2.0.0.tar.gz 1865424 BLAKE2B ee87dd222add121c8a6faaac5b8a755e2d6f7b257db890f6bbdbf5380d9771dc5b65a73d716f0cfd343a46c4227adcd2d85e4a359fcaa445b2291dc1ac188cfe SHA512 aacb4ca5a3354da6380ba146ee7ba57e646d19fe6a5d083e00b795221453a87d1baf25965784e7c8a97b9b00a3dda643bce144f62b6a27118f081c681089381a
diff --git a/media-sound/drumstick/drumstick-1.1.3.ebuild b/media-sound/drumstick/drumstick-1.1.3.ebuild
deleted file mode 100644
index fbb7e14743ec..000000000000
--- a/media-sound/drumstick/drumstick-1.1.3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake xdg
-
-DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
-HOMEPAGE="http://drumstick.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc fluidsynth pulseaudio"
-
-BDEPEND="
- virtual/pkgconfig
- x11-misc/shared-mime-info
- doc? (
- app-doc/doxygen
- app-text/docbook-xsl-stylesheets
- dev-libs/libxslt
- )
-"
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- media-libs/alsa-lib
- fluidsynth? ( media-sound/fluidsynth )
- pulseaudio? ( media-sound/pulseaudio )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-RESTRICT="test"
-
-src_prepare() {
- cmake_src_prepare
-
- if ! use fluidsynth ; then
- sed -i -e "/pkg_check_modules(FLUIDSYNTH/d" \
- library/rt/CMakeLists.txt \
- library/rt-backends/CMakeLists.txt \
- utils/vpiano/CMakeLists.txt || die
- fi
-
- if ! use pulseaudio ; then
- sed -i -e "/pkg_check_modules(PULSE/d" CMakeLists.txt || die
- fi
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=OFF
- $(cmake_use_find_package doc Doxygen)
- )
-
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- use doc && cmake_src_compile doxygen
-}
-
-src_install() {
- cmake_src_install
-
- if use doc ; then
- dodoc -r "${BUILD_DIR}"/doc/html
- fi
-}