From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DCF87138335 for ; Sun, 10 Mar 2019 22:46:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83B80E0DD5; Sun, 10 Mar 2019 22:46:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5FDE1E0DD5 for ; Sun, 10 Mar 2019 22:46:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 708B3335D3B for ; Sun, 10 Mar 2019 22:46:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D112568 for ; Sun, 10 Mar 2019 22:46:28 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1552257951.744ca537be2b3f016ef6771139958215be10ad43.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/drumstick/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/drumstick/drumstick-1.1.1.ebuild X-VCS-Directories: media-sound/drumstick/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 744ca537be2b3f016ef6771139958215be10ad43 X-VCS-Branch: master Date: Sun, 10 Mar 2019 22:46:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d5114b52-6f3f-4d75-bd63-a9dc6f8bd561 X-Archives-Hash: cccbf9281b78459592d04f3a95289e67 commit: 744ca537be2b3f016ef6771139958215be10ad43 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 10 21:46:55 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 10 22:45:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=744ca537 media-sound/drumstick: EAPI-7 bump, add media-sound/fluidsynth slot op Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/drumstick/drumstick-1.1.1.ebuild | 48 ++++++++++------------------ 1 file changed, 16 insertions(+), 32 deletions(-) diff --git a/media-sound/drumstick/drumstick-1.1.1.ebuild b/media-sound/drumstick/drumstick-1.1.1.ebuild index dec23c6a8c8..637a6a2cf57 100644 --- a/media-sound/drumstick/drumstick-1.1.1.ebuild +++ b/media-sound/drumstick/drumstick-1.1.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils xdg-utils gnome2-utils +inherit cmake-utils xdg DESCRIPTION="Qt/C++ wrapper for ALSA sequencer" HOMEPAGE="http://drumstick.sourceforge.net/" @@ -14,9 +14,16 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc fluidsynth pulseaudio" -RESTRICT="test" - -RDEPEND=" +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 @@ -27,18 +34,12 @@ RDEPEND=" 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 - ) -" +RDEPEND="${DEPEND}" DOCS=( AUTHORS ChangeLog NEWS README TODO ) +RESTRICT="test" + src_prepare() { cmake-utils_src_prepare @@ -65,7 +66,6 @@ src_configure() { src_compile() { cmake-utils_src_compile - use doc && cmake-utils_src_compile doxygen } @@ -76,19 +76,3 @@ src_install() { 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 -}