diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2009-09-17 06:50:34 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2009-09-17 06:50:34 +0000 |
commit | 4a1142eb0009f8154caed91493f2dec3e81e3714 (patch) | |
tree | 0295d1bce8c7ab15d5d0185f058d923cbb6f8cb8 /www-apache/mod_auth_kerb | |
parent | fix #260945 (diff) | |
download | gentoo-2-4a1142eb0009f8154caed91493f2dec3e81e3714.tar.gz gentoo-2-4a1142eb0009f8154caed91493f2dec3e81e3714.tar.bz2 gentoo-2-4a1142eb0009f8154caed91493f2dec3e81e3714.zip |
version bump wrt #285259 & #269791
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'www-apache/mod_auth_kerb')
-rw-r--r-- | www-apache/mod_auth_kerb/ChangeLog | 9 | ||||
-rw-r--r-- | www-apache/mod_auth_kerb/mod_auth_kerb-5.4.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/www-apache/mod_auth_kerb/ChangeLog b/www-apache/mod_auth_kerb/ChangeLog index 46ab1c4b4733..e71d116810ae 100644 --- a/www-apache/mod_auth_kerb/ChangeLog +++ b/www-apache/mod_auth_kerb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apache/mod_auth_kerb -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_kerb/ChangeLog,v 1.7 2008/08/29 12:27:53 hollow Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_kerb/ChangeLog,v 1.8 2009/09/17 06:50:34 hollow Exp $ + +*mod_auth_kerb-5.4 (17 Sep 2009) + + 17 Sep 2009; Benedikt Böhm <hollow@gentoo.org> +mod_auth_kerb-5.4.ebuild: + version bump wrt #285259 & #269791 29 Aug 2008; Benedikt Böhm <hollow@gentoo.org> mod_auth_kerb-5.3.ebuild: add ~amd64 wrt #231474 diff --git a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4.ebuild b/www-apache/mod_auth_kerb/mod_auth_kerb-5.4.ebuild new file mode 100644 index 000000000000..583b58f5b797 --- /dev/null +++ b/www-apache/mod_auth_kerb/mod_auth_kerb-5.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_kerb/mod_auth_kerb-5.4.ebuild,v 1.1 2009/09/17 06:50:34 hollow Exp $ + +inherit apache-module + +DESCRIPTION="An Apache authentication module using Kerberos." +HOMEPAGE="http://modauthkerb.sourceforge.net/" +SRC_URI="mirror://sourceforge/modauthkerb/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="virtual/krb5" +RDEPEND="${DEPEND}" + +APACHE2_MOD_CONF="11_${PN}" +APACHE2_MOD_DEFINE="AUTH_KERB" + +DOCFILES="INSTALL README" + +need_apache + +src_compile() { + CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 || die "econf failed" + emake || die "emake failed" +} |