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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 839B3139347 for ; Mon, 12 Jul 2021 20:47:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60AEAE0D7D; Mon, 12 Jul 2021 20:47:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BA3CE0D7D for ; Mon, 12 Jul 2021 20:47:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EC011342CBB for ; Mon, 12 Jul 2021 20:47:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 858157D2 for ; Mon, 12 Jul 2021 20:47:12 +0000 (UTC) From: "Azamat H. Hackimov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azamat H. Hackimov" Message-ID: <1626122740.b5624d22c6b33f3850103ee75894c9527e1b1a53.winterheart@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: dev-libs/fuzzylite/ X-VCS-Repository: proj/gamerlay X-VCS-Files: dev-libs/fuzzylite/fuzzylite-6.0.ebuild X-VCS-Directories: dev-libs/fuzzylite/ X-VCS-Committer: winterheart X-VCS-Committer-Name: Azamat H. Hackimov X-VCS-Revision: b5624d22c6b33f3850103ee75894c9527e1b1a53 X-VCS-Branch: master Date: Mon, 12 Jul 2021 20:47:12 +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: c20317b3-1eb5-46d1-a40a-4bda366637c2 X-Archives-Hash: e6fedc349d9d3832bf956a89fa14b126 commit: b5624d22c6b33f3850103ee75894c9527e1b1a53 Author: Azamat H. Hackimov gmail com> AuthorDate: Mon Jul 12 18:08:30 2021 +0000 Commit: Azamat H. Hackimov gentoo ru> CommitDate: Mon Jul 12 20:45:40 2021 +0000 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=b5624d22 dev-libs/fuzzylite: update package to 6.0 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Azamat H. Hackimov gmail.com> dev-libs/fuzzylite/fuzzylite-6.0.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-libs/fuzzylite/fuzzylite-6.0.ebuild b/dev-libs/fuzzylite/fuzzylite-6.0.ebuild new file mode 100644 index 0000000..d05ba89 --- /dev/null +++ b/dev-libs/fuzzylite/fuzzylite-6.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="A Fuzzy Logic Control Library in C++" +HOMEPAGE="http://www.fuzzylite.com/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +S="${WORKDIR}/${P}/${PN}" + +DOCS="../README.md" + +src_configure() { + local mycmakeargs=( + -DFL_BUILD_STATIC=$(usex static-libs) + -DFL_USE_FLOAT=ON + -DFL_BACKTRACE=ON + -DFL_BUILD_TESTS=OFF + ) + cmake_src_configure +}