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 9CB65138335 for ; Wed, 13 Mar 2019 00:42:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65B91E091A; Wed, 13 Mar 2019 00:42:09 +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 4111EE0917 for ; Wed, 13 Mar 2019 00:42:09 +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 B6938335D00 for ; Wed, 13 Mar 2019 00:42:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86523567 for ; Wed, 13 Mar 2019 00:42:05 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1552437696.6922f21531c9ab4bb8adefe56e41e301dba3b33c.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/davfs2/davfs2-1.5.5.ebuild X-VCS-Directories: net-fs/davfs2/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 6922f21531c9ab4bb8adefe56e41e301dba3b33c X-VCS-Branch: master Date: Wed, 13 Mar 2019 00:42:05 +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: 275904ee-fa90-49f4-9d55-20e8ad70ac0d X-Archives-Hash: e2425fc16755b8ec8c9cbf9a4d11948e commit: 6922f21531c9ab4bb8adefe56e41e301dba3b33c Author: Göktürk Yüksek gentoo org> AuthorDate: Tue Mar 12 19:36:36 2019 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Wed Mar 13 00:41:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6922f215 net-fs/davfs2: leave manpage compression to the package manager Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Göktürk Yüksek gentoo.org> net-fs/davfs2/davfs2-1.5.5.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/net-fs/davfs2/davfs2-1.5.5.ebuild b/net-fs/davfs2/davfs2-1.5.5.ebuild index 6ac96a881c3..3ef5dd25f00 100644 --- a/net-fs/davfs2/davfs2-1.5.5.ebuild +++ b/net-fs/davfs2/davfs2-1.5.5.ebuild @@ -28,6 +28,14 @@ pkg_setup() { enewgroup davfs2 } +src_prepare() { + # Let the package manager handle man page compression + sed -e '/^manual[58]_DATA/ s/\.gz//g' \ + -i "${S}"/man/Makefile.in || die + + default +} + src_configure() { econf dav_user=nobody --enable-largefile $(use_enable nls) }