Ticket #16248: Portfile

File Portfile, 1.2 KB (added by giorgio_v@…, 16 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    pgbouncer
6version                 1.2.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/1872/
19checksums               md5 522391cbb1fcb9134441d6b64e31ddd3 \
20                        sha1 e4268767c3a4861b038dec323dab18e4fe84eb03 \
21                        rmd160 b3037661cdd2d52cc72b0de93f92975a4da6f88a
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}