You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.3 KiB
98 lines
2.3 KiB
3 years ago
|
# Copyright 1999-2022 Gentoo Authors
|
||
4 years ago
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
3 years ago
|
POSTGRES_COMPAT=( 9.6 {10..13} )
|
||
4 years ago
|
|
||
|
inherit autotools postgres-multi
|
||
|
|
||
|
MY_P="${PN/2/-II}-${PV}"
|
||
|
|
||
|
DESCRIPTION="Connection pool server for PostgreSQL"
|
||
|
HOMEPAGE="https://www.pgpool.net/"
|
||
|
SRC_URI="https://www.pgpool.net/download.php?f=${MY_P}.tar.gz -> ${MY_P}.tar.gz"
|
||
3 years ago
|
S="${WORKDIR}/${MY_P}"
|
||
|
|
||
4 years ago
|
LICENSE="BSD"
|
||
|
SLOT="0"
|
||
4 years ago
|
KEYWORDS="amd64 x86"
|
||
4 years ago
|
IUSE="doc memcached pam ssl static-libs"
|
||
4 years ago
|
|
||
|
RDEPEND="
|
||
|
${POSTGRES_DEP}
|
||
3 years ago
|
acct-group/postgres
|
||
|
acct-user/pgpool
|
||
4 years ago
|
net-libs/libnsl:0=
|
||
3 years ago
|
virtual/libcrypt:=
|
||
4 years ago
|
memcached? ( dev-libs/libmemcached )
|
||
|
pam? ( sys-auth/pambase )
|
||
|
ssl? (
|
||
4 years ago
|
dev-libs/openssl:0=
|
||
4 years ago
|
)
|
||
|
"
|
||
3 years ago
|
|
||
4 years ago
|
DEPEND="${RDEPEND}
|
||
|
sys-devel/bison
|
||
|
virtual/pkgconfig
|
||
|
"
|
||
|
|
||
|
pkg_setup() {
|
||
|
postgres-multi_pkg_setup
|
||
|
}
|
||
|
|
||
|
src_prepare() {
|
||
|
eapply \
|
||
|
"${FILESDIR}/pgpool-4.2.0-configure-memcached.patch" \
|
||
|
"${FILESDIR}/pgpool-configure-pam.patch" \
|
||
|
"${FILESDIR}/pgpool-4.2.0-configure-pthread.patch" \
|
||
|
"${FILESDIR}/pgpool-4.2.0-run_paths.patch"
|
||
|
|
||
|
eautoreconf
|
||
|
|
||
|
postgres-multi_src_prepare
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
postgres-multi_foreach econf \
|
||
|
--disable-rpath \
|
||
|
--sysconfdir="${EROOT}/etc/${PN}" \
|
||
|
--with-pgsql-includedir='/usr/include/postgresql-@PG_SLOT@' \
|
||
|
--with-pgsql-libdir="/usr/$(get_libdir)/postgresql-@PG_SLOT@/$(get_libdir)" \
|
||
|
$(use_enable static-libs static) \
|
||
|
$(use_with memcached) \
|
||
|
$(use_with pam) \
|
||
|
$(use_with ssl openssl)
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
# Even though we're only going to do an install for the best slot
|
||
|
# available, the extension bits in src/sql need some things outside
|
||
|
# of that directory built, too.
|
||
|
postgres-multi_foreach emake
|
||
|
postgres-multi_foreach emake -C src/sql
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
# We only need the best stuff installed
|
||
|
postgres-multi_forbest emake DESTDIR="${D}" install
|
||
|
|
||
|
# Except for the extension and .so files that each PostgreSQL slot needs
|
||
|
postgres-multi_foreach emake DESTDIR="${D}" -C src/sql install
|
||
|
|
||
|
newinitd "${FILESDIR}/${PN}.initd" ${PN}
|
||
|
newconfd "${FILESDIR}/${PN}.confd" ${PN}
|
||
|
|
||
|
# Documentation!
|
||
|
dodoc NEWS TODO
|
||
|
doman doc/src/sgml/man{1,8}/*
|
||
|
use doc && dodoc -r doc/src/sgml/html
|
||
|
|
||
|
# mv some files that get installed to /usr/share/pgpool-II so that
|
||
|
# they all wind up in the same place
|
||
|
mv "${ED}/usr/share/${PN/2/-II}" "${ED}/usr/share/${PN}" || die
|
||
|
|
||
|
# One more thing: Evil la files!
|
||
|
find "${ED}" -name '*.la' -exec rm -f {} +
|
||
|
}
|