OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
6.1 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../vmware/vmware-install.patch
  5. # Copyright (C) 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- T2-COPYRIGHT-NOTE-END ---
  16. --- vmware-distrib/vmware-install.pl
  17. +++ vmware-distrib/vmware-install.pl
  18. 1955,1956c1955,1959
  19. < $answer = get_persistent_answer('In which directory do you want to install the binary files?',
  20. < 'BINDIR', 'dirpath', $rootdir . '/bin');
  21. ---
  22. > # $answer = get_persistent_answer('In which directory do you want to install the binary files?',
  23. > #
  24. > # 'BINDIR', 'dirpath', $rootdir . '/bin');
  25. > $answer = $rootdir.'/bin';
  26. > db_add_answer('BINDIR',$answer);
  27. 1983,1984c1986,1988
  28. < $answer = get_answer('In which directory do you want to install '
  29. < . 'the daemon files?', 'dirpath', $rootdir . '/sbin');
  30. ---
  31. > #$answer = get_answer('In which directory do you want to install '
  32. > # . 'the daemon files?', 'dirpath', $rootdir . '/sbin');
  33. > $answer = $rootdir . '/sbin';
  34. 1992,1993c1996,1998
  35. < $answer = get_answer('In which directory do you want to install the library files?',
  36. < 'dirpath', $rootdir . '/lib/vmware');
  37. ---
  38. > #$answer = get_answer('In which directory do you want to install the library files?',
  39. > # 'dirpath', $rootdir . '/lib/vmware');
  40. > $answer = $rootdir . '/lib/vmware';
  41. 2007,2008c2012,2014
  42. < $answer = get_answer('In which directory do you want to install the manual files?',
  43. < 'dirpath', $mandir);
  44. ---
  45. > #$answer = get_answer('In which directory do you want to install the manual files?',
  46. > # 'dirpath', $mandir);
  47. > $answer = $mandir;
  48. 2018,2019c2024,2026
  49. < $answer = get_answer('In which directory do you want to install the documentation files?',
  50. < 'dirpath', $docdir . '/vmware');
  51. ---
  52. > #$answer = get_answer('In which directory do you want to install the documentation files?',
  53. > # 'dirpath', $docdir . '/vmware');
  54. > $answer = $docdir;
  55. 2056,2059c2063,2068
  56. < $answer = get_persistent_answer('What is the directory that contains the init'
  57. < .' directories (rc0.d/ to rc6.d/)?'
  58. < , 'INITDIR', 'initdirpath', $initdir);
  59. <
  60. ---
  61. > #$answer = get_persistent_answer('What is the directory that contains the init'
  62. > # .' directories (rc0.d/ to rc6.d/)?'
  63. > # , 'INITDIR', 'initdirpath', $initdir);
  64. > db_add_answer('INITDIR',$initdir);
  65. > $answer = $initdir;
  66. >
  67. 2069,2071c2078,2082
  68. < $answer = get_persistent_answer('What is the directory that contains the init'
  69. < .' scripts?', 'INITSCRIPTSDIR'
  70. < , 'initscriptsdirpath', $initscriptsdir);
  71. ---
  72. > #$answer = get_persistent_answer('What is the directory that contains the init'
  73. > # .' scripts?', 'INITSCRIPTSDIR'
  74. > # , 'initscriptsdirpath', $initscriptsdir);
  75. > $answer = $answer . '/init.d';
  76. > db_add_answer('INITSCRIPTSDIR',$answer);
  77. 2783c2794,2795
  78. < $ENV{'PATH'} = '/bin:/usr/bin:/sbin:/usr/sbin';
  79. ---
  80. > # --- removed for SDE
  81. > # $ENV{'PATH'} = '/bin:/usr/bin:/sbin:/usr/sbin';
  82. 2878,2880c2890,2894
  83. < db_remove_answer('EULA_AGREED');
  84. < db_remove_answer('ISC_COPYRIGHT_SEEN');
  85. <
  86. ---
  87. > #db_remove_answer('EULA_AGREED');
  88. > #db_remove_answer('ISC_COPYRIGHT_SEEN');
  89. > db_add_answer('EULA_AGREED','yes');
  90. > db_add_answer('ISC_COPYRIGHT_SEEN','yes');
  91. >
  92. 2888,2897c2902,2911
  93. < $answer = get_persistent_answer('Before running '
  94. < . vmware_product_name()
  95. < . ' for the first time, you need to '
  96. < . 'configure it by invoking the '
  97. < . 'following command: "'
  98. < . db_get_answer('BINDIR')
  99. < . '/' . "$gConfigurator" . '". Do you '
  100. < . 'want this program to invoke the '
  101. < . 'command for you now?'
  102. < , 'RUN_CONFIGURATOR', 'yesno', 'yes');
  103. ---
  104. > # $answer = get_persistent_answer('Before running '
  105. > # . vmware_product_name()
  106. > # . ' for the first time, you need to '
  107. > # . 'configure it by invoking the '
  108. > # . 'following command: "'
  109. > # . db_get_answer('BINDIR')
  110. > # . '/' . "$gConfigurator" . '". Do you '
  111. > # . 'want this program to invoke the '
  112. > # . 'command for you now?'
  113. > # , 'RUN_CONFIGURATOR', 'yesno', 'yes');
  114. 2899,2902c2913,2916
  115. < print wrap('Before running ' . vmware_product_name() . ' for the first'
  116. < . ' time, you need to configure it by invoking the'
  117. < . ' following command: "' . db_get_answer('BINDIR')
  118. < . '/' . "$gConfigurator" . '"' . "\n\n", 0);
  119. ---
  120. > # print wrap('Before running ' . vmware_product_name() . ' for the first'
  121. > # . ' time, you need to configure it by invoking the'
  122. > # . ' following command: "' . db_get_answer('BINDIR')
  123. > # . '/' . "$gConfigurator" . '"' . "\n\n", 0);
  124. 2908c2922
  125. <
  126. ---
  127. > $answer = 'no';