1999-07-14 22:46:12 +00:00
|
|
|
#!#############################################################################
|
|
|
|
#! File: filelist.t
|
|
|
|
#! Purpose: tmake template file containig Perl code to parse the filelist.txt
|
|
|
|
#! file - this is used by all other templates.
|
|
|
|
#! Author: Vadim Zeitlin
|
|
|
|
#! Created: 14.07.99
|
|
|
|
#! Version: $Id$
|
|
|
|
#!#############################################################################
|
|
|
|
#${
|
|
|
|
open(FILELIST, "filelist.txt") or die "Can't open filelist file: $!\n";
|
|
|
|
|
|
|
|
line: while ( defined($_ = <FILELIST>) ) {
|
|
|
|
chomp;
|
|
|
|
|
|
|
|
#! comment or blank line, skip
|
|
|
|
next line if ( $_ eq "" or /^#/ );
|
|
|
|
|
|
|
|
#! if ( $verbose ) {
|
|
|
|
#! print STDERR "Processing line: '$_'\n";
|
|
|
|
#! }
|
|
|
|
|
2001-07-04 16:07:51 +00:00
|
|
|
my @fields = split /\t/;
|
|
|
|
|
|
|
|
#! first column is filename, second is type, third is flags
|
|
|
|
my ($filename, $filetype, $fileflags) = @fields;
|
|
|
|
|
1999-07-14 22:46:12 +00:00
|
|
|
if ( $#fields > 2 ) {
|
|
|
|
warn "Ignoring malformed line $_ in the filelist file.\n";
|
|
|
|
next line;
|
|
|
|
} elsif ( $#fields == 1 ) {
|
|
|
|
#! add an empty flags string
|
2001-07-04 16:07:51 +00:00
|
|
|
$fileflags = "";
|
1999-07-14 22:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( $verbose ) {
|
2001-07-04 16:07:51 +00:00
|
|
|
print STDERR "File $filename: type '$filetype', flags '$fileflags'\n";
|
1999-07-14 22:46:12 +00:00
|
|
|
}
|
|
|
|
|
2001-07-04 16:07:51 +00:00
|
|
|
#! this is a bit stupid but all templates are written using the old
|
|
|
|
#! single letter flags which became so unreadable that I decided to
|
|
|
|
#! replace them with more readable strings, but it was easier to do
|
|
|
|
#! the translation here instead of changing all *.t files
|
|
|
|
$fileflags =~ s/Base/B/;
|
|
|
|
$fileflags =~ s/NotWin32/16/;
|
|
|
|
$fileflags =~ s/Win32Only/32/;
|
|
|
|
$fileflags =~ s/Generic/G/;
|
|
|
|
$fileflags =~ s/OLE/O/;
|
|
|
|
$fileflags =~ s/Socket/S/;
|
|
|
|
$fileflags =~ s/NotMSW/U/;
|
|
|
|
$fileflags =~ s/NotOS2/P/;
|
|
|
|
$fileflags =~ s/LowLevel/L/;
|
2002-06-14 13:03:45 +00:00
|
|
|
$fileflags =~ s/Theme/T/;
|
2001-07-04 16:07:51 +00:00
|
|
|
|
|
|
|
if ( $filetype eq "Common" ) {
|
|
|
|
$wxCommon{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "Generic" ) {
|
|
|
|
$wxGeneric{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "MSW" ) {
|
|
|
|
$wxMSW{$filename} = $fileflags;
|
2001-10-04 21:33:22 +00:00
|
|
|
} elsif ( $filetype eq "Mac" ) {
|
|
|
|
$wxMAC{$filename} = $fileflags;
|
2001-07-04 16:07:51 +00:00
|
|
|
} elsif ( $filetype eq "Motif" ) {
|
|
|
|
$wxMOTIF{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "GTK" ) {
|
|
|
|
$wxGTK{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "Univ" ) {
|
|
|
|
$wxUNIV{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "MGL" ) {
|
|
|
|
$wxMGL{$filename} = $fileflags;
|
2001-12-21 19:22:48 +00:00
|
|
|
} elsif ( $filetype eq "Micro" ) {
|
|
|
|
$wxMICRO{$filename} = $fileflags;
|
2001-07-04 16:07:51 +00:00
|
|
|
} elsif ( $filetype eq "OS2" ) {
|
|
|
|
$wxOS2PM{$filename} = $fileflags;
|
2002-02-07 13:45:14 +00:00
|
|
|
} elsif ( $filetype eq "X11" ) {
|
|
|
|
$wxX11{$filename} = $fileflags;
|
2001-07-04 16:07:51 +00:00
|
|
|
} elsif ( $filetype eq "HTML" ) {
|
|
|
|
$wxHTML{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "Unix" ) {
|
|
|
|
$wxUNIX{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "BaseOnly" ) {
|
|
|
|
$wxBase{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "WXH" ) {
|
|
|
|
$wxWXINCLUDE{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "ProtoH" ) {
|
|
|
|
$wxPROTOCOLINCLUDE{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "HtmlH" ) {
|
|
|
|
$wxHTMLINCLUDE{$filename} = $fileflags;
|
2001-10-04 21:33:22 +00:00
|
|
|
} elsif ( $filetype eq "MacH" ) {
|
|
|
|
$wxMACINCLUDE{$filename} = $fileflags;
|
2001-07-04 16:07:51 +00:00
|
|
|
} elsif ( $filetype eq "MotifH" ) {
|
|
|
|
$wxMOTIFINCLUDE{$filename} = $fileflags;
|
2001-10-24 20:41:34 +00:00
|
|
|
} elsif ( $filetype eq "MSWH" && $fileflags =~ m/O/ ) {
|
|
|
|
$wxOLEINCLUDE{$filename} = $fileflags;
|
2001-07-04 16:07:51 +00:00
|
|
|
} elsif ( $filetype eq "MSWH" ) {
|
|
|
|
$wxMSWINCLUDE{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "GTKH" ) {
|
|
|
|
$wxGTKINCLUDE{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "OS2H" ) {
|
|
|
|
$wxOS2PMINCLUDE{$filename} = $fileflags;
|
2002-02-07 13:45:14 +00:00
|
|
|
} elsif ( $filetype eq "X11H" ) {
|
|
|
|
$wxX11INCLUDE{$filename} = $fileflags;
|
2001-07-04 16:07:51 +00:00
|
|
|
} elsif ( $filetype eq "UnivH" ) {
|
|
|
|
$wxUNIVINCLUDE{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "UnixH" ) {
|
|
|
|
$wxUNIXINCLUDE{$filename} = $fileflags;
|
|
|
|
} elsif ( $filetype eq "GenericH" ) {
|
|
|
|
$wxGENERICINCLUDE{$filename} = $fileflags;
|
2001-10-04 21:33:22 +00:00
|
|
|
} elsif ( $filetype eq "MacR" ) {
|
|
|
|
$wxMACRESOURCE{$filename} = $fileflags;
|
1999-07-14 22:46:12 +00:00
|
|
|
} else {
|
2001-07-04 16:07:51 +00:00
|
|
|
warn "Unknown file type $filetype for $filename, ignoring.\n";
|
1999-07-14 22:46:12 +00:00
|
|
|
next line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close(FILELIST);
|
|
|
|
#$}
|
|
|
|
#! vim:sw=4:ts=4:list:et
|