Ticket #36761: Portfile-pgbouncer.diff

File Portfile-pgbouncer.diff, 1.6 KB (added by gthb (Gunnlaugur Thor Briem), 12 years ago)

Patch updating pgbouncer

  • Portfile

    old new  
    33PortSystem 1.0
    44
    55name                    pgbouncer
    6 version                 1.4.2
     6version                 1.5.3
    77categories              databases
    88platforms               darwin
    99maintainers             mac.com:giorgio_v
     
    1515                        server, or to reuse one of its existing connections.
    1616
    1717homepage                http://pgbouncer.projects.postgresql.org/
    18 master_sites            http://pgfoundry.org/frs/download.php/3085/
     18master_sites            http://pgfoundry.org/frs/download.php/3369/
    1919
    2020
    21 checksums           md5     5083110b5b4f2127234bfc7b1f451f8d \
    22                     sha1    610198c3f2186d70267275f554e23bd43598e4b5 \
    23                     rmd160  055796e23dd7029d3f4a2c882cf24399a5481cb1
     21checksums           md5     a6b975693a68cf6fa79a4b7def10930b \
     22                    sha1    2811d32d39cb87a64e278d985178258072c5c8ef \
     23                    rmd160  8e76cd3bb3cf4a91efd711f3e7a98d2eeefe8dd9
    2424
    25 configure.env           PATH=$env(PATH):${prefix}/lib/postgresql90/bin
     25configure.env           PATH=$env(PATH):${prefix}/lib/postgresql92/bin
    2626
    27 depends_build           port:postgresql90
     27depends_build           port:postgresql92
    2828depends_lib             port:libevent
    2929
    3030livecheck.type  regex
     
    4545        depends_build           port:postgresql84
    4646        configure.env           PATH=$env(PATH):${prefix}/lib/postgresql84/bin
    4747}
     48
     49variant postgresql90 description {uses postgresql90 installation} {
     50        depends_build           port:postgresql90
     51        configure.env           PATH=$env(PATH):${prefix}/lib/postgresql90/bin
     52}
     53
     54variant postgresql91 description {uses postgresql91 installation} {
     55        depends_build           port:postgresql91
     56        configure.env           PATH=$env(PATH):${prefix}/lib/postgresql91/bin
     57}