mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
40 lines
1.6 KiB
Tcl
40 lines
1.6 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
|
|
name pgpool-II
|
|
version 4.5.2
|
|
categories databases
|
|
platforms darwin
|
|
maintainers nomaintainer
|
|
description PostgreSQL connection pool server
|
|
license MIT
|
|
long_description pgpool is a connection server program for PostgreSQL. \
|
|
It runs between PostgreSQL's client(frontend) and \
|
|
server(backend). Any PostgreSQL clients can connect to \
|
|
pgpool as if it's a real PostgreSQL server. It \
|
|
supports connection pooling, failover and replication.
|
|
|
|
homepage https://www.pgpool.net/
|
|
master_sites ${homepage}mediawiki/images/
|
|
checksums rmd160 d6869fde4558a9e2edae311e59c9e37eda670482 \
|
|
sha256 480ac23f01cd7d6c856b29386bf17a848712fb4b4057d4c8abd5c8bf819bdf06 \
|
|
size 5188613
|
|
|
|
depends_build port:postgresql16
|
|
|
|
configure.args-append \
|
|
--with-pgsql-includedir=${prefix}/include/postgresql16 \
|
|
--with-pgsql-libdir=${prefix}/lib/postgresql16 \
|
|
--with-pgsql-bindir=${prefix}/lib/postgresql16/bin
|
|
|
|
post-destroot {
|
|
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS \
|
|
README TODO ${destroot}${prefix}/share/doc/${name}
|
|
}
|
|
|
|
livecheck.type regex
|
|
livecheck.url https://pgpool.net/mediawiki/index.php/Downloads
|
|
livecheck.regex pgpool-II-(\[0-9\\.\]+)\\.tar\\.gz
|