1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name pgbouncer |
---|
6 | version 1.2 |
---|
7 | categories databases |
---|
8 | platforms darwin |
---|
9 | maintainers mac.com:giorgio_v |
---|
10 | description Lightweight connection pooler for PostgreSQL |
---|
11 | long_description pgbouncer is a PostgreSQL connection pooler. \ |
---|
12 | Any target application can be connected to \ |
---|
13 | pgbouncer as if it were a PostgreSQL server, \ |
---|
14 | and pgbouncer will manage to connect to the \ |
---|
15 | server, or to reuse one of its existing connections. |
---|
16 | |
---|
17 | homepage http://pgbouncer.projects.postgresql.org/ |
---|
18 | master_sites http://pgfoundry.org/frs/download.php/1866/ |
---|
19 | checksums md5 4c6b731828b30d24d29b821fd052fc28 \ |
---|
20 | sha1 e71f64f6c3afe00ac1a0140ce5c88495a8940082 \ |
---|
21 | rmd160 9b3511b6dc365d667995a18d7bed5eed6a912784 |
---|
22 | |
---|
23 | configure.env PATH=$env(PATH):${prefix}/lib/postgresql83/bin |
---|
24 | |
---|
25 | depends_build port:postgresql83 |
---|
26 | depends_lib port:libevent |
---|
27 | |
---|
28 | livecheck.check regex |
---|
29 | livecheck.url http://pgfoundry.org/frs/?group_id=1000258 |
---|
30 | livecheck.regex pgbouncer-(\[0-9\\.\]+)\\.tgz |
---|
31 | |
---|
32 | variant postgresql82 description {uses postgresql82 installation} { |
---|
33 | depends_build port:postgresql82 |
---|
34 | configure.env PATH=$env(PATH):${prefix}/lib/postgresql82/bin |
---|
35 | } |
---|