Ticket #36761: Portfile-pgbouncer.2.diff
File Portfile-pgbouncer.2.diff, 2.9 KB (added by gthb (Gunnlaugur Thor Briem), 12 years ago) |
---|
-
Portfile
old new 3 3 PortSystem 1.0 4 4 5 5 name pgbouncer 6 version 1. 4.26 version 1.5.3 7 7 categories databases 8 8 platforms darwin 9 9 maintainers mac.com:giorgio_v … … 15 15 server, or to reuse one of its existing connections. 16 16 17 17 homepage http://pgbouncer.projects.postgresql.org/ 18 master_sites http://pgfoundry.org/frs/download.php/3 085/18 master_sites http://pgfoundry.org/frs/download.php/3369/ 19 19 20 20 21 checksums md5 5083110b5b4f2127234bfc7b1f451f8d\22 sha1 610198c3f2186d70267275f554e23bd43598e4b5\23 rmd160 055796e23dd7029d3f4a2c882cf24399a5481cb121 checksums md5 a6b975693a68cf6fa79a4b7def10930b \ 22 sha1 2811d32d39cb87a64e278d985178258072c5c8ef \ 23 rmd160 8e76cd3bb3cf4a91efd711f3e7a98d2eeefe8dd9 24 24 25 configure.env PATH=$env(PATH):${prefix}/lib/postgresql90/bin 26 27 depends_build port:postgresql90 25 default_variants +postgresql92 28 26 depends_lib port:libevent 29 27 30 28 livecheck.type regex 31 29 livecheck.url http://pgfoundry.org/frs/?group_id=1000258 32 30 livecheck.regex pgbouncer-(\[0-9\\.\]+)\\.tgz 33 31 34 variant postgresql82 description {uses postgresql82 installation} {32 variant postgresql82 conflicts postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 description {uses postgresql82 installation} { 35 33 depends_build port:postgresql82 36 34 configure.env PATH=$env(PATH):${prefix}/lib/postgresql82/bin 37 35 } 38 36 39 variant postgresql83 description {uses postgresql83 installation} {37 variant postgresql83 conflicts postgresql82 postgresql84 postgresql90 postgresql91 postgresql92 description {uses postgresql83 installation} { 40 38 depends_build port:postgresql83 41 39 configure.env PATH=$env(PATH):${prefix}/lib/postgresql83/bin 42 40 } 43 41 44 variant postgresql84 description {uses postgresql84 installation} {42 variant postgresql84 conflicts postgresql82 postgresql83 postgresql90 postgresql91 postgresql92 description {uses postgresql84 installation} { 45 43 depends_build port:postgresql84 46 44 configure.env PATH=$env(PATH):${prefix}/lib/postgresql84/bin 47 45 } 46 47 variant postgresql90 conflicts postgresql82 postgresql83 postgresql84 postgresql91 postgresql92 description {uses postgresql90 installation} { 48 depends_build port:postgresql90 49 configure.env PATH=$env(PATH):${prefix}/lib/postgresql90/bin 50 } 51 52 variant postgresql91 conflicts postgresql82 postgresql83 postgresql84 postgresql90 postgresql92 description {uses postgresql91 installation} { 53 depends_build port:postgresql91 54 configure.env PATH=$env(PATH):${prefix}/lib/postgresql91/bin 55 } 56 57 variant postgresql92 conflicts postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {uses postgresql92 installation} { 58 depends_build port:postgresql92 59 configure.env PATH=$env(PATH):${prefix}/lib/postgresql92/bin 60 }