Changeset 38960 for trunk/base/src
- Timestamp:
- 2008-08-04 02:23:00 (4 months ago)
- Location:
- trunk/base/src/port1.0
- Files:
-
- 2 modified
-
portextract.tcl (modified) (2 diffs)
-
portfetch.tcl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/base/src/port1.0/portextract.tcl
r38038 r38960 59 59 60 60 proc extract_init {args} { 61 global extract.only extract.dir extract.cmd extract.pre_args extract.post_args extract.mkdir distfiles use_bzip2 use_ zip use_dmg workpath61 global extract.only extract.dir extract.cmd extract.pre_args extract.post_args extract.mkdir distfiles use_bzip2 use_lzma use_zip use_dmg workpath 62 62 63 63 # should the distfiles be extracted to worksrcpath instead? … … 71 71 if {[tbool use_bzip2]} { 72 72 option extract.cmd [binaryInPath "bzip2"] 73 } elseif {[tbool use_lzma]} { 74 option extract.cmd [binaryInPath "lzma"] 73 75 } elseif {[tbool use_zip]} { 74 76 option extract.cmd [binaryInPath "unzip"] -
trunk/base/src/port1.0/portfetch.tcl
r38163 r38960 101 101 # Option-executed procedures 102 102 option_proc use_bzip2 fix_extract_suffix 103 option_proc use_lzma fix_extract_suffix 103 104 option_proc use_zip fix_extract_suffix 104 105 option_proc use_dmg fix_extract_suffix … … 110 111 use_bzip2 { 111 112 set extract.suffix .tar.bz2 113 } 114 use_lzma { 115 set extract.suffix .tar.lzma 112 116 } 113 117 use_zip {

