From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 02E4713829B for ; Mon, 30 May 2016 08:27:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C518142B4; Mon, 30 May 2016 08:27:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05B60142B4 for ; Mon, 30 May 2016 08:27:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B90BB340BEA for ; Mon, 30 May 2016 08:27:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5148C95D for ; Mon, 30 May 2016 08:27:51 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1464594956.335d95a59f805d1bd9874b2936f3e62515cc3893.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kf-env/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kf-env/kf-env-4.ebuild X-VCS-Directories: kde-frameworks/kf-env/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 335d95a59f805d1bd9874b2936f3e62515cc3893 X-VCS-Branch: master Date: Mon, 30 May 2016 08:27:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d99fc348-b292-4339-8c79-5fef97301503 X-Archives-Hash: 2a84f0fa861e293fbc360504f99cdba9 commit: 335d95a59f805d1bd9874b2936f3e62515cc3893 Author: Johannes Huber gentoo org> AuthorDate: Mon May 30 07:55:18 2016 +0000 Commit: Johannes Huber gentoo org> CommitDate: Mon May 30 07:55:56 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=335d95a5 kde-frameworks/kf-env: Version bump 4 EAPI 6. Increase required xdg-utils. Gentoo-bug: 578848 Package-Manager: portage-2.3.0_rc1 kde-frameworks/kf-env/kf-env-4.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/kde-frameworks/kf-env/kf-env-4.ebuild b/kde-frameworks/kf-env/kf-env-4.ebuild new file mode 100644 index 0000000..780bc11 --- /dev/null +++ b/kde-frameworks/kf-env/kf-env-4.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Environment setting required for all KDE Frameworks apps to run" +HOMEPAGE="https://community.kde.org/Frameworks" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +RDEPEND=">=x11-misc/xdg-utils-1.1.1-r1" + +S=${WORKDIR} + +src_install() { + einfo "Installing environment file..." + + # higher number to be sure not to kill kde4 env + local envfile="${T}/78kf" + + echo "CONFIG_PROTECT=${EPREFIX}/usr/share/config" >> ${envfile} + doenvd ${envfile} +}