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 9A5B4139694 for ; Thu, 16 Mar 2017 19:35:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6D57E0D43; Thu, 16 Mar 2017 19:35:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 874E6E0D49 for ; Thu, 16 Mar 2017 19:35:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93B5034105A for ; Thu, 16 Mar 2017 19:35:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 356976A8A for ; Thu, 16 Mar 2017 19:35:26 +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: <1489484460.0f5a9c04ec86f859c1cad9bd0a34e765e357f0af.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/gmsh/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/gmsh/gmsh-2.16.0.ebuild X-VCS-Directories: sci-libs/gmsh/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0f5a9c04ec86f859c1cad9bd0a34e765e357f0af X-VCS-Branch: master Date: Thu, 16 Mar 2017 19:35:26 +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: f9635aee-95f1-4531-9e05-615fe293bea4 X-Archives-Hash: cde1ea2ffc69c486fad4de23b0a5aa55 commit: 0f5a9c04ec86f859c1cad9bd0a34e765e357f0af Author: Marek Wojciechowski users noreply github com> AuthorDate: Tue Mar 14 09:41:00 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Mar 14 09:41:00 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0f5a9c04 Add new gmsh ebuild. (#724) * Add new gmsh ebuild. * Move doc compilation to src_compile sci-libs/gmsh/gmsh-2.16.0.ebuild | 93 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) diff --git a/sci-libs/gmsh/gmsh-2.16.0.ebuild b/sci-libs/gmsh/gmsh-2.16.0.ebuild new file mode 100644 index 000000000..242b31d03 --- /dev/null +++ b/sci-libs/gmsh/gmsh-2.16.0.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit cmake-utils flag-o-matic fortran-2 toolchain-funcs + +DESCRIPTION="A three-dimensional finite element mesh generator" +HOMEPAGE="http://www.geuz.org/gmsh/" +SRC_URI="http://www.geuz.org/gmsh/src/${P}-source.tgz" + +## gmsh comes with its own copies of (at least) metis, netgen and tetgen, therefore inform the user of their special licenses +LICENSE="GPL-3 free-noncomm" +SLOT="0" +KEYWORDS="~amd64 ~x86" +## cgns is not compiling ATM, maybe fix cgns lib first +IUSE="blas cgns chaco doc examples jpeg lua med metis mpi netgen opencascade petsc png python taucs tetgen X zlib" + +RDEPEND=" + virtual/fortran + X? ( x11-libs/fltk:1 ) + blas? ( virtual/blas virtual/lapack sci-libs/fftw:3.0 ) + cgns? ( sci-libs/cgnslib ) + jpeg? ( virtual/jpeg:0 ) + lua? ( dev-lang/lua:0 ) + med? ( sci-libs/med ) + opencascade? ( sci-libs/opencascade:* ) + png? ( media-libs/libpng:0 ) + petsc? ( sci-mathematics/petsc ) + python? ( dev-lang/python:2.7 dev-lang/swig:0 ) + zlib? ( sys-libs/zlib ) + mpi? ( virtual/mpi[cxx] ) + taucs? ( sci-libs/taucs )" + +REQUIRED_USE=" + taucs? ( || ( metis ) ) + " + +DEPEND="${RDEPEND} + virtual/pkgconfig + dev-util/cmake + doc? ( virtual/latex-base )" + +S=${WORKDIR}/${P}-source + +pkg_setup() { + fortran-2_pkg_setup +} + +src_configure() { + local mycmakeargs=( ) + + use blas && \ + mycmakeargs+=(-DCMAKE_Fortran_COMPILER=$(tc-getF77)) + + mycmakeargs+=( + -DENABLE_BLAS_LAPACK="$(usex blas)" + -DENABLE_CGNS="$(usex cgns)" + -DENABLE_CHACO="$(usex chaco)" + -DENABLE_FLTK="$(usex X)" + -DENABLE_GRAPHICS="$(usex X)" + -DENABLE_MED="$(usex med)" + -DENABLE_METIS="$(usex metis)" + -DENABLE_NETGEN="$(usex netgen)" + -DENABLE_TAUCS="$(usex taucs)" + -DENABLE_TETGEN="$(usex tetgen)" + -DENABLE_OCC="$(usex opencascade)" + -DENABLE_PETSC="$(usex petsc)" + -DENABLE_WRAP_PYTHON="$(usex python)") + + cmake-utils_src_configure mycmakeargs +} + +src_compile() { + if use doc ; then + cd "${BUILD_DIR}" || die + emake pdf + cd "${S}" || die + dodoc doc/texinfo/gmsh.pdf + fi +} + +src_install() { + cmake-utils_src_install + + if use examples ; then + insinto /usr/share/doc/${PF} + doins -r demos tutorial + fi +}