From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C307B138CC5 for ; Mon, 4 May 2015 16:57:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6658AE090E; Mon, 4 May 2015 16:57:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 145CFE090E for ; Mon, 4 May 2015 16:57:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 101CC340AA8 for ; Mon, 4 May 2015 16:57:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DC849B1 for ; Mon, 4 May 2015 16:56:58 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1430758511.314e2790b377fd88c47814c570c2938792f5d52c.mva@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: dev-libs/fuzzylite/ X-VCS-Repository: proj/gamerlay X-VCS-Files: dev-libs/fuzzylite/fuzzylite-5.0.ebuild X-VCS-Directories: dev-libs/fuzzylite/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: 314e2790b377fd88c47814c570c2938792f5d52c X-VCS-Branch: master Date: Mon, 4 May 2015 16:56:58 +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-Archives-Salt: 78563614-d45e-4dc2-9f0d-f07351ae0805 X-Archives-Hash: 68f4fd6ede206d8285177d8d3f03a694 commit: 314e2790b377fd88c47814c570c2938792f5d52c Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Mon May 4 16:55:11 2015 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Mon May 4 16:55:11 2015 +0000 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=314e2790 [dev-libs/fuzzylite] Added (needed for VCMI) dev-libs/fuzzylite/fuzzylite-5.0.ebuild | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/dev-libs/fuzzylite/fuzzylite-5.0.ebuild b/dev-libs/fuzzylite/fuzzylite-5.0.ebuild new file mode 100644 index 0000000..38c1714 --- /dev/null +++ b/dev-libs/fuzzylite/fuzzylite-5.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils cmake-utils + +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="~x86 ~amd64" +IUSE="no-c++11 static-libs" + +DEPEND="" +RDEPEND=" + ${DEPEND} +" + +S="${WORKDIR}/${P}/${PN}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use static-libs FL_BUILD_STATIC) + -DFL_USE_FLOAT=ON + -DFL_BACKTRACE=ON + $(cmake-utils_useno no-c++11 FL_CPP11) + ) + + cmake-utils_src_configure +} + +#src_install() { +# cmake-utils_src_install +#} + +#pkg_postinst() { +# games_pkg_postinst +# +# elog For the game to work properly, please copy your +# elog \"Heroes Of Might and Magic: The Wake Of Gods\" +# elog game directory into ${GAMES_DATADIR}/${PN} . +# elog For more information, please visit: +# elog http://wiki.vcmi.eu/index.php?title=Installation_on_Linux +#}