blob: a2a83dffd120586386c6fb4d759aba89315d8200 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_throttle/mod_throttle-3.1.2-r1.ebuild,v 1.13 2004/11/04 08:16:46 urilith Exp $
DESCRIPTION="Bandwidth and request throttling for Apache"
HOMEPAGE="http://www.snert.com/Software/mod_throttle/"
KEYWORDS="x86 sparc ppc"
MY_V="`echo ${PV} | sed -e 's:\.::g'`"
S=${WORKDIR}/${P}
SRC_URI="http://www.snert.com/Software/${PN}/${PN}${MY_V}.tgz"
IUSE=""
DEPEND="=net-www/apache-1*"
LICENSE="as-is"
SLOT="0"
src_compile() {
make || die "compile problem"
}
src_install() {
exeinto /usr/lib/apache-extramodules
doexe mod_throttle.so
dodoc CHANGES.txt LICENSE.txt
dohtml index.shtml
insinto /etc/apache/conf/addon-modules
doins ${FILESDIR}/mod_throttle.conf
}
pkg_postinst() {
einfo
einfo "Execute \"ebuild /var/db/pkg/net-www/${PF}/${PF}.ebuild config\""
einfo "to have your apache.conf auto-updated for use with this module."
einfo "You should then edit your /etc/conf.d/apache file to suit."
einfo
}
pkg_config() {
${ROOT}/usr/sbin/apacheaddmod \
${ROOT}/etc/apache/conf/apache.conf \
extramodules/mod_throttle.so mod_throttle.c throttle_module \
define=THROTTLE addconf=conf/addon-modules/mod_throttle.conf
:;
}
|