blob: 55df1e494a30465e892c1efeeee0d39d8aacb3bc (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Connection pool server for PostgreSQL"
HOMEPAGE="http://pgpool.projects.postgresql.org/"
SRC_URI="http://pgfoundry.org/frs/download.php/899/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-db/libpq"
src_unpack() {
unpack "${A}"
cd "${S}"
sed -i -e "/^logdir/s:/tmp:/var/run:g" pgpool.conf.sample || die
}
src_compile() {
econf --with-pgsql=/usr/include/postgresql || die
emake || die
}
src_install () {
einstall || die
mv "${D}/etc/pgpool.conf.sample" "${D}/etc/pgpool.conf"
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README* TODO
exeinto /etc/init.d
newexe "${FILESDIR}/${PN}.init" ${PN}
}
|