Changeset 80939
- Timestamp:
- 07/21/11 14:37:33 (4 years ago)
- Location:
- trunk/www
- Files:
-
- 2 edited
-
includes/common.inc (modified) (2 diffs)
-
install.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/includes/common.inc
r80897 r80939 10 10 11 11 # MacPorts version variables: 12 $macports_version_latest = ' 1.9.2';12 $macports_version_latest = '2.0.0'; 13 13 14 14 … … 19 19 $svn_url = 'http://svn.macports.org/repository/macports/'; 20 20 $downloads = 'https://distfiles.macports.org/MacPorts/'; 21 $lion_dmg = $downloads . 'MacPorts-' . $macports_version_latest . '-10.7-Lion.dmg'; 21 22 $snowleopard_dmg = $downloads . 'MacPorts-' . $macports_version_latest . '-10.6-SnowLeopard.dmg'; 22 23 $leopard_dmg = $downloads . 'MacPorts-' . $macports_version_latest . '-10.5-Leopard.dmg'; 23 # no tiger dmg for 1.9.2 yet24 $tiger_dmg = $downloads . 'MacPorts-' . '1.9.1' . '-10.4-Tiger.dmg';25 #$tiger_dmg = $downloads . 'MacPorts-' . $macports_version_latest . '-10.4-Tiger.dmg';26 24 $bz2_tarball = $downloads . 'MacPorts-' . $macports_version_latest . '.tar.bz2'; 27 25 $gz_tarball = $downloads . 'MacPorts-' . $macports_version_latest . '.tar.gz'; -
trunk/www/install.php
r80899 r80939 3 3 /* $Id$ */ 4 4 /* Copyright (c) 2004, OpenDarwin. */ 5 /* Copyright (c) 2004-20 07, The MacPorts Project. */5 /* Copyright (c) 2004-2011, The MacPorts Project. */ 6 6 include_once("includes/common.inc"); 7 7 print_header('The MacPorts Project -- Download & Installation', 'utf-8'); … … 16 16 </p> 17 17 18 <p>Note for Lion users: There is no official release supporting Mac OS X 10.7 yet, but you can test the19 <a href="<?php print $downloads; ?>testing/">MacPorts 2.0.0 release candidate</a> if you like.</p>20 21 18 <ul> 22 <li>“dmg” disk images for <a href="<?php print $ snowleopard_dmg; ?>">Snow Leopard</a>,<a23 href="<?php print $ leopard_dmg; ?>">Leopard</a> and <a href="<?php print $tiger_dmg; ?>">Tiger24 </a> as a legacy platform, containing pkg installers for use with the Mac OS X Installer. By farthe simplest installation19 <li>“dmg” disk images for <a href="<?php print $lion_dmg; ?>">Lion</a> and <a 20 href="<?php print $snowleopard_dmg; ?>">Snow Leopard</a>. These contain pkg installers for use with the Mac OS X Installer. 21 This is the simplest installation 25 22 procedure that most users should <a href="#pkg">follow</a> after meeting the requirements listed <a href="#requirements"> 26 below</a>. </li>23 below</a>. An installer for <a href="<?php print $leopard_dmg; ?>">Leopard</a>, as a legacy platform, is also available.</li> 27 24 <li>In <a href="#source">source form</a> as either a <a href="<?php print $bz2_tarball ?>">tar.bz2</a> package or a 28 25 <a href="<?php print $gz_tarball; ?>">tar.gz</a> one for manual compilation, if you intend to customize your installation … … 43 40 44 41 <ol> 45 <li>Apple's <a href="http://developer.apple.com/tools/xcode/">Xcode</a> Developer Tools (version 3.2 or later for Snow Leopard, 46 3.1 or later for 47 Leopard, or 2.4.1 or later for Tiger), found at the <a href="http://connect.apple.com/">Apple Developer Connection</a> 48 site or on your Mac OS X installation CDs/DVD. Using the latest available version that will run on your OS is highly recommended. 42 <li>Apple's <a href="http://developer.apple.com/tools/xcode/">Xcode</a> Developer Tools (version 4.1 or later for Lion, 43 3.2 or later for 44 Snow Leopard, or 3.1 or later for Leopard), found at the <a href="http://connect.apple.com/">Apple Developer Connection</a> 45 site, on your Mac OS X installation CDs/DVD, or in the Mac App Store. Using the latest available version that will run on your 46 OS is highly recommended. 49 47 Ensure that the optional components for command line development are installed 50 48 ("Unix Development" in the Xcode 3.x installer).</li> … … 65 63 <h3 class="subhdr" id="pkg">Mac OS X Package (.pkg) Installer</h3> 66 64 67 <p>The easiest way to install MacPorts on a Mac OS X system is by downloading the dmg for <a href="<?php print $ snowleopard_dmg;68 ?>"> Snow Leopard</a>, <a href="<?php print $leopard_dmg; ?>">Leopard</a> or <a href="<?php print $tiger_dmg;69 ?>"> Tiger</a> and running the system's Installer by double-clicking on the pkg contained therein,65 <p>The easiest way to install MacPorts on a Mac OS X system is by downloading the dmg for <a href="<?php print $lion_dmg; 66 ?>">Lion</a>, <a href="<?php print $snowleopard_dmg; ?>">Snow Leopard</a> or <a href="<?php print $leopard_dmg; 67 ?>">Leopard</a> and running the system's Installer by double-clicking on the pkg contained therein, 70 68 following the on-screen instructions until completion.</p> 71 69 … … 180 178 <li><a href="http://rsync.samba.org/">rsync</a> for syncing the ports.</li> 181 179 <li><a href="http://curl.haxx.se/">cURL</a> for downloading distfiles.</li> 182 <li><a href="http://martin.hinner.info/libmd/">libmd</a> for checksums.</li>183 180 <li><a href="http://www.sqlite.org/">SQLite</a> for the port registry.</li> 184 181 <li><a href="http://gnustep.org/">GNUstep</a> (Base), for Foundation (optional, can be disabled via configure args).</li> 185 <li><a href="http://www.openssl.org/">OpenSSL</a> for signature verification (currently trunk only).</li> 182 <li><a href="http://www.openssl.org/">OpenSSL</a> for signature verification, and optionally for checksums. <b>libmd</b> may 183 be used instead for checksums.</li> 186 184 </ul> 187 185
Note: See TracChangeset
for help on using the changeset viewer.

