Hi Kilghaz,
I just build dolphin-svn rev3724 with Xcode 3.1.3 and the very latest MacPorts on my white iMac 24" Intel Core 2 Duo @ 2.16GHz with NVIDIA GeForce 7300 GT.
This version seems to work much better than older svn-version I compiled...well I get finally a green screen (
It could also be that my NVIDIA GeForce 7300GT is not good supported...
) and sound seems to work (choppy). I tried to modify the Dolphin.ini file but no success to get any real graphics. However this is a little progress in the good direction!
Can you give me some clues how you tweaked your Dolphin.ini file ?
Some people suggested to put the folder "Plug-Ins" and "Sys" from the binary "Dolphin.app/Contents/" to ~/Library/Application Support/Dolphin/. But I don't think that it will change something...what do you suggest ?
Someone posted a nice shell script to download and install the latest svn code. I just tweaked it to upgrade also the latest ports MacPorts.org. You should use this script only if you have already the ports of MacPorts.org installed. (Note: a good GUI for Macports is Porticus, here:
http://porticus.alittledrop.com/
Here's my modified bash script:
#-- BEGIN of script ---------------------------------------------------------------------
#!/bin/bash
echo "Updating Ports collection"
sudo port -v selfupdate
echo "Upgrading latest libao, cairo, scons, wxwidgets and glew if available"
sudo port -vR upgrade libao cairo scons wxwidgets glew
echo "Downloading dolphin-emu svn code"
svn checkout
http://dolphin-emu.googlecode.com/svn/trunk/ dolphin-emu-read-only
echo "Building dolphin-emu svn code with 'scons'"
cd dolphin-emu-read-only
echo "Cleaning up builds with scons"
scons -c .
echo "Finally building latest Dolphin-svn with scons"
scons
#-- END of script ---------------------------------------------------------------------
Hope this helps the Mac Community ;-)
gilcel