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 489E113835A for ; Sun, 27 Dec 2020 03:37:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D8E6E0AE2; Sun, 27 Dec 2020 03:37:07 +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 4E0F7E0AE2 for ; Sun, 27 Dec 2020 03:37:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 497BB3413BB for ; Sun, 27 Dec 2020 03:37:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F43F484 for ; Sun, 27 Dec 2020 03:37:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609040136.ee7fdbf09d7a8ce5a87d6c828a21720fcb731ded.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cgnslib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/cgnslib/cgnslib-3.4.0.ebuild X-VCS-Directories: sci-libs/cgnslib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ee7fdbf09d7a8ce5a87d6c828a21720fcb731ded X-VCS-Branch: master Date: Sun, 27 Dec 2020 03:37:03 +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: 9ef291e4-99e6-483f-a68a-31dbe56b9918 X-Archives-Hash: e67cff25cf1a2a600c529298f432c639 commit: ee7fdbf09d7a8ce5a87d6c828a21720fcb731ded Author: Bernd Waibel gmail com> AuthorDate: Sat Dec 19 09:08:35 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 27 03:35:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7fdbf0 sci-libs/cgnslib: fix doc installation Also fixes a typo with CMAKE_USE_SHARED variable Closes: https://bugs.gentoo.org/760342 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Bernd Waibel gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/cgnslib/cgnslib-3.4.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sci-libs/cgnslib/cgnslib-3.4.0.ebuild b/sci-libs/cgnslib/cgnslib-3.4.0.ebuild index e5889cb043a..880fa6bd580 100644 --- a/sci-libs/cgnslib/cgnslib-3.4.0.ebuild +++ b/sci-libs/cgnslib/cgnslib-3.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -37,8 +37,8 @@ pkg_setup() { src_prepare() { # gentoo libdir sed -e 's|/lib|/'$(get_libdir)'|' \ - -e '/DESTINATION/s|lib|'$(get_libdir)'|g' \ - -i src/CMakeLists.txt || die + -e '/DESTINATION/s|lib|'$(get_libdir)'|g' \ + -i src/CMakeLists.txt || die # dont hard code link sed -e '/link_directories/d' \ -i src/tools/CMakeLists.txt src/cgnstools/*/CMakeLists.txt || die @@ -48,7 +48,7 @@ src_prepare() { src_configure() { local mycmakeargs=( -DCGNS_BUILD_SHARED=ON - -DCGNS_USED_SHARED=ON + -DCGNS_USE_SHARED=ON -DCGNS_BUILD_CGNSTOOLS="$(usex tools)" -DCGNS_ENABLE_FORTRAN="$(usex fortran)" -DCGNS_ENABLE_HDF5="$(usex hdf5)" @@ -71,7 +71,7 @@ src_install() { cmake-utils_src_install dodoc README.md release_docs/Release.txt use static-libs || rm "${ED}"/usr/$(get_libdir)/libcgns.a - use doc && dodoc *pdf release_docs/*.pdf + use doc && dodoc release_docs/*.pdf insinto /usr/share/doc/${PF} use examples && doins -r src/examples }