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 C0DA1158020 for ; Sat, 10 Dec 2022 02:46:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6786E07EF; Sat, 10 Dec 2022 02:46:46 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C956AE07EF for ; Sat, 10 Dec 2022 02:46:46 +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 B570A340AB5 for ; Sat, 10 Dec 2022 02:46:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7CE45BF for ; Sat, 10 Dec 2022 02:46:43 +0000 (UTC) From: "Adam Pimentel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Adam Pimentel" Message-ID: <1670640380.1496d74ccef1141bbefd78ff70a7c92c1c3ffedc.adam.pimentel@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/feather/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-p2p/feather/feather-9999.ebuild X-VCS-Directories: net-p2p/feather/ X-VCS-Committer: adam.pimentel X-VCS-Committer-Name: Adam Pimentel X-VCS-Revision: 1496d74ccef1141bbefd78ff70a7c92c1c3ffedc X-VCS-Branch: dev Date: Sat, 10 Dec 2022 02:46:43 +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: dff1e602-19b5-4a6d-9899-db474546d6f5 X-Archives-Hash: 410ecb893bb147f38a0b0ac592314f41 commit: 1496d74ccef1141bbefd78ff70a7c92c1c3ffedc Author: Adam Pimentel protonmail com> AuthorDate: Sat Dec 10 02:46:20 2022 +0000 Commit: Adam Pimentel protonmail com> CommitDate: Sat Dec 10 02:46:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1496d74c net-p2p/feather: ditto for live ebuild Signed-off-by: Adam Pimentel protonmail.com> net-p2p/feather/feather-9999.ebuild | 45 +++++++++++++++++++++++++------------ 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/net-p2p/feather/feather-9999.ebuild b/net-p2p/feather/feather-9999.ebuild index c8d4d36b4..af882e78f 100644 --- a/net-p2p/feather/feather-9999.ebuild +++ b/net-p2p/feather/feather-9999.ebuild @@ -45,20 +45,37 @@ RDEPEND=" BDEPEND="virtual/pkgconfig" src_configure() { - local mycmakeargs=( - -DARCH=x86-64 - -DBUILD_64=ON - -DBUILD_TAG="linux-x64" - -DDONATE_BEG=OFF - -DMANUAL_SUBMODULES=1 - -DSTATIC=OFF - -DSELF_CONTAINED=OFF - -DUSE_DEVICE_TREZOR=OFF - -DXMRIG=$(usex xmrig) - -DWITH_SCANNER=$(usex qrcode) - -DVERSION_IS_RELEASE=true - ) - + if has nostrip $FEATURES ; then + local mycmakeargs=( + -DCMAKE_BUILD_TYPE=Debug + -DARCH=x86-64 + -DBUILD_64=ON + -DBUILD_TAG="linux-x64" + -DDONATE_BEG=OFF + -DMANUAL_SUBMODULES=1 + -DSTATIC=OFF + -DSELF_CONTAINED=OFF + -DUSE_DEVICE_TREZOR=OFF + -DXMRIG=$(usex xmrig) + -DWITH_SCANNER=$(usex qrcode) + -DVERSION_IS_RELEASE=true + ) + else + local mycmakeargs=( + -DCMAKE_BUILD_TYPE=Release + -DARCH=x86-64 + -DBUILD_64=ON + -DBUILD_TAG="linux-x64" + -DDONATE_BEG=OFF + -DMANUAL_SUBMODULES=1 + -DSTATIC=OFF + -DSELF_CONTAINED=OFF + -DUSE_DEVICE_TREZOR=OFF + -DXMRIG=$(usex xmrig) + -DWITH_SCANNER=$(usex qrcode) + -DVERSION_IS_RELEASE=true + ) + fi cmake_src_configure }