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 BD34D15A7D9 for ; Wed, 15 Mar 2023 02:09:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBB71E086A; Wed, 15 Mar 2023 02:09:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C7F01E086A for ; Wed, 15 Mar 2023 02:09: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 D7B6A340D5D for ; Wed, 15 Mar 2023 02:09:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF9E8B5 for ; Wed, 15 Mar 2023 02:09:44 +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: <1678846151.fac3db2a8535141de2c21a7adfdc96409fc573c3.adam.pimentel@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/polyseed/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/polyseed/polyseed-9999.ebuild X-VCS-Directories: dev-libs/polyseed/ X-VCS-Committer: adam.pimentel X-VCS-Committer-Name: Adam Pimentel X-VCS-Revision: fac3db2a8535141de2c21a7adfdc96409fc573c3 X-VCS-Branch: dev Date: Wed, 15 Mar 2023 02:09:44 +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: 81feb42d-b06c-4f1e-af95-395ae0fa4387 X-Archives-Hash: d18eb5a54cf3793bad2a368ef08ccc1a commit: fac3db2a8535141de2c21a7adfdc96409fc573c3 Author: Adam Pimentel protonmail com> AuthorDate: Wed Mar 15 02:09:11 2023 +0000 Commit: Adam Pimentel protonmail com> CommitDate: Wed Mar 15 02:09:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fac3db2a dev-libs/polyseed: ditto for live ebuild Signed-off-by: Adam Pimentel protonmail.com> dev-libs/polyseed/polyseed-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-libs/polyseed/polyseed-9999.ebuild b/dev-libs/polyseed/polyseed-9999.ebuild index 007b9bebc..5d1d71010 100644 --- a/dev-libs/polyseed/polyseed-9999.ebuild +++ b/dev-libs/polyseed/polyseed-9999.ebuild @@ -13,5 +13,9 @@ EGIT_REPO_URI="https://github.com/tevador/polyseed.git" LICENSE="LGPL-3" SLOT="0" KEYWORDS="" -IUSE="" #todo: make test executible an optional USE flag +IUSE="static-libs test" BDEPEND="virtual/pkgconfig" + +src_compile() { + cmake_build polyseed $(usex "static-libs" "polyseed_static" "") $(usex "test" "polyseed-tests" "") +}