diff options
-rw-r--r-- | www-apache/mod_auth_nufw/ChangeLog | 6 | ||||
-rw-r--r-- | www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild | 20 |
2 files changed, 9 insertions, 17 deletions
diff --git a/www-apache/mod_auth_nufw/ChangeLog b/www-apache/mod_auth_nufw/ChangeLog index 2bfce6cef74f..948433a25828 100644 --- a/www-apache/mod_auth_nufw/ChangeLog +++ b/www-apache/mod_auth_nufw/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-apache/mod_auth_nufw # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_nufw/ChangeLog,v 1.2 2007/08/04 17:14:56 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_nufw/ChangeLog,v 1.3 2007/09/21 21:07:07 hollow Exp $ + + 21 Sep 2007; Benedikt Böhm <hollow@gentoo.org> + mod_auth_nufw-2.2.0.ebuild: + remove apache-1 cruft 29 Jul 2007; Christian Heim <phreak@gentoo.org> +files/50_mod_auth_nufw.conf, diff --git a/www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild b/www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild index 1ec1a80cc613..d2a811171bef 100644 --- a/www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild +++ b/www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild,v 1.1 2007/07/29 16:07:35 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_nufw/mod_auth_nufw-2.2.0.ebuild,v 1.2 2007/09/21 21:07:07 hollow Exp $ inherit eutils apache-module autotools @@ -20,10 +20,6 @@ DEPEND="=dev-libs/apr-0* RDEPEND="${DEPEND}" APACHE2_MOD_FILE="mod_auth_nufw.so" - -APACHE1_MOD_CONF="50_${PN}" -APACHE1_MOD_DEFINE="AUTH_NUFW" - APACHE2_MOD_CONF="50_${PN}" APACHE2_MOD_DEFINE="AUTH_NUFW" @@ -55,19 +51,11 @@ src_unpack() { src_compile() { cd "${S}" - local apx - if [[ ${APACHE_VERSION} -eq '1' ]] ; then - apx=${APXS1} - else - apx=${APXS2} - fi - - econf \ - $(use_with apache2 apache20) \ + econf --with-apache20 \ $(use_with ldap ldap-uids) \ $(use_with mysql) \ - --with-apxs=${apx} \ - CPPFLAGS="-I$(apr-config --includedir) ${CPPFLAGS}" \ + --with-apxs=${APXS2} \ + CPPFLAGS="-I$($(apr_config) --includedir) ${CPPFLAGS}" \ || die "econf failed" emake || die "emake failed" } |