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 CD80B138334 for ; Wed, 8 May 2019 17:05:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C007E087C; Wed, 8 May 2019 17:05:21 +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 B575CE087C for ; Wed, 8 May 2019 17:05:20 +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 8DAD5343CAD for ; Wed, 8 May 2019 17:05:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E43D5E5 for ; Wed, 8 May 2019 17:05:16 +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: <1557335013.77e24be2b9c9c2938d91b6f8db14d2c906d692e4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/rosegarden/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/rosegarden/rosegarden-17.12.1.ebuild X-VCS-Directories: media-sound/rosegarden/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 77e24be2b9c9c2938d91b6f8db14d2c906d692e4 X-VCS-Branch: master Date: Wed, 8 May 2019 17:05:16 +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: c730b7fd-d0ba-4fa5-ae54-6aa612c970ff X-Archives-Hash: c73def9f9428f1581f0311658b515fd9 commit: 77e24be2b9c9c2938d91b6f8db14d2c906d692e4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun May 5 19:38:35 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 8 17:03:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77e24be2 media-sound/rosegarden: EAPI-7 bump Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/rosegarden/rosegarden-17.12.1.ebuild | 32 ++++++++---------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/media-sound/rosegarden/rosegarden-17.12.1.ebuild b/media-sound/rosegarden/rosegarden-17.12.1.ebuild index 2e2fb928035..a62b21c7fa7 100644 --- a/media-sound/rosegarden/rosegarden-17.12.1.ebuild +++ b/media-sound/rosegarden/rosegarden-17.12.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 gnome2-utils xdg-utils +inherit cmake-utils xdg DESCRIPTION="MIDI and audio sequencer and notation editor" HOMEPAGE="https://www.rosegardenmusic.com/" @@ -14,6 +14,10 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="lirc" +BDEPEND=" + dev-qt/linguist-tools:5 + virtual/pkgconfig +" RDEPEND=" dev-qt/qtcore:5 dev-qt/qtgui:5 @@ -35,30 +39,16 @@ RDEPEND=" lirc? ( app-misc/lirc:= ) " DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 dev-qt/qttest:5 - virtual/pkgconfig " +src_prepare() { + cmake-utils_src_prepare +} + src_configure() { local mycmakeargs=( "-DDISABLE_LIRC=$(usex lirc OFF ON)" ) cmake-utils_src_configure } - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -}