Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/muh/
Date: Wed, 30 Jun 2021 18:40:47
Message-Id: 1625078367.2a33652d6b14521269121d2a611568a0487d083b.sam@gentoo
1 commit: 2a33652d6b14521269121d2a611568a0487d083b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 30 18:39:27 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 18:39:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a33652d
7
8 net-irc/muh: add missing libcrypt dependency
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-irc/muh/{muh-2.2a-r1.ebuild => muh-2.2a-r2.ebuild} | 11 +++++++----
13 1 file changed, 7 insertions(+), 4 deletions(-)
14
15 diff --git a/net-irc/muh/muh-2.2a-r1.ebuild b/net-irc/muh/muh-2.2a-r2.ebuild
16 similarity index 84%
17 rename from net-irc/muh/muh-2.2a-r1.ebuild
18 rename to net-irc/muh/muh-2.2a-r2.ebuild
19 index 4a90c58d0c8..620f26da6f4 100644
20 --- a/net-irc/muh/muh-2.2a-r1.ebuild
21 +++ b/net-irc/muh/muh-2.2a-r2.ebuild
22 @@ -1,7 +1,7 @@
23 # Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=8
28
29 DESCRIPTION="Persistent IRC bouncer"
30 HOMEPAGE="http://mind.riot.org/muh/"
31 @@ -12,8 +12,13 @@ SLOT="0"
32 KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc x86"
33 IUSE="ipv6"
34
35 +RDEPEND="virtual/libcrypt:="
36 +DEPEND="${RDEPEND}"
37 +
38 src_configure() {
39 - econf --datadir=/usr/share/muh $(use_enable ipv6)
40 + econf \
41 + --datadir=/usr/share/muh \
42 + $(use_enable ipv6)
43 }
44
45 src_install() {
46 @@ -22,10 +27,8 @@ src_install() {
47 }
48
49 pkg_postinst() {
50 - elog
51 elog "You'll need to configure muh before running it."
52 elog "Put your config in ~/.muh/muhrc"
53 elog "A sample config is /usr/share/muh/muhrc"
54 elog "For more information, see the documentation."
55 - elog
56 }