blob: d3876e03178f6bd9bfb1140f85ee14044dfd1ea4 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Perlbal/Perlbal-1.57.ebuild,v 1.3 2007/10/27 02:38:51 robbat2 Exp $
inherit perl-module
DESCRIPTION="Reverse-proxy load balancer and webserver"
HOMEPAGE="http://www.danga.com/perlbal/"
SRC_URI="mirror://cpan/authors/id/B/BR/BRADFITZ/${P}.tar.gz"
IUSE=""
SLOT="0"
LICENSE="|| ( Artistic GPL-2 )"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND="dev-perl/libwww-perl
>=dev-perl/Danga-Socket-1.57
dev-perl/Sys-Syscall
dev-perl/BSD-Resource
dev-lang/perl"
#SRC_TEST="do" # testing not available on Perlbal yet ;-)
mydoc="CHANGES"
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
}
|