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 A027B1382C5 for ; Fri, 21 May 2021 02:16:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B678FE07F9; Fri, 21 May 2021 02:16:04 +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 99C95E07F9 for ; Fri, 21 May 2021 02:16:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8BAF6335CCD for ; Fri, 21 May 2021 02:16:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1868F78D for ; Fri, 21 May 2021 02:16:02 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1621563353.0c1a516e76f56bcc3514f3b027aec327a7ce1e12.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/forge/ X-VCS-Repository: proj/sci X-VCS-Files: sci-visualization/forge/forge-1.0.7.ebuild X-VCS-Directories: sci-visualization/forge/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 0c1a516e76f56bcc3514f3b027aec327a7ce1e12 X-VCS-Branch: master Date: Fri, 21 May 2021 02:16:02 +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: 710f9638-f0c8-4ac9-96e3-543a8d7d3d38 X-Archives-Hash: 816ea285502018982b450d8457ea2880 commit: 0c1a516e76f56bcc3514f3b027aec327a7ce1e12 Author: Aisha Tammy aisha cc> AuthorDate: Fri May 21 02:15:53 2021 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Fri May 21 02:15:53 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0c1a516e sci-visualization/forge: version bump to 1.0.7 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Aisha Tammy aisha.cc> sci-visualization/forge/forge-1.0.7.ebuild | 54 ++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/sci-visualization/forge/forge-1.0.7.ebuild b/sci-visualization/forge/forge-1.0.7.ebuild new file mode 100644 index 000000000..ab5fa17bb --- /dev/null +++ b/sci-visualization/forge/forge-1.0.7.ebuild @@ -0,0 +1,54 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake multilib + +DESCRIPTION="High Performance Visualizations for ArrayFire" +HOMEPAGE="http://www.arrayfire.com/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/arrayfire/forge" +else + SRC_URI="https://github.com/arrayfire/forge/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="doc examples" + +RDEPEND=" + dev-libs/boost + media-libs/glfw + media-libs/fontconfig:1.0 + media-libs/freeimage + media-libs/freetype:2 + media-libs/glbinding + media-libs/glm + virtual/opengl + " +DEPEND="${RDEPEND}" +BDEPEND=" + doc? ( + app-doc/doxygen + dev-python/breathe + dev-python/recommonmark + dev-python/sphinx + ) +" + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=ON + -DFG_USE_STATIC_CPPFLAGS=OFF + -DFG_BUILD_DOCS=$(usex doc ON OFF) + -DFG_BUILD_EXAMPLES=$(usex examples ON OFF) + -DFG_WITH_FREEIMAGE=ON + -DFG_USE_STATIC_FREEIMAGE=OFF + -DFG_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/Forge + ) + cmake_src_configure +}