summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-devel/perl/files/Config.pm')
-rw-r--r--sys-devel/perl/files/Config.pm40
1 files changed, 40 insertions, 0 deletions
diff --git a/sys-devel/perl/files/Config.pm b/sys-devel/perl/files/Config.pm
new file mode 100644
index 000000000000..fed92867db53
--- /dev/null
+++ b/sys-devel/perl/files/Config.pm
@@ -0,0 +1,40 @@
+
+# This is CPAN.pm's systemwide configuration file. This file provides
+# defaults for users, and the values can be changed in a per-user
+# configuration file. The user-config file is being looked for as
+# ~/.cpan/CPAN/MyConfig.pm.
+
+$CPAN::Config = {
+ 'build_cache' => q[10],
+ 'build_dir' => q[/root/.cpan/build],
+ 'cache_metadata' => q[1],
+ 'cpan_home' => q[/root/.cpan],
+ 'ftp' => q[/usr/bin/ftp],
+ 'ftp_proxy' => q[],
+ 'getcwd' => q[cwd],
+ 'gzip' => q[/bin/gzip],
+ 'http_proxy' => q[],
+ 'inactivity_timeout' => q[0],
+ 'index_expire' => q[1],
+ 'inhibit_startup_message' => q[0],
+ 'keep_source_where' => q[/root/.cpan/sources],
+ 'lynx' => q[],
+ 'make' => q[/usr/bin/make],
+ 'make_arg' => q[],
+ 'make_install_arg' => q[],
+ 'makepl_arg' => q[],
+ 'ncftpget' => q[],
+ 'no_proxy' => q[],
+ 'pager' => q[/usr/bin/less],
+ 'prerequisites_policy' => q[ask],
+ 'scan_cache' => q[atstart],
+ 'shell' => q[/bin/bash],
+ 'tar' => q[/bin/tar],
+ 'term_is_latin' => q[1],
+ 'unzip' => q[/usr/bin/unzip],
+ 'urllist' => [],
+ 'wait_list' => [q[wait://ls6.informatik.uni-dortmund.de:1404]],
+ 'wget' => q[/usr/bin/wget],
+};
+1;
+__END__