Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kf-env/
Date: Mon, 30 May 2016 08:27:58
Message-Id: 1464594956.335d95a59f805d1bd9874b2936f3e62515cc3893.johu@gentoo
1 commit: 335d95a59f805d1bd9874b2936f3e62515cc3893
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 07:55:18 2016 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 07:55:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=335d95a5
7
8 kde-frameworks/kf-env: Version bump 4
9
10 EAPI 6. Increase required xdg-utils.
11
12 Gentoo-bug: 578848
13
14 Package-Manager: portage-2.3.0_rc1
15
16 kde-frameworks/kf-env/kf-env-4.ebuild | 28 ++++++++++++++++++++++++++++
17 1 file changed, 28 insertions(+)
18
19 diff --git a/kde-frameworks/kf-env/kf-env-4.ebuild b/kde-frameworks/kf-env/kf-env-4.ebuild
20 new file mode 100644
21 index 0000000..780bc11
22 --- /dev/null
23 +++ b/kde-frameworks/kf-env/kf-env-4.ebuild
24 @@ -0,0 +1,28 @@
25 +# Copyright 1999-2016 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Id$
28 +
29 +EAPI=6
30 +
31 +DESCRIPTION="Environment setting required for all KDE Frameworks apps to run"
32 +HOMEPAGE="https://community.kde.org/Frameworks"
33 +SRC_URI=""
34 +
35 +LICENSE="GPL-2"
36 +SLOT="5"
37 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
38 +IUSE=""
39 +
40 +RDEPEND=">=x11-misc/xdg-utils-1.1.1-r1"
41 +
42 +S=${WORKDIR}
43 +
44 +src_install() {
45 + einfo "Installing environment file..."
46 +
47 + # higher number to be sure not to kill kde4 env
48 + local envfile="${T}/78kf"
49 +
50 + echo "CONFIG_PROTECT=${EPREFIX}/usr/share/config" >> ${envfile}
51 + doenvd ${envfile}
52 +}