There are 3 things needed:
1st: DarwinPorts: (make sure you do a selfupdate if you have it installed) http://darwinports.opendarwin.org/
2nd: Xcode: (do not use the version from your install disk) http://developer.apple.com/tools/download/
3rd: X11SDK: Can be installed from Xcode via a custom install
Not "needed" but should be installed for use with darwinports:
X11: From your OS X install DVD. Then do an Apple software update to get the newest version.
Ports needed:
Code: Select all
sudo port install autogen
sudo port install autoconf
sudo port install automake
sudo port install nano
sudo port install libtool
sudo port install libsdl
sudo port install patchutils
sudo port install subversion
sudo port install wget
sudo port install gmake
Code: Select all
sudo port install autogen autoconf automake nano libtool libsdl patchutils subversion wget gmake
Code: Select all
cd ~/
Code: Select all
nano .bash_profile
Code: Select all
export PSPDEV="/usr/local/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"
export PATH="/opt/local/bin:$PATH:$PSPPATH"
Code: Select all
sudo mkdir -p /usr/local/pspdev
Code: Select all
sudo chmod a+rwx /usr/local/pspdev
Code: Select all
svn co svn://svn.ps2dev.org/psp/trunk/psptoolchain
Code: Select all
cd psptoolchain
Code: Select all
./toolchain.sh
Thank you very much to the other Mac guides here for getting me started.