Office-Mini-2:~ myth24$ svn diff .osx-packager/src/myth-svn/packaging/
|
|
|
|
| 35 | 35 | # |
| 36 | 36 | our $backend = 0; |
| 37 | 37 | our $jobtools = 0; |
| | 38 | our $feplus = 0; |
| 38 | 39 | |
| 39 | 40 | # Parallel makes? |
| 40 | 41 | # |
| … |
… |
|
| 50 | 51 | our @components = ( 'myththemes', 'mythplugins' ); |
| 51 | 52 | |
| 52 | 53 | # The OS X programs that we are likely to be interested in. |
| 53 | | our @targets = ( 'MythFrontend', 'MythAVTest', 'MythWelcome' ); |
| | 54 | our @targets = ( 'MythFrontend' ); |
| | 55 | our @targetTW = ( 'MythAVTest', 'MythWelcome'); # WCT-make Test & Welcome options |
| 54 | 56 | our @targetsJT = ( 'MythCommFlag', 'MythJobQueue'); |
| 55 | 57 | our @targetsBE = ( 'MythBackend', 'MythFillDatabase', 'MythTV-Setup'); |
| 56 | 58 | |
| … |
… |
|
| 288 | 290 | -nohead don't update to HEAD revision of MythTV before building |
| 289 | 291 | -usehdimage perform build inside of a case-sensitive disk image |
| 290 | 292 | -leavehdimage leave disk image mounted on exit |
| | 293 | -enable-feplus build MythAVTest and MythWelcome as well as the frontend |
| 291 | 294 | -enable-backend build the backend server as well as the frontend |
| 292 | 295 | -enable-jobtools build commflag/jobqueue as well as the frontend |
| 293 | 296 | -profile build with compile-type=profile |
| … |
… |
|
| 360 | 363 | 'nohead', |
| 361 | 364 | 'usehdimage', |
| 362 | 365 | 'leavehdimage', |
| | 366 | 'enable-feplus', |
| 363 | 367 | 'enable-backend', |
| 364 | 368 | 'enable-jobtools', |
| 365 | 369 | 'profile', |
| … |
… |
|
| 382 | 386 | if ( $OPT{'enable-jobtools'} ) |
| 383 | 387 | { $jobtools = 1 } |
| 384 | 388 | |
| | 389 | if ( $OPT{'enable-feplus'} ) # add MythAVTest and MythWelcome |
| | 390 | { $feplus = 1 } |
| | 391 | |
| 385 | 392 | # Get version string sorted out |
| 386 | 393 | if ( $OPT{'svntag'} && !$OPT{'version'} ) |
| 387 | 394 | { |
| … |
… |
|
| 1052 | 1059 | if ( $jobtools ) |
| 1053 | 1060 | { push @targets, @targetsJT } |
| 1054 | 1061 | |
| | 1062 | if ( $feplus ) |
| | 1063 | { push @targets, @targetTW } |
| | 1064 | |
| 1055 | 1065 | if ( $backend ) |
| 1056 | 1066 | { push @targets, @targetsBE } |