Gentoo Archives: gentoo-commits

From: "Vadim A. Misbakh-Soloviov" <mva@×××.name>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lua:master commit in: net-im/prosody-modules/
Date: Wed, 25 Jun 2014 13:53:51
Message-Id: 1403704408.bf1fca483b3d14542d1cdc444b7d9870280b6e3e.mva@gentoo
1 commit: bf1fca483b3d14542d1cdc444b7d9870280b6e3e
2 Author: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
3 AuthorDate: Wed Jun 25 13:53:28 2014 +0000
4 Commit: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
5 CommitDate: Wed Jun 25 13:53:28 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lua.git;a=commit;h=bf1fca48
7
8 [net-im/prosody-modules] fixed "misc" things
9
10 Signed-off-by: Vadim A. Misbakh-Soloviov <mva <AT> mva.name>
11
12 ---
13 net-im/prosody-modules/prosody-modules-9999.ebuild | 10 ++++++++--
14 1 file changed, 8 insertions(+), 2 deletions(-)
15
16 diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild b/net-im/prosody-modules/prosody-modules-9999.ebuild
17 index 4351250..cfd84e2 100644
18 --- a/net-im/prosody-modules/prosody-modules-9999.ebuild
19 +++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
20 @@ -14,8 +14,10 @@ LICENSE="MIT"
21 SLOT="0"
22 KEYWORDS=""
23
24 +IUSE="misc"
25 +
26 PROSODY_MODULES="
27 - misc addressing adhoc_account_management admin_probe admin_web
28 + addressing adhoc_account_management admin_probe admin_web
29 auth_any auth_ccert auth_custom_http auth_dovecot auth_external
30 auth_http_async auth_imap auth_internal_yubikey auth_joomla
31 auth_ldap auth_ldap2 auth_pam auth_phpbb3 auth_sql auth_wordpress
32 @@ -177,7 +179,11 @@ src_install() {
33 for m in ${PROSODY_MODULES}; do
34 if use prosody_modules_${m}; then
35 insinto /usr/lib/prosody/modules;
36 - doins -r "mod_${m}" || die
37 + doins -r "mod_${m}"
38 fi
39 done
40 + use misc && (
41 + insinto /usr/lib/prosody/modules
42 + doins -r misc
43 + )
44 }