blob: 8bfbed4f5a04ce6dda9a7fe32c96d99bc8da008b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/plb/plb-0.3.ebuild,v 1.2 2003/07/13 21:44:10 aliz Exp $
DESCRIPTION="A free high-performance HTTP load balancer"
SRC_URI="http://plb.sunsite.dk/files/${P}.tar.gz"
HOMEPAGE="http://plb.sunsite.dk/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
IUSE=""
DEPEND="virtual/glibc
>=dev-libs/libevent-0.6"
src_compile() {
econf || die
emake || die "compile problem"
}
src_install() {
einstall || die
dodoc AUTHORS CONTACT ChangeLog README NEWS THANKS
insinto /etc/
doins ${FILESDIR}/plb.conf
exeinto /etc/init.d
newexe ${FILESDIR}/plb.rc6 plb
}
pkg_postinst() {
einfo "Before starting Pure Load Balancer, you have to edit the /etc/plb.conf file."
echo
ewarn "It's *really* important to read the README provided with the software."
ewarn "Just point your browser at http://plb.sunsite.dk/README"
}
|