Gentoo Archives: gentoo-dev

From: hasufell <hasufell@g.o>
To: Michael Palimaka <kensington@g.o>
Cc: gentoo-dev@l.g.o
Subject: [gentoo-dev] Re: [gentoo-commits] repo/gentoo:master commit in: media-sound/karlyriceditor/files/, media-sound/karlyriceditor/
Date: Fri, 09 Oct 2015 22:33:09
Message-Id: 56184094.5000506@gentoo.org
1 On 10/09/2015 08:52 PM, Michael Palimaka wrote:
2 > commit: 8db5c61ec2b1d9d5b37f1b14434f32342b4f0803
3 > Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
4 > AuthorDate: Fri Oct 9 18:50:13 2015 +0000
5 > Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
6 > CommitDate: Fri Oct 9 18:51:51 2015 +0000
7 > URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8db5c61e
8 >
9 > media-sound/karlyriceditor: version bump
10 >
11 > Package-Manager: portage-2.2.20.1
12 >
13
14 [...]
15
16 > diff --git a/media-sound/karlyriceditor/karlyriceditor-1.11.ebuild b/media-sound/karlyriceditor/karlyriceditor-1.11.ebuild
17 > new file mode 100644
18 > index 0000000..358c3c9
19 > --- /dev/null
20 > +++ b/media-sound/karlyriceditor/karlyriceditor-1.11.ebuild
21 > @@ -0,0 +1,37 @@
22 > +# Copyright 1999-2015 Gentoo Foundation
23 > +# Distributed under the terms of the GNU General Public License v2
24 > +# $Id$
25 > +
26 > +EAPI=5
27 > +
28 > +inherit eutils qt4-r2
29 > +
30 > +DESCRIPTION="Application to edit and synchronize lyrics with karaoke songs in various formats"
31 > +HOMEPAGE="http://www.ulduzsoft.com/linux/karaoke-lyrics-editor/"
32 > +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
33 > +
34 > +LICENSE="GPL-3+"
35 > +SLOT="0"
36 > +KEYWORDS="~amd64 ~x86"
37 > +IUSE="libav"
38 > +
39 > +RDEPEND="
40 > + dev-libs/openssl:0
41 > + dev-qt/qtcore:4
42 > + dev-qt/qtgui:4
43 > + media-libs/libsdl
44
45 This is missing the 'sound' USE flag on libsdl.
46
47 > + libav? ( media-video/libav:= )
48 > + !libav? ( media-video/ffmpeg:= )
49 > +"
50 > +DEPEND="${RDEPEND}
51 > + virtual/pkgconfig
52 > +"
53 > +
54
55 [...]