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 D6FAE139345 for ; Wed, 30 Jun 2021 18:40:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF787E0833; Wed, 30 Jun 2021 18:40:46 +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 C58D1E082B for ; Wed, 30 Jun 2021 18:40:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A2F6833D3CD for ; Wed, 30 Jun 2021 18:40:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E04A7C0 for ; Wed, 30 Jun 2021 18:40:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1625078367.2a33652d6b14521269121d2a611568a0487d083b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/muh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/muh/muh-2.2a-r1.ebuild net-irc/muh/muh-2.2a-r2.ebuild X-VCS-Directories: net-irc/muh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a33652d6b14521269121d2a611568a0487d083b X-VCS-Branch: master Date: Wed, 30 Jun 2021 18:40: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: 9b9539cd-a2d2-408f-9730-50222346c985 X-Archives-Hash: 8d59328b1836896c0f6bfc92ff2d709b commit: 2a33652d6b14521269121d2a611568a0487d083b Author: Sam James gentoo org> AuthorDate: Wed Jun 30 18:39:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 30 18:39:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a33652d net-irc/muh: add missing libcrypt dependency Signed-off-by: Sam James gentoo.org> net-irc/muh/{muh-2.2a-r1.ebuild => muh-2.2a-r2.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/net-irc/muh/muh-2.2a-r1.ebuild b/net-irc/muh/muh-2.2a-r2.ebuild similarity index 84% rename from net-irc/muh/muh-2.2a-r1.ebuild rename to net-irc/muh/muh-2.2a-r2.ebuild index 4a90c58d0c8..620f26da6f4 100644 --- a/net-irc/muh/muh-2.2a-r1.ebuild +++ b/net-irc/muh/muh-2.2a-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Persistent IRC bouncer" HOMEPAGE="http://mind.riot.org/muh/" @@ -12,8 +12,13 @@ SLOT="0" KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc x86" IUSE="ipv6" +RDEPEND="virtual/libcrypt:=" +DEPEND="${RDEPEND}" + src_configure() { - econf --datadir=/usr/share/muh $(use_enable ipv6) + econf \ + --datadir=/usr/share/muh \ + $(use_enable ipv6) } src_install() { @@ -22,10 +27,8 @@ src_install() { } pkg_postinst() { - elog elog "You'll need to configure muh before running it." elog "Put your config in ~/.muh/muhrc" elog "A sample config is /usr/share/muh/muhrc" elog "For more information, see the documentation." - elog }