From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8396515817D for ; Thu, 13 Jun 2024 20:43:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC50EE2A67; Thu, 13 Jun 2024 20:43:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86DBFE2A67 for ; Thu, 13 Jun 2024 20:43:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8ACC8335DC3 for ; Thu, 13 Jun 2024 20:43:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E094E1CD5 for ; Thu, 13 Jun 2024 20:43:23 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1718311331.a570c90b544393cc38541e091c22564d623aca59.asturm@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-6.ebuild X-VCS-Directories: kde-frameworks/kf-env/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a570c90b544393cc38541e091c22564d623aca59 X-VCS-Branch: master Date: Thu, 13 Jun 2024 20:43:23 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8febf191-89e5-4196-83a1-a38dd078ff89 X-Archives-Hash: 36acd56e04d4ee755476913dffbd0f17 commit: a570c90b544393cc38541e091c22564d623aca59 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 7 20:11:27 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jun 13 20:42:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a570c90b kde-frameworks/kf-env: add 6 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kf-env/kf-env-6.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/kde-frameworks/kf-env/kf-env-6.ebuild b/kde-frameworks/kf-env/kf-env-6.ebuild new file mode 100644 index 000000000000..204547c3be3f --- /dev/null +++ b/kde-frameworks/kf-env/kf-env-6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Environment setting required for all KDE Frameworks apps to run" +HOMEPAGE="https://community.kde.org/Frameworks" +SRC_URI="" +S=${WORKDIR} + +LICENSE="GPL-2" +SLOT="6" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" +IUSE="" + +RDEPEND=" + !${CATEGORY}/${PN}:5 + >=x11-misc/xdg-utils-1.2.1-r1 +" + +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} +}