Ticket #16207: Portfile

File Portfile, 1.1 KB (added by giorgio_v@…, 16 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    pgbouncer
6version                 1.2
7categories              databases
8platforms               darwin
9maintainers             mac.com:giorgio_v
10description             Lightweight connection pooler for PostgreSQL
11long_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
17homepage                http://pgbouncer.projects.postgresql.org/
18master_sites            http://pgfoundry.org/frs/download.php/1866/
19checksums               md5 4c6b731828b30d24d29b821fd052fc28 \
20                        sha1 e71f64f6c3afe00ac1a0140ce5c88495a8940082 \
21                        rmd160 9b3511b6dc365d667995a18d7bed5eed6a912784
22
23configure.env           PATH=$env(PATH):${prefix}/lib/postgresql83/bin
24
25depends_build           port:postgresql83
26depends_lib             port:libevent
27
28livecheck.check regex
29livecheck.url   http://pgfoundry.org/frs/?group_id=1000258
30livecheck.regex pgbouncer-(\[0-9\\.\]+)\\.tgz
31
32variant postgresql82 description {uses postgresql82 installation} {
33        depends_build           port:postgresql82
34        configure.env           PATH=$env(PATH):${prefix}/lib/postgresql82/bin
35}