diff options
author | Chuck Short <zul@gentoo.org> | 2004-05-03 14:11:44 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-05-03 14:11:44 +0000 |
commit | c44084e144faab548c3491a5e54d763bc1e17a8c (patch) | |
tree | 8a444f5ff08ec349ffced51e1ed373a95c340f6c /net-www | |
parent | Stable on sparc, we're done, rest the fingers, weee! (diff) | |
download | historical-c44084e144faab548c3491a5e54d763bc1e17a8c.tar.gz historical-c44084e144faab548c3491a5e54d763bc1e17a8c.tar.bz2 historical-c44084e144faab548c3491a5e54d763bc1e17a8c.zip |
Version bump
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mod_authenticache/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/mod_authenticache/Manifest | 4 | ||||
-rw-r--r-- | net-www/mod_authenticache/files/digest-mod_authenticache-2.0.8 | 1 | ||||
-rw-r--r-- | net-www/mod_authenticache/mod_authenticache-2.0.8.ebuild | 31 |
4 files changed, 41 insertions, 2 deletions
diff --git a/net-www/mod_authenticache/ChangeLog b/net-www/mod_authenticache/ChangeLog index c507b8a89754..89f43b1cf18e 100644 --- a/net-www/mod_authenticache/ChangeLog +++ b/net-www/mod_authenticache/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/mod_authenticache # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mod_authenticache/ChangeLog,v 1.4 2004/04/04 22:29:46 zul Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_authenticache/ChangeLog,v 1.5 2004/05/03 14:11:44 zul Exp $ + +*mod_authenticache-2.0.8 (04 May 2004) + + 04 May 2004; Chuck Short <zul@gentoo.org> mod_authenticache-2.0.8.ebuild: + Version bump. 04 Apr 2004; Chuck Short <zul@gentoo.org> metadata.xml, mod_authenticache-2.0.6.ebuild: diff --git a/net-www/mod_authenticache/Manifest b/net-www/mod_authenticache/Manifest index 7b0901eaf25e..07e981a747f2 100644 --- a/net-www/mod_authenticache/Manifest +++ b/net-www/mod_authenticache/Manifest @@ -1,7 +1,9 @@ MD5 bcaec2e2e58441db20f91426dde8fab3 mod_authenticache-2.0.6.ebuild 1001 -MD5 181e3101357bedda3e218af60f3bfc4c ChangeLog 573 +MD5 3c68c4de728cf32366afbef124752526 mod_authenticache-2.0.8.ebuild 1045 +MD5 d398aeee6572dc277931143410eab69a ChangeLog 706 MD5 d2da0e45d7e39184d1cb7abbe3879086 metadata.xml 159 MD5 55d24e495e8ecc0121bc0edb320b3f5d files/dot-htaccess 178 MD5 21bd6cd7eb4fbf068d9dd7d65a86a6e5 files/28_mod_authenticache.conf 697 MD5 4ac0c7c098e7958d84b232cc634a82f3 files/dot-htpasswd 19 MD5 a10c55270ccdd21b842df6553f9f3dea files/digest-mod_authenticache-2.0.6 74 +MD5 eda02530989ea1eab8d65bc8aae4c2e3 files/digest-mod_authenticache-2.0.8 74 diff --git a/net-www/mod_authenticache/files/digest-mod_authenticache-2.0.8 b/net-www/mod_authenticache/files/digest-mod_authenticache-2.0.8 new file mode 100644 index 000000000000..7da3077de1e0 --- /dev/null +++ b/net-www/mod_authenticache/files/digest-mod_authenticache-2.0.8 @@ -0,0 +1 @@ +MD5 e4d5ea3ef1d4d758e6f52d473c1dd167 mod_authenticache-2.0.8.tar.bz2 6188 diff --git a/net-www/mod_authenticache/mod_authenticache-2.0.8.ebuild b/net-www/mod_authenticache/mod_authenticache-2.0.8.ebuild new file mode 100644 index 000000000000..9eacae06144c --- /dev/null +++ b/net-www/mod_authenticache/mod_authenticache-2.0.8.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_authenticache/mod_authenticache-2.0.8.ebuild,v 1.1 2004/05/03 14:11:44 zul Exp $ + +DESCRIPTION="A generic Apache2 credential caching module" +HOMEPAGE="http://killa.net/infosec/mod_authenticache/" + +SRC_URI="http://killa.net/infosec/${PN}/${P}.tar.bz2" +DEPEND="virtual/glibc" +RDEPEND="${DEPEND} =net-www/apache-2*" +LICENSE="Apache-1.1" +KEYWORDS="~x86" +IUSE="" +SLOT="0" + +src_compile() { + #fix version string + perl -pi -e "s|^#define VERSION .*|#define VERSION "\"${PV}\""|g" defines.h || die "Version fix failed." + sed -i 's/apxs/apxs2/g' Makefile || die "Makefile fixing failed." + emake || die +} + +src_install() { + exeinto /usr/lib/apache2-extramodules + doexe ${PN}.so + insinto /etc/apache2/conf/modules.d + doins ${FILESDIR}/28_mod_authenticache.conf + dodoc ${FILESDIR}/28_mod_authenticache.conf + newdoc ${FILESDIR}/dot-htaccess .htaccess + newdoc ${FILESDIR}/dot-htpasswd .htpasswd +} |