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 5A784139694 for ; Sun, 26 Mar 2017 08:18:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94F7721C07F; Sun, 26 Mar 2017 08:18:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 70E9321C038 for ; Sun, 26 Mar 2017 08:18:35 +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 5FB86341669 for ; Sun, 26 Mar 2017 08:18:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2570173D8 for ; Sun, 26 Mar 2017 08:18:33 +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: <1490515815.1ae1f5832dab439c4a9ae8e50a2c16c24c672dc1.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 sci-libs/gmsh/gmsh-2.8.5.ebuild X-VCS-Directories: sci-libs/gmsh/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 1ae1f5832dab439c4a9ae8e50a2c16c24c672dc1 X-VCS-Branch: master Date: Sun, 26 Mar 2017 08:18:33 +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: d468cc7c-e1cd-4528-834e-d48ae7907bc6 X-Archives-Hash: 73c5a6cbac7557fd2f83475f585baa50 commit: 1ae1f5832dab439c4a9ae8e50a2c16c24c672dc1 Author: Justin Lecher gentoo org> AuthorDate: Sun Mar 26 08:10:15 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Mar 26 08:10:15 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1ae1f583 sci-libs/gmsh: Call cmake-utils_src_compile Move buildtime deps to DEPEND Drop CVS leftovers Package-Manager: Portage-2.3.5, Repoman-2.3.2 Signed-off-by: Justin Lecher gentoo.org> sci-libs/gmsh/gmsh-2.16.0.ebuild | 8 ++++---- sci-libs/gmsh/gmsh-2.8.5.ebuild | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/sci-libs/gmsh/gmsh-2.16.0.ebuild b/sci-libs/gmsh/gmsh-2.16.0.ebuild index 242b31d03..ed7fc8be3 100644 --- a/sci-libs/gmsh/gmsh-2.16.0.ebuild +++ b/sci-libs/gmsh/gmsh-2.16.0.ebuild @@ -1,6 +1,5 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ EAPI=6 @@ -30,7 +29,6 @@ RDEPEND=" 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 )" @@ -41,8 +39,9 @@ REQUIRED_USE=" DEPEND="${RDEPEND} virtual/pkgconfig - dev-util/cmake - doc? ( virtual/latex-base )" + doc? ( virtual/latex-base ) + python? ( dev-lang/swig:0 ) + " S=${WORKDIR}/${P}-source @@ -75,6 +74,7 @@ src_configure() { } src_compile() { + cmake-utils_src_compile if use doc ; then cd "${BUILD_DIR}" || die emake pdf diff --git a/sci-libs/gmsh/gmsh-2.8.5.ebuild b/sci-libs/gmsh/gmsh-2.8.5.ebuild index 6010916f1..1decc3cda 100644 --- a/sci-libs/gmsh/gmsh-2.8.5.ebuild +++ b/sci-libs/gmsh/gmsh-2.8.5.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit cmake-utils flag-o-matic fortran-2 toolchain-funcs @@ -37,7 +37,6 @@ REQUIRED_USE=" DEPEND="${RDEPEND} virtual/pkgconfig - dev-util/cmake doc? ( virtual/latex-base )" S=${WORKDIR}/${P}-source @@ -67,7 +66,7 @@ src_configure() { $(cmake-utils_use_enable tetgen TETGEN) $(cmake-utils_use_enable opencascade OCC) $(cmake-utils_use_enable petsc PETSC)" -# $(cmake-utils_use_enable tetgen TETGEN_NEW) +# $(cmake-utils_use_enable tetgen TETGEN_NEW) cmake-utils_src_configure ${mycmakeargs} }