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 A4CBB1384B4 for ; Tue, 24 Nov 2015 14:36:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82EC821C080; Tue, 24 Nov 2015 14:36:37 +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 0185D21C080 for ; Tue, 24 Nov 2015 14:36:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9CA36340751 for ; Tue, 24 Nov 2015 14:36:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A70A4A50 for ; Tue, 24 Nov 2015 14:36:32 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1448375679.823d3cd97d8a6e5c42d82401ae5c172879795b43.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/forge/ X-VCS-Repository: proj/sci X-VCS-Files: sci-visualization/forge/ChangeLog sci-visualization/forge/forge-3.2.0.ebuild X-VCS-Directories: sci-visualization/forge/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 823d3cd97d8a6e5c42d82401ae5c172879795b43 X-VCS-Branch: master Date: Tue, 24 Nov 2015 14:36:32 +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: 80b20d3d-8880-4af6-8a82-254e651f685f X-Archives-Hash: 55c504b846653c89e4e5d539cb956301 commit: 823d3cd97d8a6e5c42d82401ae5c172879795b43 Author: Marius Brehler linux sungazer de> AuthorDate: Tue Nov 24 14:34:39 2015 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Tue Nov 24 14:34:39 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=823d3cd9 sci-visualization/forge: Version bump Package-Manager: portage-2.2.20.1 sci-visualization/forge/ChangeLog | 5 ++++ sci-visualization/forge/forge-3.2.0.ebuild | 45 ++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/sci-visualization/forge/ChangeLog b/sci-visualization/forge/ChangeLog index 5d206bf..abee051 100644 --- a/sci-visualization/forge/ChangeLog +++ b/sci-visualization/forge/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Id$ +*forge-3.2.0 (24 Nov 2015) + + 24 Nov 2015; Marius Brehler +forge-3.2.0.ebuild: + sci-visualization/forge: Version bump + 27 Sep 2015; Marius Brehler forge-3.1.ebuild: sci-visualization/forge: Set version of glm required diff --git a/sci-visualization/forge/forge-3.2.0.ebuild b/sci-visualization/forge/forge-3.2.0.ebuild new file mode 100644 index 0000000..d844878 --- /dev/null +++ b/sci-visualization/forge/forge-3.2.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="High Performance Visualizations for ArrayFire" +HOMEPAGE="http://www.arrayfire.com/" +SRC_URI="https://github.com/arrayfire/${PN}/archive/af${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +LICENSE="BSD" +SLOT="0" +IUSE="examples" + +RDEPEND=" + media-libs/glew + >=media-libs/glfw-3.1.1 + media-libs/freetype:2 + media-libs/fontconfig:1.0 + >=media-libs/glm-0.9.7.1 + virtual/opengl + " +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}-af${PV}" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + if [[ $(gcc-major-version) -lt 4 ]] || ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 7 ]] ) ; then + die "Compilation with gcc older than 4.7 is not supported." + fi + fi +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_build examples EXAMPLES) + -DUSE_SYSTEM_GLM=ON + -DUSE_SYSTEM_FREETYPE=ON + ) + cmake-utils_src_configure +}