/usr/share/gap/pkg/ctbllib/init.g is in gap-character-tables 1r2p2.dfsg.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #############################################################################
##
#W init.g GAP 4 package CTblLib Thomas Breuer
##
#Y Copyright (C) 2001, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
##
if IsBound( GAPInfo ) then
# Read the declaration part.
ReadPackage( "ctbllib", "gap4/ctadmin.tbd" );
ReadPackage( "ctbllib", "gap4/construc.gd" );
ReadPackage( "ctbllib", "gap4/ctblothe.gd" );
# Read functions concerning Deligne-Lusztig names.
ReadPackage( "ctbllib", "dlnames/dlnames.gd" );
# Read obsolete variable names if this happens also in the GAP library.
if GAPInfo.UserPreferences.ReadObsolete <> false then
ReadPackage( "ctbllib", "gap4/obsolete.gd" );
fi;
else
# GAP 3.4.4
ReadPkg( "ctbllib", "gap3/ctadmin" );
fi;
#############################################################################
##
#E
|