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 F29041383E0 for ; Thu, 1 Oct 2015 06:06:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C07EB21C009; Thu, 1 Oct 2015 06:06:42 +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 8322021C017 for ; Thu, 1 Oct 2015 06:06:41 +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 3FB55341081 for ; Thu, 1 Oct 2015 06:06:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8C0B2BD for ; Thu, 1 Oct 2015 06:06:36 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1443372493.d1d8f35276e259771ba074140f966e2678eb86bd.jlec@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.1.2.ebuild X-VCS-Directories: sci-visualization/forge/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: d1d8f35276e259771ba074140f966e2678eb86bd X-VCS-Branch: master Date: Thu, 1 Oct 2015 06:06:36 +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: c5af27a1-0de4-4d2c-b235-d61e58be1327 X-Archives-Hash: 99769a799648cc57129e1a44a4985119 commit: d1d8f35276e259771ba074140f966e2678eb86bd Author: Marius Brehler linux sungazer de> AuthorDate: Sun Sep 27 16:46:29 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Sep 27 16:48:13 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d1d8f352 sci-visualization/forge: Version bump Package-Manager: portage-2.2.20.1 sci-visualization/forge/ChangeLog | 5 ++++ sci-visualization/forge/forge-3.1.2.ebuild | 45 ++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/sci-visualization/forge/ChangeLog b/sci-visualization/forge/ChangeLog index c467aba..95f9956 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.1.2 (27 Sep 2015) + + 27 Sep 2015; Marius Brehler +forge-3.1.2.ebuild: + sci-visualization/forge: Version bump + *forge-3.1 (17 Sep 2015) *forge-9999 (17 Sep 2015) diff --git a/sci-visualization/forge/forge-3.1.2.ebuild b/sci-visualization/forge/forge-3.1.2.ebuild new file mode 100644 index 0000000..d844878 --- /dev/null +++ b/sci-visualization/forge/forge-3.1.2.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 +}