TAB/whitespace policing - no functional changes

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16383 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2008-02-23 10:03:51 +00:00
parent b68a762aef
commit a32de4f25f

View file

@ -37,7 +37,8 @@ if(!$wpslist) {
exit; exit;
} }
sub getlcdsizes { sub getlcdsizes
{
my ($remote) = @_; my ($remote) = @_;
open(GCC, ">gcctemp"); open(GCC, ">gcctemp");
@ -91,7 +92,8 @@ STOP
return ($height, $width, $depth); return ($height, $width, $depth);
} }
sub mkdirs { sub mkdirs
{
my $wpsdir = $wps; my $wpsdir = $wps;
$wpsdir =~ s/\.(r|)wps//; $wpsdir =~ s/\.(r|)wps//;
mkdir ".rockbox/wps", 0777; mkdir ".rockbox/wps", 0777;
@ -106,40 +108,44 @@ sub mkdirs {
} }
} }
sub copybackdrop { sub copybackdrop
#copy the backdrop file into the build dir {
$dst = $backdrop; #copy the backdrop file into the build dir
$dst =~ s/(\.[0-9]*x[0-9]*x[0-9]*)//; $dst = $backdrop;
$cmd = "cp $ROOT/$backdrop .rockbox/$dst"; $dst =~ s/(\.[0-9]*x[0-9]*x[0-9]*)//;
`$cmd`; $cmd = "cp $ROOT/$backdrop .rockbox/$dst";
`$cmd`;
} }
sub copythemefont { sub copythemefont
#copy the font specified by the theme {
#copy the font specified by the theme
$o=$font; $o=$font;
$o =~ s/\.fnt/\.bdf/; $o =~ s/\.fnt/\.bdf/;
`mkdir .rockbox/fonts/ >/dev/null 2>&1`; `mkdir .rockbox/fonts/ >/dev/null 2>&1`;
$cmd ="$ROOT/tools/convbdf -f -o \".rockbox/fonts/$font\" \"$ROOT/fonts/$o\" "; $cmd ="$ROOT/tools/convbdf -f -o \".rockbox/fonts/$font\" \"$ROOT/fonts/$o\" ";
`$cmd`; `$cmd`;
} }
sub copythemeicon { sub copythemeicon
#copy the icon specified by the theme {
#copy the icon specified by the theme
$iconset =~ /\/(.*icons\/(.*))/i; $iconset =~ /\/(.*icons\/(.*))/i;
`cp $ROOT/icons/$2 $1`; `cp $ROOT/icons/$2 $1`;
} }
sub copythemeviewericon { sub copythemeviewericon
#copy the viewer icon specified by the theme {
#copy the viewer icon specified by the theme
$viewericon =~ /\/(.*icons\/(.*))/i; $viewericon =~ /\/(.*icons\/(.*))/i;
`cp $ROOT/icons/$2 $1`; `cp $ROOT/icons/$2 $1`;
} }
sub copywps
sub copywps { {
# we assume that we copy the WPS files from the same dir the WPSLIST # we assume that we copy the WPS files from the same dir the WPSLIST
# file is located in # file is located in
my $dir; my $dir;
@ -214,8 +220,8 @@ MOO
push @out, "statusbar: $statusbar\n"; push @out, "statusbar: $statusbar\n";
} }
if($backdrop) { if($backdrop) {
#clip resolution from filename # clip resolution from filename
$backdrop =~ s/(\.[0-9]*x[0-9]*x[0-9]*)//; $backdrop =~ s/(\.[0-9]*x[0-9]*x[0-9]*)//;
push @out, "backdrop: /.rockbox/$backdrop\n"; push @out, "backdrop: /.rockbox/$backdrop\n";
} }
if($lineselectstart && $main_depth > 2) { if($lineselectstart && $main_depth > 2) {
@ -403,54 +409,51 @@ while(<WPS>) {
elsif($l =~ /^Statusbar\.${main_width}x${main_height}x$main_depth: (.*)/i) { elsif($l =~ /^Statusbar\.${main_width}x${main_height}x$main_depth: (.*)/i) {
$statusbar = $1; $statusbar = $1;
} }
elsif($l =~ /^Backdrop: (.*)/i) { elsif($l =~ /^Backdrop: (.*)/i) {
$backdrop = $1; $backdrop = $1;
copybackdrop(); copybackdrop();
} }
elsif($l =~ /^Backdrop\.${main_width}x${main_height}x$main_depth: (.*)/i) { elsif($l =~ /^Backdrop\.${main_width}x${main_height}x$main_depth: (.*)/i) {
$backdrop = $1; $backdrop = $1;
copybackdrop(); copybackdrop();
} }
elsif($l =~ /^line selector start color: (.*)/i) { elsif($l =~ /^line selector start color: (.*)/i) {
$lineselectstart = $1; $lineselectstart = $1;
} }
elsif($l =~ /^line selector end color: (.*)/i) { elsif($l =~ /^line selector end color: (.*)/i) {
$lineselectend = $1; $lineselectend = $1;
} }
elsif($l =~ /^selector type: (.*)/i) { elsif($l =~ /^selector type: (.*)/i) {
$selecttype = $1; $selecttype = $1;
} }
elsif($l =~ /^selector type\.${main_width}x${main_height}x$main_depth: (.*)/i) { elsif($l =~ /^selector type\.${main_width}x${main_height}x$main_depth: (.*)/i) {
$selecttype = $1; $selecttype = $1;
} }
elsif($l =~ /^iconset: (.*)/i) { elsif($l =~ /^iconset: (.*)/i) {
$iconset = $1; $iconset = $1;
copythemeicon(); copythemeicon();
} }
elsif($l =~ /^iconset\.${main_width}x${main_height}x$main_depth: (.*)/i) { elsif($l =~ /^iconset\.${main_width}x${main_height}x$main_depth: (.*)/i) {
$iconset = $1; $iconset = $1;
copythemeicon(); copythemeicon();
} }
elsif($l =~ /^viewers iconset: (.*)/i) { elsif($l =~ /^viewers iconset: (.*)/i) {
$viewericon = $1; $viewericon = $1;
copythemeviewericon(); copythemeviewericon();
} }
elsif($l =~ /^viewers iconset\.${main_width}x${main_height}x$main_depth: (.*)/i) { elsif($l =~ /^viewers iconset\.${main_width}x${main_height}x$main_depth: (.*)/i) {
$viewericon = $1; $viewericon = $1;
copythemeviewericon(); copythemeviewericon();
} }
elsif($l =~ /^line selector text color: (.*)/i) { elsif($l =~ /^line selector text color: (.*)/i) {
$lineselecttextcolor = $1; $lineselecttextcolor = $1;
} }
elsif($l =~ /^filetype colours: (.*)/i) { elsif($l =~ /^filetype colours: (.*)/i) {
$filetylecolor = $1; $filetylecolor = $1;
} }
else{ else{
#print "Unknown line: $l!\n"; #print "Unknown line: $l!\n";
} }
} }
} }