summaryrefslogtreecommitdiffstats
path: root/perl-install/g_auto_install
blob: 871a159453df02aea1ed3186115eca41b14893f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!../perl

my $dir = `pwd`;
chomp $dir;
$dir .= "/../../..";

$ENV{PERL5LIB} = join ":", map { "$dir/$_" } @INC;
$ENV{LD_LIBRARY_PATH} = "$dir/lib:$dir/usr/lib";
$ENV{PATH} = join(":", map { "$dir/$_" } split ":", "/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin") . ":$ENV{PATH}";
$ENV{SHARE_PATH} = "$dir/usr/share";

exec "../../../lib/ld-linux.so.2", "../perl", "./install2", "--g_auto_install", @ARGV or die;
n34' href='#n34'>34 35 36 37 38 39 40 41 42 43
style "font"
{
  fontset = "-*-*-medium-r-normal-*-8-*-*-*-*-*-iso8859-1,*-r-*"
}

style "red" = "font"
{
  bg[NORMAL] = { 1.0, 0, 0 }
  bg[PRELIGHT] = { 0.9, 0, 0 }
}
style "darkred" = "font"
{
  bg[NORMAL] = { 0.7, 0, 0 }
  bg[PRELIGHT] = { 0.6, 0, 0 }
}
style "green" = "font"
{
  bg[NORMAL] = { 0, 1.0, 0 }
  bg[PRELIGHT] = { 0, 0.9, 0 }
  fg[NORMAL] = { 0, 0, 0 }
}
style "blue" = "font"
{
  bg[NORMAL] = { 0, 0, 1.0 }
  bg[PRELIGHT] = { 0, 0, 0.9 }
}
style "white" = "font"
{
  bg[NORMAL] = { 1.0, 1.0, 1.0 }
  bg[PRELIGHT] = { 0.67, 0.67, 0.67 }
  fg[NORMAL] = { 0, 0, 0 }
}

widget "*Linux*"      style "red" 
widget "*Ext2*"       style "red" 
widget "*Journalised FS*"   style "darkred" 
widget "*Linux swap*" style "green"
widget "*Swap*"       style "green"
widget "*FAT*"        style "blue"
widget "*SunOS*"      style "blue"
widget "*NT NTFS*"    style "blue"
widget "*Empty*"      style "white"
widget "*Other*"      style "font"