There are some commands with a wrong syntax in the guide under:
http://laanx.fragnetics.com/index.php?page=build_gentooAll the cvs \"checkout\" or \"co\" commands won\'t work as written there.
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/cal3d co cal3d -D 2005-05-18 12:00:00
This won\'t work because firstly the \"-D\" option has to come in front of the \"cal3d\" parameter and secondly because the shell won\'t recognize \"2005-05-18 12:00:00\" as a single command paramet but two different parameters due to the space in between.
Correct would be in this case:
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/cal3d co -D \"2005-05-18 12:00:00\" cal3d
According to the cvs manual:
cvs [ global_options ] command [ command_options ] [ command_args ]
and the checkout synopsis:
checkout [options] modules?
Greet,
Termon