Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/xfburn/
Date: Sun, 03 Nov 2019 09:29:15
Message-Id: 1572773334.ee044894d3ebb2885b65e6f3f509f6d909522a1a.mgorny@gentoo
1 commit: ee044894d3ebb2885b65e6f3f509f6d909522a1a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 3 08:50:04 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 3 09:28:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee044894
7
8 app-cdr/xfburn: Bump to 0.6.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-cdr/xfburn/Manifest | 1 +
13 app-cdr/xfburn/xfburn-0.6.0.ebuild | 52 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/app-cdr/xfburn/Manifest b/app-cdr/xfburn/Manifest
17 index b3b1eaf3c5d..1d5a92c6b95 100644
18 --- a/app-cdr/xfburn/Manifest
19 +++ b/app-cdr/xfburn/Manifest
20 @@ -1 +1,2 @@
21 DIST xfburn-0.5.5.tar.bz2 819546 BLAKE2B 180f50e9dc8e9bb2372ac7335374b09eade93b6477e557b4282ee65705e55d1f391578343e3473061921cfe296e0da9dae0ddb8823fc5daadc673537331f3085 SHA512 37574aa7dcec65c26a8fd5019c3776196763fa1ebb0f531002f5bcb72a6eb0ec19ed994dd14726988766d890ef257c39c26e64ca3f5944386c03d9b54c26a90a
22 +DIST xfburn-0.6.0.tar.bz2 847356 BLAKE2B 76f7dce31166b4524631fb1278adfb8a456f5ec8202ca1e29d86cc52b58a084a09099602c3258eda85f93e0d802afd281a15d91801b79d16520ebd13cc5fceb8 SHA512 b72f75ed8923cda1eaed9c64385a9e578635a678ef6fce54e8d1b27e3974b8def8b83ec66a1e0113521fe637901af02c53bb806e1b67e10687b7e0a6c9d80a5b
23
24 diff --git a/app-cdr/xfburn/xfburn-0.6.0.ebuild b/app-cdr/xfburn/xfburn-0.6.0.ebuild
25 new file mode 100644
26 index 00000000000..ab94182b1f3
27 --- /dev/null
28 +++ b/app-cdr/xfburn/xfburn-0.6.0.ebuild
29 @@ -0,0 +1,52 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="GTK+ based CD and DVD burning application"
38 +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfburn"
39 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~ppc ~x86"
44 +IUSE="gstreamer +udev"
45 +# only .po check, that fails
46 +# https://bugzilla.xfce.org/show_bug.cgi?id=16115
47 +RESTRICT="test"
48 +
49 +RDEPEND=">=dev-libs/glib-2.32:=
50 + >=dev-libs/libburn-0.4.2:=
51 + >=dev-libs/libisofs-0.6.2:=
52 + >=x11-libs/gtk+-3.20:3=
53 + >=xfce-base/exo-0.11:=
54 + >=xfce-base/libxfce4ui-4.12:=
55 + gstreamer? (
56 + media-libs/gstreamer:1.0=
57 + media-libs/gst-plugins-base:1.0= )
58 + udev? ( dev-libs/libgudev:= )"
59 +DEPEND="${RDEPEND}
60 + dev-util/intltool
61 + sys-devel/gettext
62 + virtual/pkgconfig"
63 +
64 +src_configure() {
65 + local myconf=(
66 + $(use_enable udev gudev)
67 + $(use_enable gstreamer)
68 + )
69 +
70 + econf "${myconf[@]}"
71 +}
72 +
73 +pkg_postinst() {
74 + xdg_icon_cache_update
75 + xdg_desktop_database_update
76 +}
77 +
78 +pkg_postrm() {
79 + xdg_icon_cache_update
80 + xdg_desktop_database_update
81 +}