diff options
author | Norbert Preining <preining@logic.at> | 2009-06-20 03:01:48 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-06-20 03:01:48 +0000 |
commit | 634b70566837aef2db1c5ea3dfcac32d5c610cdc (patch) | |
tree | 45553b02103180d07a97beda42c3c1c2c43ae3cb /Master/tlpkg/TeXLive/TLConfig.pm | |
parent | 8064f0d122c46c018311861f531d604c5e64c6c8 (diff) |
- extend %NAME% expansion in autopatterns to be able to remove stuff
at the beginning and end of the pkg name
- add new category ConTeXt for context packages
- define proper auto patterns for context packages
- simplify all the context-* packages
git-svn-id: svn://tug.org/texlive/trunk@13838 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 40c55a15db9..eca234e5c96 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -44,12 +44,12 @@ $ReleaseYear = 2009; our @MetaCategories = qw/Collection Scheme/; our $MetaCategoriesRegexp = '(Collection|Scheme)'; # Normal Categories contain actial files and do not depend on other things. -our @NormalCategories = qw/Package TLCore Documentation/; +our @NormalCategories = qw/Package TLCore Documentation ConTeXt/; # list of all Categories our @Categories = (@MetaCategories, @NormalCategories); -our $CategoriesRegexp = '(Collection|Scheme|Package|TLCore|Documentation)'; +our $CategoriesRegexp = '(Collection|Scheme|Package|TLCore|Documentation|ConTeXt)'; our $DefaultCategory = "Package"; |