summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2004-05-03 14:11:44 +0000
committerChuck Short <zul@gentoo.org>2004-05-03 14:11:44 +0000
commit8c844e43ad79a5da2a3a6243cf2adb7a5a08e0c0 (patch)
tree75ebc42aaa6d51c48a64b8bb49f7d1d64dc95986 /net-www
parentStable on sparc, we're done, rest the fingers, weee! (Manifest recommit) (diff)
downloadgentoo-2-8c844e43ad79a5da2a3a6243cf2adb7a5a08e0c0.tar.gz
gentoo-2-8c844e43ad79a5da2a3a6243cf2adb7a5a08e0c0.tar.bz2
gentoo-2-8c844e43ad79a5da2a3a6243cf2adb7a5a08e0c0.zip
Version bump
Diffstat (limited to 'net-www')
-rw-r--r--net-www/mod_authenticache/ChangeLog7
-rw-r--r--net-www/mod_authenticache/Manifest2
-rw-r--r--net-www/mod_authenticache/files/digest-mod_authenticache-2.0.81
-rw-r--r--net-www/mod_authenticache/mod_authenticache-2.0.8.ebuild31
4 files changed, 40 insertions, 1 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..4873b3e9f3d0 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 4392a342de613615db7e8f4e57e8b4c5 mod_authenticache-2.0.8.ebuild 931
MD5 181e3101357bedda3e218af60f3bfc4c ChangeLog 573
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
+}