Ticket #40491: Portfile-postgresql92-postgresql93.diff
File Portfile-postgresql92-postgresql93.diff, 6.4 KB (added by gregori.emiliano@…, 11 years ago) |
---|
-
Portfile
old new 25 25 port:p${perl5.major}-test-yaml-meta \ 26 26 port:p${perl5.major}-test-warn 27 27 28 variant postgresql7 conflicts postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql7 port} {28 variant postgresql7 conflicts postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql7 port} { 29 29 depends_lib-append port:postgresql7 30 30 31 31 configure.env PATH=${prefix}/lib/pgsql7/bin:$env(PATH) \ … … 33 33 POSTGRES_LIB="${prefix}/lib/pgsql7 -lssl" 34 34 } 35 35 36 variant postgresql80 conflicts postgresql7 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql80 port} {36 variant postgresql80 conflicts postgresql7 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql80 port} { 37 37 depends_lib-append port:postgresql80 38 38 39 39 configure.env PATH=${prefix}/lib/pgsql8/bin:$env(PATH) \ … … 41 41 POSTGRES_LIB="${prefix}/lib/pgsql8 -lssl" 42 42 } 43 43 44 variant postgresql81 conflicts postgresql7 postgresql80 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql81 port} {44 variant postgresql81 conflicts postgresql7 postgresql80 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql81 port} { 45 45 depends_lib-append port:postgresql81 46 46 47 47 configure.env PATH=${prefix}/lib/postgresql81/bin:$env(PATH) \ … … 49 49 POSTGRES_LIB="${prefix}/lib/postgresql81 -lssl" 50 50 } 51 51 52 variant postgresql82 conflicts postgresql7 postgresql80 postgresql81 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql82 port} {52 variant postgresql82 conflicts postgresql7 postgresql80 postgresql81 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql82 port} { 53 53 depends_lib-append port:postgresql82 54 54 55 55 configure.env PATH=${prefix}/lib/postgresql82/bin:$env(PATH) \ … … 57 57 POSTGRES_LIB="${prefix}/lib/postgresql82 -lssl" 58 58 } 59 59 60 variant postgresql83 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql84 postgresql90 postgresql91 description {build with postgresql83 port} {60 variant postgresql83 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql83 port} { 61 61 depends_lib-append port:postgresql83 62 62 63 63 configure.env PATH=${prefix}/lib/postgresql83/bin:$env(PATH) \ … … 65 65 POSTGRES_LIB="${prefix}/lib/postgresql83 -lssl" 66 66 } 67 67 68 variant postgresql84 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql90 postgresql91 description {build with postgresql84 port} {68 variant postgresql84 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql84 port} { 69 69 depends_lib-append port:postgresql84 70 70 71 71 configure.env PATH=${prefix}/lib/postgresql84/bin:$env(PATH) \ … … 73 73 POSTGRES_LIB="${prefix}/lib/postgresql84 -lssl" 74 74 } 75 75 76 variant postgresql90 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql91 description {build with postgresql90 port} {76 variant postgresql90 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql91 postgresql92 postgresql93 description {build with postgresql90 port} { 77 77 depends_lib-append port:postgresql90 78 78 79 79 configure.env PATH=${prefix}/lib/postgresql90/bin:$env(PATH) \ … … 81 81 POSTGRES_LIB="${prefix}/lib/postgresql90 -lssl" 82 82 } 83 83 84 variant postgresql91 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 description {build with postgresql91 port} {84 variant postgresql91 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql92 postgresql93 description {build with postgresql91 port} { 85 85 depends_lib-append port:postgresql91 86 86 87 87 configure.env PATH=${prefix}/lib/postgresql91/bin:$env(PATH) \ … … 89 89 POSTGRES_LIB="${prefix}/lib/postgresql91 -lssl" 90 90 } 91 91 92 variant postgresql92 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql93 description {build with postgresql92 port} { 93 depends_lib-append port:postgresql92 94 95 configure.env PATH=${prefix}/lib/postgresql92/bin:$env(PATH) \ 96 POSTGRES_INCLUDE="${prefix}/include/postgresql92" \ 97 POSTGRES_LIB="${prefix}/lib/postgresql92 -lssl" 98 } 99 100 variant postgresql93 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 description {build with postgresql93 port} { 101 depends_lib-append port:postgresql93 102 103 configure.env PATH=${prefix}/lib/postgresql93/bin:$env(PATH) \ 104 POSTGRES_INCLUDE="${prefix}/include/postgresql93" \ 105 POSTGRES_LIB="${prefix}/lib/postgresql93 -lssl" 106 } 107 92 108 # Default to latest release 93 if {![variant_isset postgresql7] && ![variant_isset postgresql80] && ![variant_isset postgresql81] && ![variant_isset postgresql82] && ![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset postgresql90] && ![variant_isset postgresql91] } {94 default_variants +postgresql9 1109 if {![variant_isset postgresql7] && ![variant_isset postgresql80] && ![variant_isset postgresql81] && ![variant_isset postgresql82] && ![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset postgresql90] && ![variant_isset postgresql91] && ![variant_isset postgresql92] && ![variant_isset postgresql93]} { 110 default_variants +postgresql93 95 111 } 96 112 }