Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: media-sound/goobox/
Date: Sun, 30 Oct 2016 10:38:33
Message-Id: 1477823873.918c3efe47a9e3e16e77ed72b0b8556fbdb8b696.eva@gentoo
1 commit: 918c3efe47a9e3e16e77ed72b0b8556fbdb8b696
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 30 10:37:11 2016 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 30 10:37:53 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=918c3efe
7
8 media-sound/goobox: 3.4.1 → 3.4.2
9
10 Add missing license, bump to EAPI=6, make libnotify optional.
11
12 media-sound/goobox/goobox-3.4.2.ebuild | 41 ++++++++++++++++++++++++++++++++++
13 1 file changed, 41 insertions(+)
14
15 diff --git a/media-sound/goobox/goobox-3.4.2.ebuild b/media-sound/goobox/goobox-3.4.2.ebuild
16 new file mode 100644
17 index 0000000..6997f35
18 --- /dev/null
19 +++ b/media-sound/goobox/goobox-3.4.2.ebuild
20 @@ -0,0 +1,41 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit gnome2
28 +
29 +DESCRIPTION="Goobox is a CD player for the GNOME desktop environment"
30 +HOMEPAGE="https://people.gnome.org/~paobac/goobox/"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +IUSE="libnotify"
36 +
37 +RDEPEND="
38 + >=app-cdr/brasero-3
39 + >=dev-libs/glib-2.36:2
40 + media-libs/gstreamer:1.0
41 + media-libs/libdiscid
42 + media-libs/musicbrainz:5
43 + media-plugins/gst-plugins-cdparanoia:1.0
44 + media-plugins/gst-plugins-meta:1.0
45 + >=x11-libs/gtk+-3.10:3
46 + libnotify? ( >=x11-libs/libnotify-0.4.3 )
47 +"
48 +DEPEND="${DEPEND}
49 + app-text/yelp-tools
50 + >=dev-util/intltool-0.50.1
51 + sys-devel/gettext
52 + virtual/pkgconfig
53 +"
54 +
55 +src_configure() {
56 + # libcoverart is not available in tree
57 + gnome2_src_configure \
58 + --disable-libcoverart \
59 + --enable-media-keys \
60 + $(use_enable libnotify notification)
61 +}