Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/rosegarden/
Date: Wed, 08 May 2019 17:05:22
Message-Id: 1557335013.77e24be2b9c9c2938d91b6f8db14d2c906d692e4.asturm@gentoo
1 commit: 77e24be2b9c9c2938d91b6f8db14d2c906d692e4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 5 19:38:35 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 8 17:03:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77e24be2
7
8 media-sound/rosegarden: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/rosegarden/rosegarden-17.12.1.ebuild | 32 ++++++++----------------
14 1 file changed, 11 insertions(+), 21 deletions(-)
15
16 diff --git a/media-sound/rosegarden/rosegarden-17.12.1.ebuild b/media-sound/rosegarden/rosegarden-17.12.1.ebuild
17 index 2e2fb928035..a62b21c7fa7 100644
18 --- a/media-sound/rosegarden/rosegarden-17.12.1.ebuild
19 +++ b/media-sound/rosegarden/rosegarden-17.12.1.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit cmake-utils gnome2-utils xdg-utils
29 +inherit cmake-utils xdg
30
31 DESCRIPTION="MIDI and audio sequencer and notation editor"
32 HOMEPAGE="https://www.rosegardenmusic.com/"
33 @@ -14,6 +14,10 @@ SLOT="0"
34 KEYWORDS="~amd64 ~ppc ~x86"
35 IUSE="lirc"
36
37 +BDEPEND="
38 + dev-qt/linguist-tools:5
39 + virtual/pkgconfig
40 +"
41 RDEPEND="
42 dev-qt/qtcore:5
43 dev-qt/qtgui:5
44 @@ -35,30 +39,16 @@ RDEPEND="
45 lirc? ( app-misc/lirc:= )
46 "
47 DEPEND="${RDEPEND}
48 - dev-qt/linguist-tools:5
49 dev-qt/qttest:5
50 - virtual/pkgconfig
51 "
52
53 +src_prepare() {
54 + cmake-utils_src_prepare
55 +}
56 +
57 src_configure() {
58 local mycmakeargs=(
59 "-DDISABLE_LIRC=$(usex lirc OFF ON)"
60 )
61 cmake-utils_src_configure
62 }
63 -
64 -pkg_preinst() {
65 - gnome2_icon_savelist
66 -}
67 -
68 -pkg_postinst() {
69 - gnome2_icon_cache_update
70 - xdg_desktop_database_update
71 - xdg_mimeinfo_database_update
72 -}
73 -
74 -pkg_postrm() {
75 - gnome2_icon_cache_update
76 - xdg_desktop_database_update
77 - xdg_mimeinfo_database_update
78 -}