]> Destination CVSROOT Specifies the destination CVS repository location and protocol. Defaults to the CVSROOT environment variable. If this is a local directory, VCP can initialize it for you. $default = empty $ENV{CVSROOT} ? undef : $ENV{CVSROOT}; cvs require VCP::Dest::cvs; $ui->{Dest} = VCP::Dest::cvs->new; $ui->{Dest}->repo_scheme( 'cvs' ); $ui->{Dest}->repo_server( $answer ) unless empty $answer; Destination CVS filespec Where to copy revisions to in the destination specified by CVSROOT. This must start with a CVS module name and may be in a subdirectory of the result: module/... module/path/to/directory/... module/path/to/file For directories, this should contain a trailing "..." wildcard, like "module/b/..." to indicate that the path is a directory. module/filepath/... $ui->{Dest}->repo_filespec( $answer ); 'cvs init' the destination CVSROOT If the destination CVSROOT is a local directory, should VCP initialize a cvs repository in it? $default = "no"; yes $ui->{Dest}->{CVS_INIT_CVSROOT} = 1; no