Ticket #40491: Portfile-postgresql92-postgresql93.diff

File Portfile-postgresql92-postgresql93.diff, 6.4 KB (added by gregori.emiliano@…, 11 years ago)
  • Portfile

    old new  
    2525                      port:p${perl5.major}-test-yaml-meta \
    2626                      port:p${perl5.major}-test-warn
    2727
    28 variant postgresql7 conflicts postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql7 port} {
     28variant postgresql7 conflicts postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql7 port} {
    2929    depends_lib-append      port:postgresql7
    3030
    3131    configure.env           PATH=${prefix}/lib/pgsql7/bin:$env(PATH) \
     
    3333                            POSTGRES_LIB="${prefix}/lib/pgsql7 -lssl"
    3434}
    3535
    36 variant postgresql80 conflicts postgresql7 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql80 port} {
     36variant postgresql80 conflicts postgresql7 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql80 port} {
    3737    depends_lib-append      port:postgresql80
    3838
    3939    configure.env           PATH=${prefix}/lib/pgsql8/bin:$env(PATH) \
     
    4141                            POSTGRES_LIB="${prefix}/lib/pgsql8 -lssl"
    4242}
    4343
    44 variant postgresql81 conflicts postgresql7 postgresql80 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql81 port} {
     44variant postgresql81 conflicts postgresql7 postgresql80 postgresql82 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql81 port} {
    4545    depends_lib-append      port:postgresql81
    4646
    4747    configure.env           PATH=${prefix}/lib/postgresql81/bin:$env(PATH) \
     
    4949                            POSTGRES_LIB="${prefix}/lib/postgresql81 -lssl"
    5050}
    5151
    52 variant postgresql82 conflicts postgresql7 postgresql80 postgresql81 postgresql83 postgresql84 postgresql90 postgresql91 description {build with postgresql82 port} {
     52variant postgresql82 conflicts postgresql7 postgresql80 postgresql81 postgresql83 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql82 port} {
    5353    depends_lib-append      port:postgresql82
    5454
    5555    configure.env           PATH=${prefix}/lib/postgresql82/bin:$env(PATH) \
     
    5757                            POSTGRES_LIB="${prefix}/lib/postgresql82 -lssl"
    5858}
    5959
    60 variant postgresql83 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql84 postgresql90 postgresql91 description {build with postgresql83 port} {
     60variant postgresql83 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql84 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql83 port} {
    6161    depends_lib-append      port:postgresql83
    6262
    6363    configure.env           PATH=${prefix}/lib/postgresql83/bin:$env(PATH) \
     
    6565                            POSTGRES_LIB="${prefix}/lib/postgresql83 -lssl"
    6666}
    6767
    68 variant postgresql84 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql90 postgresql91 description {build with postgresql84 port} {
     68variant postgresql84 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql90 postgresql91 postgresql92 postgresql93 description {build with postgresql84 port} {
    6969    depends_lib-append      port:postgresql84
    7070
    7171    configure.env           PATH=${prefix}/lib/postgresql84/bin:$env(PATH) \
     
    7373                            POSTGRES_LIB="${prefix}/lib/postgresql84 -lssl"
    7474}
    7575
    76 variant postgresql90 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql91 description {build with postgresql90 port} {
     76variant postgresql90 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql91 postgresql92 postgresql93 description {build with postgresql90 port} {
    7777    depends_lib-append      port:postgresql90
    7878
    7979    configure.env           PATH=${prefix}/lib/postgresql90/bin:$env(PATH) \
     
    8181                            POSTGRES_LIB="${prefix}/lib/postgresql90 -lssl"
    8282}
    8383
    84 variant postgresql91 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 description {build with postgresql91 port} {
     84variant postgresql91 conflicts postgresql7 postgresql80 postgresql81 postgresql82 postgresql83 postgresql84 postgresql90 postgresql92 postgresql93 description {build with postgresql91 port} {
    8585    depends_lib-append      port:postgresql91
    8686
    8787    configure.env           PATH=${prefix}/lib/postgresql91/bin:$env(PATH) \
     
    8989                            POSTGRES_LIB="${prefix}/lib/postgresql91 -lssl"
    9090}
    9191
     92variant 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
     100variant 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
    92108# 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        +postgresql91
     109if {![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
    95111}
    96112}