New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80394


Ignore:
Timestamp:
07/11/11 08:03:07 (4 years ago)
Author:
macsforever2000@…
Message:

bacula: Remove broken mysql4 variant. (#30122)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/sysutils/bacula/Portfile

    r76584 r80394  
    8383startupitem.stop    "\[ -r \${PID} \] && /bin/kill \$(cat \${PID})" 
    8484 
    85 variant client_only conflicts mysql4 mysql5 postgresql83 postgresql84 sqlite2 sqlite3 description "Install bacula client (bacula-fd) only" { 
     85variant client_only conflicts mysql5 postgresql83 postgresql84 sqlite2 sqlite3 description "Install bacula client (bacula-fd) only" { 
    8686  configure.args-append --enable-client-only 
    8787} 
    8888 
    89 variant mysql4 conflicts client_only mysql5 postgresql83 postgresql84 sqlite2 sqlite3 description "Install bacula client and server with mysql 4 backend" { 
    90   depends_lib-append    port:mysql4 
    91   configure.args-append --with-mysql 
    92   configure.args-delete --without-mysql 
    93 } 
    94  
    95 variant mysql5 conflicts client_only mysql4 postgresql83 postgresql84 sqlite2 sqlite3 description "Install bacula client and server with mysql 5 backend" { 
     89variant mysql5 conflicts client_only postgresql83 postgresql84 sqlite2 sqlite3 description "Install bacula client and server with mysql 5 backend" { 
    9690  depends_lib-append    path:bin/mysql_config5:mysql5 
    9791  configure.args-append --with-mysql 
     
    9993} 
    10094 
    101 variant postgresql83 conflicts mysql4 mysql5 postgresql84 sqlite2 sqlite3 client_only description "Install bacula client and server with postgresql 8.3 backend" { 
     95variant postgresql83 conflicts mysql5 postgresql84 sqlite2 sqlite3 client_only description "Install bacula client and server with postgresql 8.3 backend" { 
    10296  depends_lib-append    port:postgresql83 
    10397  configure.args-append --with-postgresql 
     
    106100} 
    107101 
    108 variant postgresql84 conflicts mysql4 mysql5 postgresql83 sqlite2 sqlite3 client_only description "Install bacula client and server with postgresql 8.4 backend" { 
     102variant postgresql84 conflicts mysql5 postgresql83 sqlite2 sqlite3 client_only description "Install bacula client and server with postgresql 8.4 backend" { 
    109103  depends_lib-append    port:postgresql84 
    110104  configure.args-append --with-postgresql 
     
    113107} 
    114108 
    115 variant sqlite2 conflicts client_only sqlite3 mysql4 mysql5 postgresql83 postgresql84 description "Install bacula client and server with sqlite 2 backend" { 
     109variant sqlite2 conflicts client_only sqlite3 mysql5 postgresql83 postgresql84 description "Install bacula client and server with sqlite 2 backend" { 
    116110  depends_lib-append    port:sqlite2 
    117111  configure.args-append --with-sqlite=${prefix} 
     
    119113} 
    120114 
    121 variant sqlite3 conflicts client_only sqlite2 mysql4 mysql5 postgresql83 postgresql84 description "Install bacula client and server with sqlite 3 backend" { 
     115variant sqlite3 conflicts client_only sqlite2 mysql5 postgresql83 postgresql84 description "Install bacula client and server with sqlite 3 backend" { 
    122116  depends_lib-append    port:sqlite3 
    123117  configure.args-append --with-sqlite3=${prefix} 
     
    125119} 
    126120 
    127 if {![variant_isset mysql4] && ![variant_isset mysql5] && ![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset sqlite2] && ![variant_isset sqlite3]} { 
     121if {![variant_isset mysql5] && ![variant_isset postgresql83] && ![variant_isset postgresql84] && ![variant_isset sqlite2] && ![variant_isset sqlite3]} { 
    128122  default_variants +client_only 
    129123} 
Note: See TracChangeset for help on using the changeset viewer.