On Sat, 16 Oct 2004, Jon A. Cruz wrote:
David Christian Berg wrote:
Thanx for your reply, Bryce,
I don't mind cvs, but I had a look at the cvs stuff on sourceforge and didn't know where to go from there. And I'm not even sure, what you mean by checking out the code.
From the main SF project page, the "CVS Repository" link should take you to http://sourceforge.net/cvs/?group_id=93438
To boil this down a bit further:
Now, assuming you are on Linux (or have a command-line version of CVS installed)
Make a directory to hold the source and change to it
mkdir ~/src cd ~/src
cvs -d:pserver:anonymous@...54...:/cvsroot/inkscape login (When it prompts for a password, just hit return)
cvs -z3 -d:pserver:anonymous@...54...:/cvsroot/inkscape co inkscape
Then you should be able to do:
cd inkscape ./autogen.sh ./configure # Will report if you have dependency issues make ./src/inkscape # Runs the program
Hope this helps, just yell if you run into trouble. :-)
Bryce