Gentoo Archives: gentoo-commits

From: "Azamat H. Hackimov" <winterheart@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gamerlay:master commit in: dev-libs/fuzzylite/
Date: Mon, 12 Jul 2021 20:47:16
Message-Id: 1626122740.b5624d22c6b33f3850103ee75894c9527e1b1a53.winterheart@gentoo
1 commit: b5624d22c6b33f3850103ee75894c9527e1b1a53
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 12 18:08:30 2021 +0000
4 Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
5 CommitDate: Mon Jul 12 20:45:40 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=b5624d22
7
8 dev-libs/fuzzylite: update package to 6.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12
13 dev-libs/fuzzylite/fuzzylite-6.0.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/dev-libs/fuzzylite/fuzzylite-6.0.ebuild b/dev-libs/fuzzylite/fuzzylite-6.0.ebuild
17 new file mode 100644
18 index 0000000..d05ba89
19 --- /dev/null
20 +++ b/dev-libs/fuzzylite/fuzzylite-6.0.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit cmake
28 +
29 +DESCRIPTION="A Fuzzy Logic Control Library in C++"
30 +HOMEPAGE="http://www.fuzzylite.com/"
31 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 +
33 +LICENSE="LGPL-3"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="static-libs"
37 +
38 +S="${WORKDIR}/${P}/${PN}"
39 +
40 +DOCS="../README.md"
41 +
42 +src_configure() {
43 + local mycmakeargs=(
44 + -DFL_BUILD_STATIC=$(usex static-libs)
45 + -DFL_USE_FLOAT=ON
46 + -DFL_BACKTRACE=ON
47 + -DFL_BUILD_TESTS=OFF
48 + )
49 + cmake_src_configure
50 +}