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 00E25139695 for ; Thu, 16 Mar 2017 19:35:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53BDA21C08F; Thu, 16 Mar 2017 19:35:40 +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 3379921C08F for ; Thu, 16 Mar 2017 19:35:35 +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 567E5340E75 for ; Thu, 16 Mar 2017 19:35:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72AF26A8E 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: <1489604438.45fc975669d7146aa26dd83c960afd018029efd3.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/dealii/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/dealii/dealii-9999.ebuild X-VCS-Directories: sci-libs/dealii/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 45fc975669d7146aa26dd83c960afd018029efd3 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: 0d679e22-52e1-49aa-bbcb-f88a4bd84bf3 X-Archives-Hash: a4bbd53ef946b221d5bf462df3e79355 commit: 45fc975669d7146aa26dd83c960afd018029efd3 Author: Matthias Maier gentoo org> AuthorDate: Wed Mar 15 18:25:59 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Mar 15 19:00:38 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=45fc9756 sci-libs/dealii: do not compile examples (only source gets installed) Package-Manager: Portage-2.3.3, Repoman-2.3.2 sci-libs/dealii/dealii-9999.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sci-libs/dealii/dealii-9999.ebuild b/sci-libs/dealii/dealii-9999.ebuild index 6523b9621..4053d8a38 100644 --- a/sci-libs/dealii/dealii-9999.ebuild +++ b/sci-libs/dealii/dealii-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -71,15 +71,16 @@ src_configure() { local mycmakeargs=( -DDEAL_II_PACKAGE_VERSION=9999 + -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=OFF -DDEAL_II_ALLOW_AUTODETECTION=OFF -DDEAL_II_ALLOW_BUNDLED=OFF -DDEAL_II_ALLOW_PLATFORM_INTROSPECTION=OFF - -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=OFF - -DDEAL_II_LIBRARY_RELDIR="$(get_libdir)" - -DDEAL_II_SHARE_RELDIR="share/${PN}" - -DDEAL_II_DOCREADME_RELDIR="share/doc/${P}" + -DDEAL_II_COMPILE_EXAMPLES=OFF -DDEAL_II_DOCHTML_RELDIR="share/doc/${P}/html" + -DDEAL_II_DOCREADME_RELDIR="share/doc/${P}" -DDEAL_II_EXAMPLES_RELDIR="share/doc/${P}/examples" + -DDEAL_II_LIBRARY_RELDIR="$(get_libdir)" + -DDEAL_II_SHARE_RELDIR="share/${PN}" -DDEAL_II_WITH_BZIP2=ON -DDEAL_II_WITH_ZLIB=ON $(cmake-utils_use arpack DEAL_II_WITH_ARPACK)