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 09834139083 for ; Thu, 14 Dec 2017 19:53:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11C1BE107C; Thu, 14 Dec 2017 19:53:30 +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 E1A67E107C for ; Thu, 14 Dec 2017 19:53:29 +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 C9372340BEA for ; Thu, 14 Dec 2017 19:53:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48CE8AE1D for ; Thu, 14 Dec 2017 19:53:27 +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: <1513281174.2b727a97843125efd5bf995ec2bf98307301ebf7.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunibreak/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libunibreak/libunibreak-4.0.ebuild X-VCS-Directories: dev-libs/libunibreak/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 2b727a97843125efd5bf995ec2bf98307301ebf7 X-VCS-Branch: master Date: Thu, 14 Dec 2017 19:53:27 +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: 78670c88-238e-47b1-866b-24cd7031f2cb X-Archives-Hash: 5f7d477fda13fd3f534b23c326225164 commit: 2b727a97843125efd5bf995ec2bf98307301ebf7 Author: Andrey Grozin gentoo org> AuthorDate: Thu Dec 14 19:52:54 2017 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Thu Dec 14 19:52:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b727a97 dev-libs/libunibreak: remove unwanted mans Package-Manager: Portage-2.3.18, Repoman-2.3.6 dev-libs/libunibreak/libunibreak-4.0.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-libs/libunibreak/libunibreak-4.0.ebuild b/dev-libs/libunibreak/libunibreak-4.0.ebuild index 79b94f2d771..ec0bccd245f 100644 --- a/dev-libs/libunibreak/libunibreak-4.0.ebuild +++ b/dev-libs/libunibreak/libunibreak-4.0.ebuild @@ -32,6 +32,14 @@ src_compile() { default if use man; then doxygen || die 'doxygen failed' + pushd "${S}"/doc/man > /dev/null + mv man3 x || die + mkdir man3 || die + for h in graphemebreak linebreak linebreakdef unibreakbase unibreakdef wordbreak; do + mv x/${h}.h.3 man3/ || die "man ${h} not found" + done + rm -rf x || die + popd > /dev/null fi } @@ -41,7 +49,5 @@ src_install() { find "${D}" -name '*.la' -delete || die if use man; then doman doc/man/man3/*.3 - PREFIX=`echo "${WORKDIR}" | sed -e 's|/|_|g'` - rm "${D}usr/share/man/man3/${PREFIX}_${P}_src_.3"* || die 'rm man failed' fi }