Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/brasero/
Date: Wed, 10 Jan 2018 01:00:16
Message-Id: 1515545969.2d553fee664ac42ed7afbed9ea967a8185ced681.leio@gentoo
1 commit: 2d553fee664ac42ed7afbed9ea967a8185ced681
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 10 00:26:14 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 10 00:59:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d553fee
7
8 app-cdr/brasero: replace deprecated gst-plugins-mad dependency with gst-plugins-meta[mp3]
9
10 Bug: https://bugs.gentoo.org/639210
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 app-cdr/brasero/brasero-3.12.2-r1.ebuild | 74 ++++++++++++++++++++++++++++++++
14 1 file changed, 74 insertions(+)
15
16 diff --git a/app-cdr/brasero/brasero-3.12.2-r1.ebuild b/app-cdr/brasero/brasero-3.12.2-r1.ebuild
17 new file mode 100644
18 index 00000000000..ddad861d80a
19 --- /dev/null
20 +++ b/app-cdr/brasero/brasero-3.12.2-r1.ebuild
21 @@ -0,0 +1,74 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +GNOME2_LA_PUNT="yes"
27 +
28 +inherit gnome2
29 +
30 +DESCRIPTION="CD/DVD burning application for the GNOME desktop"
31 +HOMEPAGE="https://wiki.gnome.org/Apps/Brasero"
32 +
33 +LICENSE="GPL-2+ CC-BY-SA-3.0"
34 +SLOT="0/3.1" # subslot is 3.suffix of libbrasero-burn3
35 +IUSE="+css +introspection +libburn mp3 nautilus packagekit playlist test tracker"
36 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
37 +
38 +COMMON_DEPEND="
39 + >=dev-libs/glib-2.29.14:2
40 + >=x11-libs/gtk+-3:3[introspection?]
41 + media-libs/gstreamer:1.0
42 + media-libs/gst-plugins-base:1.0
43 + >=dev-libs/libxml2-2.6:2
44 + >=x11-libs/libnotify-0.6.1:=
45 +
46 + media-libs/libcanberra[gtk3]
47 + x11-libs/libICE
48 + x11-libs/libSM
49 +
50 + introspection? ( >=dev-libs/gobject-introspection-1.30:= )
51 + libburn? (
52 + >=dev-libs/libburn-0.4:=
53 + >=dev-libs/libisofs-0.6.4:= )
54 + nautilus? ( >=gnome-base/nautilus-2.91.90 )
55 + playlist? ( >=dev-libs/totem-pl-parser-2.29.1:= )
56 + tracker? ( >=app-misc/tracker-1:0= )
57 +"
58 +RDEPEND="${COMMON_DEPEND}
59 + media-libs/gst-plugins-good:1.0
60 + media-plugins/gst-plugins-meta:1.0[mp3?]
61 + x11-themes/hicolor-icon-theme
62 + css? ( media-libs/libdvdcss:1.2 )
63 + !libburn? (
64 + app-cdr/cdrdao
65 + app-cdr/dvd+rw-tools
66 + virtual/cdrtools )
67 + packagekit? ( app-admin/packagekit-base )
68 +"
69 +DEPEND="${COMMON_DEPEND}
70 + >=dev-util/intltool-0.50
71 + dev-util/itstool
72 + >=dev-util/gtk-doc-am-1.12
73 + sys-devel/gettext
74 + virtual/pkgconfig
75 + test? ( app-text/docbook-xml-dtd:4.3 )
76 +"
77 +# eautoreconf deps
78 +# app-text/yelp-tools
79 +# gnome-base/gnome-common
80 +
81 +PDEPEND="gnome-base/gvfs"
82 +
83 +src_configure() {
84 + gnome2_src_configure \
85 + --disable-caches \
86 + $(use_enable !libburn cdrtools) \
87 + $(use_enable !libburn cdrkit) \
88 + $(use_enable !libburn cdrdao) \
89 + $(use_enable !libburn growisofs) \
90 + $(use_enable introspection) \
91 + $(use_enable libburn libburnia) \
92 + $(use_enable nautilus) \
93 + $(use_enable playlist) \
94 + $(use_enable tracker search)
95 +}