commit: bf1fca483b3d14542d1cdc444b7d9870280b6e3e
Author: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
AuthorDate: Wed Jun 25 13:53:28 2014 +0000
Commit: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Wed Jun 25 13:53:28 2014 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/lua.git;a=commit;h=bf1fca48
[net-im/prosody-modules] fixed "misc" things
Signed-off-by: Vadim A. Misbakh-Soloviov <mva <AT> mva.name>
---
net-im/prosody-modules/prosody-modules-9999.ebuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild
b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 4351250..cfd84e2 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -14,8 +14,10 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS=""
+IUSE="misc"
+
PROSODY_MODULES="
- misc addressing adhoc_account_management admin_probe admin_web
+ addressing adhoc_account_management admin_probe admin_web
auth_any auth_ccert auth_custom_http auth_dovecot auth_external
auth_http_async auth_imap auth_internal_yubikey auth_joomla
auth_ldap auth_ldap2 auth_pam auth_phpbb3 auth_sql auth_wordpress
@@ -177,7 +179,11 @@ src_install() {
for m in ${PROSODY_MODULES}; do
if use prosody_modules_${m}; then
insinto /usr/lib/prosody/modules;
- doins -r "mod_${m}" || die
+ doins -r "mod_${m}"
fi
done
+ use misc && (
+ insinto /usr/lib/prosody/modules
+ doins -r misc
+ )
}