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/drumstick/
Date: Sun, 10 Mar 2019 22:46:35
Message-Id: 1552257951.744ca537be2b3f016ef6771139958215be10ad43.asturm@gentoo
1 commit: 744ca537be2b3f016ef6771139958215be10ad43
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 10 21:46:55 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 10 22:45:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=744ca537
7
8 media-sound/drumstick: EAPI-7 bump, add media-sound/fluidsynth slot op
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/drumstick/drumstick-1.1.1.ebuild | 48 ++++++++++------------------
14 1 file changed, 16 insertions(+), 32 deletions(-)
15
16 diff --git a/media-sound/drumstick/drumstick-1.1.1.ebuild b/media-sound/drumstick/drumstick-1.1.1.ebuild
17 index dec23c6a8c8..637a6a2cf57 100644
18 --- a/media-sound/drumstick/drumstick-1.1.1.ebuild
19 +++ b/media-sound/drumstick/drumstick-1.1.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 xdg-utils gnome2-utils
29 +inherit cmake-utils xdg
30
31 DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
32 HOMEPAGE="http://drumstick.sourceforge.net/"
33 @@ -14,9 +14,16 @@ SLOT="0"
34 KEYWORDS="~amd64 ~x86"
35 IUSE="doc fluidsynth pulseaudio"
36
37 -RESTRICT="test"
38 -
39 -RDEPEND="
40 +BDEPEND="
41 + virtual/pkgconfig
42 + x11-misc/shared-mime-info
43 + doc? (
44 + app-doc/doxygen
45 + app-text/docbook-xsl-stylesheets
46 + dev-libs/libxslt
47 + )
48 +"
49 +DEPEND="
50 dev-qt/qtcore:5
51 dev-qt/qtdbus:5
52 dev-qt/qtgui:5
53 @@ -27,18 +34,12 @@ RDEPEND="
54 fluidsynth? ( media-sound/fluidsynth )
55 pulseaudio? ( media-sound/pulseaudio )
56 "
57 -DEPEND="${RDEPEND}
58 - virtual/pkgconfig
59 - x11-misc/shared-mime-info
60 - doc? (
61 - app-doc/doxygen
62 - app-text/docbook-xsl-stylesheets
63 - dev-libs/libxslt
64 - )
65 -"
66 +RDEPEND="${DEPEND}"
67
68 DOCS=( AUTHORS ChangeLog NEWS README TODO )
69
70 +RESTRICT="test"
71 +
72 src_prepare() {
73 cmake-utils_src_prepare
74
75 @@ -65,7 +66,6 @@ src_configure() {
76
77 src_compile() {
78 cmake-utils_src_compile
79 -
80 use doc && cmake-utils_src_compile doxygen
81 }
82
83 @@ -76,19 +76,3 @@ src_install() {
84 dodoc -r "${BUILD_DIR}"/doc/html
85 fi
86 }
87 -
88 -pkg_preinst() {
89 - gnome2_icon_savelist
90 -}
91 -
92 -pkg_postinst() {
93 - xdg_desktop_database_update
94 - xdg_mimeinfo_database_update
95 - gnome2_icon_cache_update
96 -}
97 -
98 -pkg_postrm() {
99 - xdg_desktop_database_update
100 - xdg_mimeinfo_database_update
101 - gnome2_icon_cache_update
102 -}