Ticket #16044: 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.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/1532/
19checksums               md5 47bde1402f1a99dfc69f2f610fc1a36c \
20                        sha1 2b3c9a3c6ea620d2e35d4c857592e54afb5c727c \
21                        rmd160 7f2b4364c575109d3a59a909494029f80b542b2c
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\\.\]+)\\.tar\\.gz
31
32variant postgresql82 description {uses postgresql82 installation} {
33        depends_build           port:postgresql82
34        configure.env           PATH=$env(PATH):${prefix}/lib/postgresql82/bin
35}