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 181D8138350 for ; Sat, 1 Feb 2020 09:14:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A7B0E0848; Sat, 1 Feb 2020 09:14:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1E9D6E0848 for ; Sat, 1 Feb 2020 09:14:11 +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 2D9E034E3EC for ; Sat, 1 Feb 2020 09:14:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5C2390 for ; Sat, 1 Feb 2020 09:14:07 +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: <1580548439.5ef6f433aa4056e478f0768036da8995b9f7cfe7.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/ginac/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/ginac/ginac-1.7.8.ebuild X-VCS-Directories: sci-mathematics/ginac/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 5ef6f433aa4056e478f0768036da8995b9f7cfe7 X-VCS-Branch: master Date: Sat, 1 Feb 2020 09:14:07 +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: 11762232-447f-4c26-a582-9d3bc385d3ba X-Archives-Hash: d84fdd0f82a6526217316bc3521db4f4 commit: 5ef6f433aa4056e478f0768036da8995b9f7cfe7 Author: Andrey Grozin gentoo org> AuthorDate: Sat Feb 1 09:13:59 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sat Feb 1 09:13:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef6f433 sci-mathematics/ginac: ebuild improvements Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Andrey Grozin gentoo.org> sci-mathematics/ginac/ginac-1.7.8.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/sci-mathematics/ginac/ginac-1.7.8.ebuild b/sci-mathematics/ginac/ginac-1.7.8.ebuild index 05317f9ecc2..b8985e5df43 100644 --- a/sci-mathematics/ginac/ginac-1.7.8.ebuild +++ b/sci-mathematics/ginac/ginac-1.7.8.ebuild @@ -53,15 +53,14 @@ src_install() { default if use doc; then pushd doc > /dev/null || die "pushd doc failed" - insinto /usr/share/doc/${PF} - newins tutorial/ginac.pdf tutorial.pdf - newins reference/reference.pdf reference.pdf - insinto /usr/share/doc/${PF}/html/reference - doins -r reference/html_files/* - insinto /usr/share/doc/${PF}/html - newins tutorial/ginac.html tutorial.html - insinto /usr/share/doc/${PF}/examples - doins "${S}"/doc/examples/*.cpp examples/ginac-examples.* + newdoc tutorial/ginac.pdf tutorial.pdf + newdoc reference/reference.pdf reference.pdf + docinto html/reference + dodoc -r reference/html_files/. + docinto html + newdoc tutorial/ginac.html tutorial.html + docinto examples + dodoc "${S}"/doc/examples/*.cpp examples/ginac-examples.* popd > /dev/null fi }