1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# $Id: TLConfig.pm 5044 2007-09-25 18:34:12Z karl $
# TeXLive::TLConfig.pm - module exporting configuration stuff
# Copyright 2007 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
package TeXLive::TLConfig;
BEGIN {
use Exporter ();
use vars qw( @ISA @EXPORT_OK );
@ISA = qw(Exporter);
@EXPORT_OK = qw(
@MetaCategories
@NormalCategories
@Categories
$CategoriesRegexp
$DefaultCategory
);
}
# Meta Categories do not ship files, but call only for other packages
our @MetaCategories = qw/Collection Scheme/;
# Normal Categories contain actial files and do not depend on other things.
our @NormalCategories = qw/Package TLCore Documentation/;
# list of all Categories
our @Categories = (@MetaCategories, @NormalCategories);
our $CategoriesRegexp = '(Collection|Scheme|Package|TLCore|Documentation)';
our $DefaultCategory = "Package";
1;
=head1 NAME
C<TeXLive::TLConfig> -- TeX Live Configurations
=head1 SYNOPSIS
use TeXLive::TLConfig;
=head1 DESCRIPTION
The L<TeXLive::TLConfig> module contains definitions of variables
configuring all of TeX Live.
=over 6
=head1 EXPORTED VARIABLES
All of the following variables can be pulled into the callers namespace
(i.e., are declared EXPORT_OK).
=item C<@TeXLive::TLConfig::MetaCategories>
The list of meta categories, i.e., those categories whose packages only
depend on other packages, but don't ship any files. Currently
C<Collection> and <Scheme>.
=item C<@TeXLive::TLConfig::NormalCategories>
The list of normal categories, i.e., those categories whose packages do
ship files. Currently C<TLCore>, C<Documentation>, C<Package>.
=item C<@TeXLive::TLConfig::Categories>
The list of all categories, i.e., the union of the above.
=item C<$TeXLive::TLConfig::CategoriesRegexp>
A regexp matching any category.
=item C<$TeXLive::TLConfig::DefaultCategory>
The default category used when creating new packages.
=back
=head1 SEE ALSO
The modules L<TeXLive::TLUtils>, L<TeXLive::TLPSRC>,
L<TeXLive::TLPDB>, L<TeXLive::TLTREE>, L<TeXLive::TeXCatalogue>.
=head1 AUTHORS AND COPYRIGHT
This script and its documentation were written for the TeX Live
distribution (L<http://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
=cut
### Local Variables:
### perl-indent-level: 2
### tab-width: 2
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2 expandtab: #
|