diff options
author | Manuel Nickschas <sputnick@quassel-irc.org> | 2017-12-20 20:01:40 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-20 20:17:46 +0100 |
commit | c96d075a371cb2dbe33c50a55969400ddb1f5487 (patch) | |
tree | b902a70b68ba7b9ae1765e8f0ae71ddbbc7a549f /net-irc/quassel | |
parent | sys-kernel/genkernel: add explicit fallback to gentoo mirror for some old dis... (diff) | |
download | gentoo-c96d075a371cb2dbe33c50a55969400ddb1f5487.tar.gz gentoo-c96d075a371cb2dbe33c50a55969400ddb1f5487.tar.bz2 gentoo-c96d075a371cb2dbe33c50a55969400ddb1f5487.zip |
net-irc/quassel: add LDAP support
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6591
Diffstat (limited to 'net-irc/quassel')
-rw-r--r-- | net-irc/quassel/quassel-9999.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net-irc/quassel/quassel-9999.ebuild b/net-irc/quassel/quassel-9999.ebuild index dc4527b4df87..bf4fa999424a 100644 --- a/net-irc/quassel/quassel-9999.ebuild +++ b/net-irc/quassel/quassel-9999.ebuild @@ -15,11 +15,12 @@ HOMEPAGE="http://quassel-irc.org/" LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="+breeze crypt +dbus debug kde monolithic oxygen postgres +server snorenotify +ssl syslog urlpreview X" +IUSE="+breeze crypt +dbus debug kde ldap monolithic oxygen postgres +server snorenotify +ssl syslog urlpreview X" SERVER_RDEPEND=" dev-qt/qtscript:5 crypt? ( app-crypt/qca:2[qt5(+),ssl] ) + ldap? ( net-nds/openldap ) postgres? ( dev-qt/qtsql:5[postgres] ) !postgres? ( dev-qt/qtsql:5[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) syslog? ( virtual/logger ) @@ -73,6 +74,7 @@ REQUIRED_USE=" || ( X server monolithic ) crypt? ( || ( server monolithic ) ) kde? ( || ( X monolithic ) ) + ldap? ( || ( server monolithic ) ) monolithic? ( || ( breeze oxygen ) ) postgres? ( || ( server monolithic ) ) snorenotify? ( || ( X monolithic ) ) @@ -98,6 +100,7 @@ src_configure() { -DWANT_MONO=$(usex monolithic) -DWANT_QTCLIENT=$(usex X) -DWITH_KDE=$(usex kde) + -DWITH_LDAP=$(usex ldap) -DWITH_WEBKIT=OFF -DWITH_WEBENGINE=$(usex urlpreview) -DWITH_BREEZE=OFF |