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 D036F15800F for ; Tue, 21 Feb 2023 15:00:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 995E2E0958; Tue, 21 Feb 2023 15:00:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82B9CE0958 for ; Tue, 21 Feb 2023 15:00:39 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B532A340D88 for ; Tue, 21 Feb 2023 15:00:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B23858B9 for ; Tue, 21 Feb 2023 15:00:35 +0000 (UTC) From: "Ronny Gutbrod" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ronny Gutbrod" Message-ID: <1676986412.c0c28f4405ecfc402db052071df032b1c279da29.tastytea@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-im/nheko/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-im/nheko/nheko-9999.ebuild X-VCS-Directories: net-im/nheko/ X-VCS-Committer: tastytea X-VCS-Committer-Name: Ronny Gutbrod X-VCS-Revision: c0c28f4405ecfc402db052071df032b1c279da29 X-VCS-Branch: dev Date: Tue, 21 Feb 2023 15:00:35 +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: 45458b0a-6cb1-41dc-a47f-cf777037bce2 X-Archives-Hash: c6489227b7816350b9087bb4edfa1809 commit: c0c28f4405ecfc402db052071df032b1c279da29 Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Tue Feb 21 13:24:27 2023 +0000 Commit: Ronny Gutbrod tastytea de> CommitDate: Tue Feb 21 13:33:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0c28f44 net-im/nheko: update 9999: unbundle dev-cpp/cpp-httplib Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> net-im/nheko/nheko-9999.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/net-im/nheko/nheko-9999.ebuild b/net-im/nheko/nheko-9999.ebuild index fe51d8632..9ed14fbd2 100644 --- a/net-im/nheko/nheko-9999.ebuild +++ b/net-im/nheko/nheko-9999.ebuild @@ -25,6 +25,7 @@ REQUIRED_USE="video? ( voip )" MY_GST_V="1.18" RDEPEND=" app-text/cmark:= + dev-cpp/cpp-httplib:= dev-cpp/qt-jdenticon dev-db/lmdb:= >=dev-db/lmdb++-1.0.0 @@ -99,11 +100,12 @@ src_prepare() { src_configure() { local -a mycmakeargs=( - "-DUSE_BUNDLED_MTXCLIENT=ON" - "-DUSE_BUNDLED_COEURL=ON" - "-DBUILD_SHARED_LIBS=OFF" - "-DVOIP=$(usex voip)" - "-DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie)" + -DUSE_BUNDLED_MTXCLIENT=yes + -DUSE_BUNDLED_COEURL=yes + -DBUILD_SHARED_LIBS=no + -DVOIP=$(usex voip) + -DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie) + -DUSE_BUNDLED_CPPHTTPLIB=no ) if use video && use X; then mycmakeargs+=("-DSCREENSHARE_X11=yes")