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 5E8DF138350 for ; Sat, 1 Feb 2020 09:15:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76B6EE0848; Sat, 1 Feb 2020 09:15:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6160BE0848 for ; Sat, 1 Feb 2020 09:15:41 +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 96A9B34E407 for ; Sat, 1 Feb 2020 09:15:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49A7890 for ; Sat, 1 Feb 2020 09:15:39 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1580548529.9bf2f24615fa77dacf22b160ef24c75ce0a9a7a0.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/nestedsums/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild X-VCS-Directories: sci-mathematics/nestedsums/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 9bf2f24615fa77dacf22b160ef24c75ce0a9a7a0 X-VCS-Branch: master Date: Sat, 1 Feb 2020 09:15:39 +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: 0dc3dfcd-a1e5-4d3b-8b99-21399a3a0e89 X-Archives-Hash: cbf5708fd5651e333f0e0afecd438f0d commit: 9bf2f24615fa77dacf22b160ef24c75ce0a9a7a0 Author: Andrey Grozin gentoo org> AuthorDate: Sat Feb 1 09:15:29 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sat Feb 1 09:15:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf2f246 sci-mathematics/nestedsums: ebuild improvements Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Andrey Grozin gentoo.org> sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild index 86a84599f41..3f4b9497fb6 100644 --- a/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild +++ b/sci-mathematics/nestedsums/nestedsums-1.5.2.ebuild @@ -13,8 +13,8 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=">=sci-mathematics/ginac-1.7" -DEPEND="${RDEPEND}" -BDEPEND="doc? ( app-doc/doxygen )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" src_compile() { default @@ -29,7 +29,12 @@ src_test() { } src_install() { - use doc && local HTML_DOCS=( reference/html/. ) - default - find "${D}" -name '*.la' -type f -delete || die + emake DESTDIR="${D}" install + rm -f "${D}"/usr/lib/*.la + dodoc AUTHORS ChangeLog + + if use doc; then + docinto html + dodoc -r reference/html/. + fi }