blob: 3ca9a44bcfb38cbc0ce76875f854bcace7e14fd3 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Perlbal/Perlbal-1.790.ebuild,v 1.1 2011/06/16 08:38:45 robbat2 Exp $
EAPI=3
MODULE_AUTHOR=DORMANDO
MODULE_VERSION=1.78
inherit perl-module
DESCRIPTION="Reverse-proxy load balancer and webserver"
HOMEPAGE="http://www.danga.com/perlbal/"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-perl/libwww-perl
>=dev-perl/Danga-Socket-1.57
dev-perl/Sys-Syscall
dev-perl/BSD-Resource
dev-perl/IO-AIO"
DEPEND="${RDEPEND}"
#SRC_TEST="do" # testing not available on Perlbal yet ;-)
PATCHES=( "${FILESDIR}/${PN}-1.58-Use-saner-name-in-process-listing.patch" )
src_install() {
perl-module_src_install || die "perl-module_src_install failed"
cd "${S}"
dodoc doc/*.txt
docinto hacking
dodoc doc/hacking/*.txt
docinto conf
dodoc conf/*.{dat,conf}
keepdir /etc/perlbal
newinitd "${FILESDIR}"/perlbal_init.d_1.58 perlbal
newconfd "${FILESDIR}"/perlbal_conf.d_1.58 perlbal
}
pkg_postinst() {
einfo "Please see the example configuration files located"
einfo "within /usr/share/doc/${PF}/conf/"
}
|