Hi MBUser; this my first post to the forum, so forgive me if make some silly mistakes with the formatting!
I spent much of the weekend getting Inkscape to run on my shiny new iMac, and I know how frustrating it can be to get inkscape running! I think I've got it running now under Leopard 10.5.1, so I'll try to outline all the steps I needed to take to get it to run. Forgive me if I accidentally leave something out; this took a lot of stages to figure out.
First, install the latest version of
XQuartz. XQuartz is a community upgraded version of Apple's X11, and is apparently stabler with apps like Inkscape.
Next, the standard version of Inkscape has a startup script that doesn't work with Leopard. I got it working by hacking the script myself, but then I found an easier method: download the version of Inkscape
with the fix built in. This version should work okay with X11.
Finally, you might want to change the key bindings in X11, as the Option/Alt key doesn't work very well for me with Control. I've set it up so both the Command and Control keys work as control. I think the way I changed this is by creating a plain text file in your home directory with your favourite editor like TextEdit (it must be plain text, not rich formated) with the following commands:
Code: Select all
clear control
clear mod1
keycode 63 = Control_L
keycode 66 = Alt_L
keycode 67 = Control_L
keycode 69 = Alt_R
keycode 70 = Control_R
keycode 71 = Control_R
add control = Control_L Control_R
add mod_1 = Alt_L Alt_R
Then open up a Terminal (it's under Application/Utilities). First type in "xmodmap -pke > xkeydefault"; xmodmap is a program that will set the keys in X11. Typing in "xmodmap -pke" will list the current settings, and the "> xkeydefault" bit at the end will save the settings to a file called xkeydefault. You may need this to set things back to as they were if you make a mistake.
Finally type in "xmodmap nameofyourtextfile", where you replace "nameofyourtextfile" with the name of the file where you saved the commands up above. xmodmap will change the keys to set Command and Control to both act like Control under X11. If you don't like it, you can type in "xmodmap xkeydefault" and it will set the keys back to as they were.
Hopefully I got all that right and it works for you.
Incidentally, is there a plan to make a native version of Inkscape for Mac OS X, as I'd really like to see one. If there is, I'd be happy to help out as a tester or debugger; I'm a bit of a programmer although I've never worked on a native Mac app or something as large as Inkscape before.