Ticket #32453: Portfile-py-psycopg2.diff
File Portfile-py-psycopg2.diff, 1.8 KB (added by shirshegsm@…, 13 years ago) |
---|
-
Portfile
old new 51 51 s|@PG_CONFIG@|${prefix}/lib/postgresql90/bin/pg_config|g \ 52 52 ${worksrcpath}/setup.cfg 53 53 } 54 55 if {[variant_isset postgresql91]} { 56 reinplace \ 57 s|@PG_CONFIG@|${prefix}/lib/postgresql91/bin/pg_config|g \ 58 ${worksrcpath}/setup.cfg 59 } 54 60 } 55 61 56 62 livecheck.type none … … 60 66 } 61 67 62 68 63 if {![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset postgresql90] } {64 default_variants +postgresql9 069 if {![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset postgresql90] && ![variant_isset postgresql91]} { 70 default_variants +postgresql91 65 71 } 66 72 67 variant postgresql83 conflicts postgresql84 postgresql90 description "Build using postgresql v8.3" {73 variant postgresql83 conflicts postgresql84 postgresql90 postgresql91 description "Build using postgresql v8.3" { 68 74 depends_lib-append port:postgresql83 69 75 } 70 76 71 variant postgresql84 conflicts postgresql83 postgresql90 description "Build using postgresql v8.4" {77 variant postgresql84 conflicts postgresql83 postgresql90 postgresql91 description "Build using postgresql v8.4" { 72 78 depends_lib-append port:postgresql84 73 79 } 74 80 75 variant postgresql90 conflicts postgresql83 postgresql84 description "Build using postgresql v9.0" {81 variant postgresql90 conflicts postgresql83 postgresql84 postgresql91 description "Build using postgresql v9.0" { 76 82 depends_lib-append port:postgresql90 77 83 } 84 85 variant postgresql91 conflicts postgresql83 postgresql84 postgresql90 description "Build using postgresql v9.1" { 86 depends_lib-append port:postgresql91 87 }