Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/xfburn/
Date: Mon, 27 Nov 2017 18:52:51
Message-Id: 1511808706.4673b381e0c3178b988beffff5c391b0febe433f.calchan@gentoo
1 commit: 4673b381e0c3178b988beffff5c391b0febe433f
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 27 18:51:46 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 27 18:51:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4673b381
7
8 app-cdr/xfburn: remove obsolete xfconf.eclass, migrate to EAPI6
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 app-cdr/xfburn/xfburn-0.5.4-r1.ebuild | 51 +++++++++++++++++++++++++++++++++++
13 1 file changed, 51 insertions(+)
14
15 diff --git a/app-cdr/xfburn/xfburn-0.5.4-r1.ebuild b/app-cdr/xfburn/xfburn-0.5.4-r1.ebuild
16 new file mode 100644
17 index 00000000000..561783727be
18 --- /dev/null
19 +++ b/app-cdr/xfburn/xfburn-0.5.4-r1.ebuild
20 @@ -0,0 +1,51 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit gnome2-utils xdg-utils
27 +
28 +DESCRIPTION="GTK+ based CD and DVD burning application"
29 +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfburn"
30 +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~arm ~ppc ~x86"
35 +IUSE="gstreamer +udev"
36 +
37 +RDEPEND=">=dev-libs/glib-2.32:=
38 + >=dev-libs/libburn-0.4.2:=
39 + >=dev-libs/libisofs-0.6.2:=
40 + >=x11-libs/gtk+-2.24:2=
41 + >=xfce-base/exo-0.6:=
42 + >=xfce-base/libxfce4ui-4.10:=
43 + gstreamer? (
44 + media-libs/gstreamer:1.0=
45 + media-libs/gst-plugins-base:1.0= )
46 + udev? ( virtual/libgudev:= )"
47 +DEPEND="${RDEPEND}
48 + dev-util/intltool
49 + sys-devel/gettext
50 + virtual/pkgconfig"
51 +
52 +DOCS=( AUTHORS ChangeLog NEWS README TODO )
53 +
54 +src_configure() {
55 + local myconf=(
56 + $(use_enable udev gudev)
57 + $(use_enable gstreamer)
58 + )
59 +
60 + econf "${myconf[@]}"
61 +}
62 +
63 +pkg_postinst() {
64 + gnome2_icon_cache_update
65 + xdg_desktop_database_update
66 +}
67 +
68 +pkg_postrm() {
69 + gnome2_icon_cache_update
70 + xdg_desktop_database_update
71 +}