# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-apache/mod_ldap_userdir/mod_ldap_userdir-1.1.11.ebuild,v 1.2 2007/07/29 19:17:40 phreak Exp $ inherit apache-module DESCRIPTION="Apache module that enables ~/public_html from an LDAP directory." HOMEPAGE="http://horde.net/~jwm/software/mod_ldap_userdir/" SRC_URI="http://horde.net/~jwm/software/mod_ldap_userdir/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="~ppc ~x86" IUSE="ssl" DEPEND="ssl? ( dev-libs/openssl ) net-nds/openldap" RDEPEND="${DEPEND}" DOCFILES="DIRECTIVES README user-ldif posixAccount-objectclass" APACHE2_MOD_CONF="47_mod_ldap_userdir" APACHE2_MOD_DEFINE="LDAP_USERDIR" need_apache2_2 src_compile() { local myargs="-lldap -llber" use ssl && myargs="${myargs} -DTLS=1" myargs="${myargs} -c ${PN}.c" APXS2_ARGS="${myargs}" apache-module_src_compile } src_install() { apache-module_src_install fperms 600 "${APACHE2_MODULES_CONFDIR}"/47_mod_ldap_userdir.conf }