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 1BE36138359 for ; Sat, 17 Oct 2020 20:38:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E02FE0958; Sat, 17 Oct 2020 20:38:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5309EE0958 for ; Sat, 17 Oct 2020 20:38:12 +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 C9593340F6D for ; Sat, 17 Oct 2020 20:38:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B2253A4 for ; Sat, 17 Oct 2020 20:38:09 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1602967082.e4afa2b2d621bca0b6101c63cb68aed26e5224a3.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: media-libs/mmg/ X-VCS-Repository: proj/sci X-VCS-Files: media-libs/mmg/mmg-5.5.1.ebuild X-VCS-Directories: media-libs/mmg/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: e4afa2b2d621bca0b6101c63cb68aed26e5224a3 X-VCS-Branch: master Date: Sat, 17 Oct 2020 20:38:09 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 678bd8b6-9cb8-4617-8d6c-7e196d939200 X-Archives-Hash: a86ae610510a50b417bc5701cef47efb commit: e4afa2b2d621bca0b6101c63cb68aed26e5224a3 Author: Aisha Tammy aisha cc> AuthorDate: Sat Oct 17 20:38:02 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Sat Oct 17 20:38:02 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e4afa2b2 media-libs/mmg: version bump to 5.5.1 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> media-libs/mmg/mmg-5.5.1.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/media-libs/mmg/mmg-5.5.1.ebuild b/media-libs/mmg/mmg-5.5.1.ebuild new file mode 100644 index 000000000..e5fa82146 --- /dev/null +++ b/media-libs/mmg/mmg-5.5.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake fortran-2 +CMAKE_BUILD_TYPE=MMG +FORTRAN_NEED_OPENMP=1 + +DESCRIPTION="bidimensional and tridimensional remesher" +HOMEPAGE="https://www.mmgtools.org/" +SRC_URI="https://github.com/MmgTools/mmg/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3 LGPL-3" +KEYWORDS="~amd64" +SLOT="0" +IUSE="scotch vtk" + +DEPEND=" + scotch? ( sci-libs/scotch ) + vtk? ( sci-libs/vtk ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + app-doc/doxygen +" + +src_configure() { + local mycmakeargs=( + -DUSE_VTK=$(usex vtk) + -DUSE_SCOTCH=$(usex scotch) + -DBUILD_SHARED_LIBS=ON + -DLIBMMG2D_SHARED=ON + -DLIBMMGS_SHARED=ON + -DLIBMMG3D_SHARED=ON + ) + cmake_src_configure +} + +# no tests present