summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-04-08 18:16:27 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-04-08 23:10:45 +0200
commit09904d42badbf083f238cc0a22eff803b38e1d54 (patch)
tree815b59c5ea791c60ca299702e9943d3cf3d6d1e2
parentnet-dns/libidn2: Restore 2.0.5 for testing purposes (diff)
downloadgentoo-09904d42.tar.gz
gentoo-09904d42.tar.bz2
gentoo-09904d42.zip
media-sound/drumstick: Drop 1.1.0, 1.1.1
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--media-sound/drumstick/Manifest2
-rw-r--r--media-sound/drumstick/drumstick-1.1.0.ebuild94
-rw-r--r--media-sound/drumstick/drumstick-1.1.1.ebuild78
3 files changed, 0 insertions, 174 deletions
diff --git a/media-sound/drumstick/Manifest b/media-sound/drumstick/Manifest
index 82a056a61ffe..48a28d2c5197 100644
--- a/media-sound/drumstick/Manifest
+++ b/media-sound/drumstick/Manifest
@@ -1,3 +1 @@
-DIST drumstick-1.1.0.tar.bz2 1012405 BLAKE2B ad1e4990cbf4954eadf8c7ae602234852e77abcf534e14090a6e158e9032288fcce6c39b742c40ac9b8c7967dbfcd04578b871088f61ce411de9c910c79e1fbb SHA512 1099b80e1d2819a8343e877742c5f01c114419b2c63a965717bcff2c220aa218f40ac3860cf9496d3586663e73a6c2c7b62aee74c51229578a5ae3044da208da
-DIST drumstick-1.1.1.tar.bz2 1011275 BLAKE2B dff36487a1cf79512150638c793c471fb410c3563184e9acdbd9d441c53596a0bc611d4ebef2b4dc0214c0fef5324443fe0dfe4158f45521762abf4e838cf716 SHA512 f3278be71b1850bbe742ff46b65a656443a1d655c5bcc1e289d92492db985ab185ed140b88ca68f37235c07926be5b82cfe97ae2f95ca7e3a7f48a7c95c61654
DIST drumstick-1.1.2.tar.bz2 1012371 BLAKE2B e60a5678d33db1831130037bb4a6df6da8de815a6a0ca33a167f85596f45a1d420ca4c689c756c1fd3f794fb2a097bc19878d78bfe0789a40f9eae1b306b769f SHA512 6e84fbf2ce717cdb3c669a477de65d2f32c277073d812546267c0a9556f7ead612e3140cbc412fcd560786ca024f201a1eb3ba9de4b037e3ba8d4db89e0e2e29
diff --git a/media-sound/drumstick/drumstick-1.1.0.ebuild b/media-sound/drumstick/drumstick-1.1.0.ebuild
deleted file mode 100644
index 3c51d0d2cf4b..000000000000
--- a/media-sound/drumstick/drumstick-1.1.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils gnome2-utils xdg-utils
-
-DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
-HOMEPAGE="http://drumstick.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc fluidsynth pulseaudio"
-
-RESTRICT="test"
-
-RDEPEND="
- >=dev-qt/qtcore-5.7:5
- >=dev-qt/qtdbus-5.7:5
- >=dev-qt/qtgui-5.7:5
- >=dev-qt/qtnetwork-5.7:5
- >=dev-qt/qtsvg-5.7:5
- >=dev-qt/qtwidgets-5.7:5
- media-libs/alsa-lib
- fluidsynth? ( media-sound/fluidsynth )
- pulseaudio? ( media-sound/pulseaudio )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- x11-misc/shared-mime-info
- doc? (
- app-doc/doxygen
- app-text/docbook-xsl-stylesheets
- dev-libs/libxslt
- )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_prepare() {
- cmake-utils_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-utils_use_find_package doc Doxygen)
- )
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-
- use doc && cmake-utils_src_compile doxygen
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use doc ; then
- dodoc -r "${BUILD_DIR}"/doc/html
- fi
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
- xdg_mimeinfo_database_update
- gnome2_icon_cache_update
-}
diff --git a/media-sound/drumstick/drumstick-1.1.1.ebuild b/media-sound/drumstick/drumstick-1.1.1.ebuild
deleted file mode 100644
index 4c119fe9f8d3..000000000000
--- a/media-sound/drumstick/drumstick-1.1.1.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-utils xdg
-
-DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
-HOMEPAGE="http://drumstick.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-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-utils_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-utils_use_find_package doc Doxygen)
- )
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
- use doc && cmake-utils_src_compile doxygen
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use doc ; then
- dodoc -r "${BUILD_DIR}"/doc/html
- fi
-}