blob: 549ba4da67ea8344aab455b3453861980856fbbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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.3 2004/06/20 15:17:12 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 ~ppc"
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
}
|