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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CFF0915ACFB for ; Sun, 23 Apr 2023 14:26:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CECA2E0C22; Sun, 23 Apr 2023 14:26:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5B64E0C22 for ; Sun, 23 Apr 2023 14:26:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F334033F6A5 for ; Sun, 23 Apr 2023 14:26:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FABE8DF for ; Sun, 23 Apr 2023 14:26:44 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1682259998.4aa16673c242c95de13c1d5f5831fc5dc6a57a14.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ircii/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/ircii/ircii-20221016.ebuild X-VCS-Directories: net-irc/ircii/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 4aa16673c242c95de13c1d5f5831fc5dc6a57a14 X-VCS-Branch: master Date: Sun, 23 Apr 2023 14:26:44 +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: 4e50b44a-b16e-4dfb-8b52-a2d0762cdff4 X-Archives-Hash: 770635c3324f589300bab09dd4e4a27f commit: 4aa16673c242c95de13c1d5f5831fc5dc6a57a14 Author: Ben Kohler gentoo org> AuthorDate: Sun Apr 23 14:26:14 2023 +0000 Commit: Ben Kohler gentoo org> CommitDate: Sun Apr 23 14:26:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aa16673 net-irc/ircii: restore parallel install workaround Closes: https://bugs.gentoo.org/904881 Signed-off-by: Ben Kohler gentoo.org> net-irc/ircii/ircii-20221016.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net-irc/ircii/ircii-20221016.ebuild b/net-irc/ircii/ircii-20221016.ebuild index 1616f0f974f2..8a4f77fc935a 100644 --- a/net-irc/ircii/ircii-20221016.ebuild +++ b/net-irc/ircii/ircii-20221016.ebuild @@ -31,3 +31,10 @@ src_configure() { tc-export CC econf $(use_with lto) } + +src_install() { + # Still needed as of 20221016, otherwise man dirs don't exist + # at the right time. + emake -j1 DESTDIR="${D}" install + einstalldocs +}