commit: 2a33652d6b14521269121d2a611568a0487d083b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 18:39:27 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
}