Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-composite-editor/
Date: Mon, 02 Apr 2018 20:27:05
Message-Id: 1522700815.ac4fd56ccc61a47e961c17100e2ff95f8acaf9be.calchan@gentoo
1 commit: ac4fd56ccc61a47e961c17100e2ff95f8acaf9be
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 2 20:24:32 2018 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 2 20:26:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac4fd56c
7
8 xfce-extra/xfce4-composite-editor: remove obsolete xfconf.eclass migrate to EAPI6
9
10 .../xfce4-composite-editor-0-r1.ebuild | 33 ++++++++++++++++++++++
11 1 file changed, 33 insertions(+)
12
13 diff --git a/xfce-extra/xfce4-composite-editor/xfce4-composite-editor-0-r1.ebuild b/xfce-extra/xfce4-composite-editor/xfce4-composite-editor-0-r1.ebuild
14 new file mode 100644
15 index 00000000000..1e3d989c39b
16 --- /dev/null
17 +++ b/xfce-extra/xfce4-composite-editor/xfce4-composite-editor-0-r1.ebuild
18 @@ -0,0 +1,33 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +inherit desktop
24 +
25 +MY_PN=Xfce4-Composite-Editor
26 +
27 +DESCRIPTION="An graphical interface to modify composite settings"
28 +HOMEPAGE="http://keithhedger.hostingsiteforfree.com/pages/apps.html#xfcecomp"
29 +SRC_URI="http://keithhedger.hostingsiteforfree.com/zips/${MY_PN}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
30 +
31 +LICENSE="GPL-3"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE=""
35 +
36 +RDEPEND="app-shells/bash:*
37 + >=x11-misc/gtkdialog-0.8"
38 +DEPEND="${RDEPEND}"
39 +
40 +S=${WORKDIR}
41 +
42 +src_prepare() {
43 + eapply -p0 "${FILESDIR}"/${PN}-0-validate.patch
44 + default
45 +}
46 +
47 +src_install() {
48 + dobin xfce4-composite-editor
49 + domenu xfcecomped.desktop
50 + dodoc README
51 +}