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 BBCEA138334 for ; Mon, 8 Jul 2019 09:58:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C264AE0823; Mon, 8 Jul 2019 09:58:20 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96C45E0823 for ; Mon, 8 Jul 2019 09:58:20 +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 32643347338 for ; Mon, 8 Jul 2019 09:58:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 186C25DE for ; Mon, 8 Jul 2019 09:58:17 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1562579890.8d5f090cefd272b78de0dccb6ec1e9a9194d9ed3.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/lsof/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/lsof/lsof-4.93.2-r1.ebuild sys-process/lsof/lsof-4.93.2.ebuild X-VCS-Directories: sys-process/lsof/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 8d5f090cefd272b78de0dccb6ec1e9a9194d9ed3 X-VCS-Branch: master Date: Mon, 8 Jul 2019 09:58:17 +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: 0f4e527c-76c7-478c-ad66-01a2e42f2bdf X-Archives-Hash: 66bac154af84a59f71b230d65fce7e2b commit: 8d5f090cefd272b78de0dccb6ec1e9a9194d9ed3 Author: Lars Wendler gentoo org> AuthorDate: Mon Jul 8 09:57:43 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jul 8 09:58:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d5f090c sys-process/lsof: Revbump to fix man page Closes: https://bugs.gentoo.org/689462 Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: Lars Wendler gentoo.org> sys-process/lsof/{lsof-4.93.2.ebuild => lsof-4.93.2-r1.ebuild} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sys-process/lsof/lsof-4.93.2.ebuild b/sys-process/lsof/lsof-4.93.2-r1.ebuild similarity index 95% rename from sys-process/lsof/lsof-4.93.2.ebuild rename to sys-process/lsof/lsof-4.93.2-r1.ebuild index 3fa368976b1..6761f22aa66 100644 --- a/sys-process/lsof/lsof-4.93.2.ebuild +++ b/sys-process/lsof/lsof-4.93.2-r1.ebuild @@ -19,6 +19,9 @@ RDEPEND="rpc? ( net-libs/libtirpc ) selinux? ( sys-libs/libselinux )" DEPEND="${RDEPEND} rpc? ( virtual/pkgconfig )" +BDEPEND=" + sys-apps/groff +" PATCHES=( "${FILESDIR}"/${PN}-4.85-cross.patch #432120 @@ -38,6 +41,10 @@ src_prepare() { -e '/test -r/s:test -r \$\{LSOF_INCLUDE\}/([[:alnum:]/._]*):echo "#include <\1>" | ${LSOF_CC} ${LSOF_CFGF} -E - >/dev/null 2>\&1:g' \ -e 's:grep (.*) \$\{LSOF_INCLUDE\}/([[:alnum:]/._]*):echo "#include <\2>" | ${LSOF_CC} ${LSOF_CFGF} -E -P -dD - 2>/dev/null | grep \1:' \ Configure || die + + # "create" man-page + # inspired by shipped "makeman" ksh script + soelim < Lsof.8 > lsof.8 || die } target() { @@ -91,7 +98,7 @@ src_install() { doins scripts/* fi - newman {L,l}sof.8 + doman lsof.8 dodoc 00* }