# ChangeLog for net-www/mod_auth_kerb
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_kerb/ChangeLog,v 1.13 2006/06/04 19:21:02 vericgar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_kerb/ChangeLog,v 1.14 2006/06/05 19:24:00 chtekk Exp $
+
+ 05 Jun 2006; Luca Longinotti <chtekk@gentoo.org>
+ -files/4.11-r1/11_mod_auth_kerb.conf, files/11_mod_auth_kerb.conf,
+ -files/mod_auth_kerb_register.patch, metadata.xml,
+ mod_auth_kerb-5.0_rc6.ebuild, mod_auth_kerb-5.0_rc7.ebuild:
+ Cleanup and fix bug #103889.
04 Jun 2006; Michael Stewart <vericgar@gentoo.org>
-mod_auth_kerb-4.11.ebuild, -mod_auth_kerb-4.11-r1.ebuild:
<IfDefine AUTH_KERB>
- <IfModule !mod_auth_kerb.c>
- LoadModule kerb_auth_module extramodules/mod_auth_kerb.so
- </IfModule>
+ LoadModule auth_kerb_module modules/mod_auth_kerb.so
</IfDefine>
-#Place configuration directives here
+<IfModule mod_auth_kerb.c>
+ <Directory "/var/www/private">
+ AuthType Kerberos
+ AuthName "Kerberos Login"
+ # See the INSTALL file about howto create the keytab
+ Krb5Keytab conf/apache.keytab
+ KrbAuthRealms EXAMPLE.COM
+ Require valid-user
+ </Directory>
+</IfModule>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>apache</herd>
-<maintainer>
- <email>apache-bugs@gentoo.org</email>
-</maintainer>
+ <herd>apache</herd>
+ <maintainer>
+ <email>apache-bugs@gentoo.org</email>
+ </maintainer>
</pkgmetadata>
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_kerb/mod_auth_kerb-5.0_rc6.ebuild,v 1.4 2006/05/13 21:30:08 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_kerb/mod_auth_kerb-5.0_rc6.ebuild,v 1.5 2006/06/05 19:24:00 chtekk Exp $
-MY_PV=${PV/_rc/-rc}
+MY_PV="${PV/_rc/-rc}"
inherit eutils apache-module
-DESCRIPTION="An Apache2 authentication DSO using Kerberos"
+DESCRIPTION="An Apache2 authentication DSO using Kerberos."
HOMEPAGE="http://modauthkerb.sourceforge.net/"
SRC_URI="mirror://sourceforge/modauthkerb/${PN}-${MY_PV}.tar.gz"
IUSE="apache2"
SLOT="0"
-DEPEND="app-crypt/mit-krb5"
+DEPEND="virtual/krb5"
RDEPEND=""
-APACHE1_MOD_CONF="4.11-r1/11_${PN}"
+APACHE1_MOD_CONF="11_${PN}"
APACHE1_MOD_DEFINE="AUTH_KERB"
-APACHE2_MOD_CONF="4.11-r1/11_${PN}"
+APACHE2_MOD_CONF="11_${PN}"
APACHE2_MOD_DEFINE="AUTH_KERB"
DOCFILES="INSTALL README"
need_apache
-S=${WORKDIR}/${PN}-${MY_PV}
+S="${WORKDIR}/${PN}-${MY_PV}"
src_compile() {
- if use apache2; then
- CFLAGS="" APXS="${APXS2}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
+ if use apache2 ; then
+ CFLAGS="" APXS="${APXS2}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
else
- CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
+ CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
fi
emake || die "make failed"
}
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_kerb/mod_auth_kerb-5.0_rc7.ebuild,v 1.1 2006/04/18 16:31:11 vericgar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_kerb/mod_auth_kerb-5.0_rc7.ebuild,v 1.2 2006/06/05 19:24:00 chtekk Exp $
-MY_PV=${PV/_rc/rc}
+MY_PV="${PV/_rc/rc}"
inherit eutils apache-module
-DESCRIPTION="An Apache2 authentication DSO using Kerberos"
+DESCRIPTION="An Apache2 authentication DSO using Kerberos."
HOMEPAGE="http://modauthkerb.sourceforge.net/"
SRC_URI="mirror://sourceforge/modauthkerb/${PN}-${MY_PV}.tar.gz"
IUSE="apache2"
SLOT="0"
-DEPEND="app-crypt/mit-krb5"
+DEPEND="virtual/krb5"
RDEPEND=""
-APACHE1_MOD_CONF="4.11-r1/11_${PN}"
+APACHE1_MOD_CONF="11_${PN}"
APACHE1_MOD_DEFINE="AUTH_KERB"
-APACHE2_MOD_CONF="4.11-r1/11_${PN}"
+APACHE2_MOD_CONF="11_${PN}"
APACHE2_MOD_DEFINE="AUTH_KERB"
DOCFILES="INSTALL README"
need_apache
-S=${WORKDIR}/${PN}-${MY_PV}
+S="${WORKDIR}/${PN}-${MY_PV}"
src_compile() {
- if use apache2; then
- CFLAGS="" APXS="${APXS2}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
+ if use apache2 ; then
+ CFLAGS="" APXS="${APXS2}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
else
- CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
+ CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 || die "econf failed"
fi
emake || die "make failed"
}