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 B51D71384B4 for ; Fri, 4 Dec 2015 17:44:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2316321C058; Fri, 4 Dec 2015 17:44:25 +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 613E421C058 for ; Fri, 4 Dec 2015 17:44:24 +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 440AA340ADB for ; Fri, 4 Dec 2015 17:44:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF5B1C6A for ; Fri, 4 Dec 2015 17:44:14 +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: <1449250990.071ce103d1be384195c1c7fe7a756cde1faa7a4e.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.1.ebuild X-VCS-Directories: sci-visualization/forge/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 071ce103d1be384195c1c7fe7a756cde1faa7a4e X-VCS-Branch: master Date: Fri, 4 Dec 2015 17:44:14 +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: 0b037ee7-cabe-40f6-a338-4faf169d65fc X-Archives-Hash: 3641072c0ab06dbe29367d4e4a858a59 commit: 071ce103d1be384195c1c7fe7a756cde1faa7a4e Author: Marius Brehler linux sungazer de> AuthorDate: Fri Dec 4 17:43:10 2015 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Fri Dec 4 17:43:10 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=071ce103 sci-visualization/forge: Version bumop Package-Manager: portage-2.2.20.1 sci-visualization/forge/ChangeLog | 5 ++++ sci-visualization/forge/forge-3.2.1.ebuild | 46 ++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/sci-visualization/forge/ChangeLog b/sci-visualization/forge/ChangeLog index 1a510cb..2a3c9a3 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.1 (04 Dec 2015) + + 04 Dec 2015; Marius Brehler +forge-3.2.1.ebuild: + sci-visualization/forge: Version bumop + 28 Nov 2015; Marius Brehler -files/forge-3.1-find-glm.patch, -forge-3.1.ebuild: sci-visualization/forge: Drop old diff --git a/sci-visualization/forge/forge-3.2.1.ebuild b/sci-visualization/forge/forge-3.2.1.ebuild new file mode 100644 index 0000000..e43ff9e --- /dev/null +++ b/sci-visualization/forge/forge-3.2.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils multilib + +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" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +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 + -DFG_INSTALL_CMAKE_DIR=/usr/$(get_libdir)/cmake/Forge + ) + cmake-utils_src_configure +}