From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1480003-garchives=archives.gentoo.org@lists.gentoo.org> 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 67C5915800F for <garchives@archives.gentoo.org>; Tue, 24 Jan 2023 09:10:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D81EE07C9; Tue, 24 Jan 2023 09:10:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 46FA5E07C9 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Jan 2023 09:10:57 +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 4F148340E63 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Jan 2023 09:10:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87D0688C for <gentoo-commits@lists.gentoo.org>; Tue, 24 Jan 2023 09:10:54 +0000 (UTC) From: "Florian Schmaus" <flow@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" <flow@gentoo.org> Message-ID: <1674477771.d8653fbdad025a9be706f006ce8482a50610f1b3.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-im/nheko/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-im/nheko/nheko-0.11.1.ebuild X-VCS-Directories: net-im/nheko/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: d8653fbdad025a9be706f006ce8482a50610f1b3 X-VCS-Branch: master Date: Tue, 24 Jan 2023 09:10:54 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 702d1b0c-98fa-4c61-84fc-8e1a92f5ff28 X-Archives-Hash: 7728f2791b3e79b81bacfbe553ecd945 commit: d8653fbdad025a9be706f006ce8482a50610f1b3 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de> AuthorDate: Mon Jan 23 12:42:51 2023 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Mon Jan 23 12:42:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8653fbd net-im/nheko: add pie USE-flag Closes: https://bugs.gentoo.org/890903 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de> net-im/nheko/nheko-0.11.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-im/nheko/nheko-0.11.1.ebuild b/net-im/nheko/nheko-0.11.1.ebuild index d22492e86..5e82ec12f 100644 --- a/net-im/nheko/nheko-0.11.1.ebuild +++ b/net-im/nheko/nheko-0.11.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="X video voip" +IUSE="X +pie video voip" REQUIRED_USE="video? ( voip )" MY_GST_V="1.18" @@ -68,6 +68,7 @@ BDEPEND=" src_configure() { local -a mycmakeargs=( "-DVOIP=$(usex voip)" + "-DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie)" ) if use video && use X; then mycmakeargs+=("-DSCREENSHARE_X11=yes")