Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: media-sound/slart/
Date: Thu, 01 Oct 2015 12:27:38
Message-Id: 1443623408.52e816ee4dd63c139d41d4744bc76efe4f2b3f3c.jlec@gentoo
1 commit: 52e816ee4dd63c139d41d4744bc76efe4f2b3f3c
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 14:30:08 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 14:30:08 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=52e816ee
7
8 media-sound/slart: QA fixes
9
10 Missing slot operators
11 use default()
12 Prefix love
13
14 Package-Manager: portage-2.2.22
15 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
16
17 media-sound/slart/slart-0.8.0.880.ebuild | 14 +++++++-------
18 1 file changed, 7 insertions(+), 7 deletions(-)
19
20 diff --git a/media-sound/slart/slart-0.8.0.880.ebuild b/media-sound/slart/slart-0.8.0.880.ebuild
21 index aa74bdd..e74fb4d 100644
22 --- a/media-sound/slart/slart-0.8.0.880.ebuild
23 +++ b/media-sound/slart/slart-0.8.0.880.ebuild
24 @@ -2,11 +2,12 @@
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 -EAPI="5"
29 +EAPI=5
30
31 inherit versionator eutils
32
33 MY_PV="$(get_version_component_range 1-3)-$(get_version_component_range 4)"
34 +
35 DESCRIPTION="Collection of audio tools (SvOlli's Little Audio Related Thingies)"
36 HOMEPAGE="http://svolli.org/software/slart/"
37 SRC_URI="http://svolli.org/download.php/software/slart/${PN}-${MY_PV}.tar.bz2"
38 @@ -19,14 +20,13 @@ IUSE=""
39 DEPEND="
40 app-arch/bzip2
41 app-misc/lirc
42 - dev-qt/qtcore
43 - dev-qt/qtgui
44 - dev-qt/qtsql
45 + dev-qt/qtcore:4
46 + dev-qt/qtgui:4
47 + dev-qt/qtsql:4
48 media-libs/flac
49 media-libs/libogg
50 media-libs/libvorbis
51 media-sound/lame
52 - sys-devel/gcc[cxx]
53 "
54 RDEPEND="${DEPEND}
55 <media-sound/dermixd-2"
56 @@ -38,6 +38,6 @@ src_prepare() {
57 }
58
59 src_install() {
60 - emake DESTDIR="${D}" PREFIX=/usr install || die
61 - rm "${D}"/usr/share/applications/slart-stripped.desktop || die
62 + default
63 + rm "${ED}"/usr/share/applications/slart-stripped.desktop
64 }