Index: gap-transgrp-2.0.6/doc/make_doc
===================================================================
--- /dev/null
+++ gap-transgrp-2.0.6/doc/make_doc
@@ -0,0 +1,35 @@
+#!/bin/sh
+#############################################################################
+##
+#W  make_doc          make Example Package documentation          Greg Gamble
+##
+## Slightly modified by Leonard Soicher for use with GRAPE.
+## 
+#H  $Id: make_doc,v 4.1 2001/10/07 02:37:40 gap Exp $
+##
+##  This shell script uses TeX, BibTeX and MakeIndex to build the .dvi, Adobe
+##  PDF, PostScript (commented out) and  HTML  (provided  you  have  tth  and
+##  etc/convert.pl) documentation for the Example Package.
+##
+
+echo "TeXing documentation"
+# TeX the manual
+tex manual
+bibtex manual
+# TeX the manual again to incorporate the ToC ... and build the index
+tex manual; /usr/share/gap/etc/manualindex manual
+# Finally TeX the manual again to get cross-references right
+tex manual
+# Create the PostScript version (uncomment next line, if needed)
+#dvips -D300 manual -o
+# Create PDF version
+pdftex manual; pdftex manual 
+
+# The HTML version of the manual
+mkdir -p ../htm
+echo "Creating HTML documentation"
+GAP_CONVERT_DATE="September 2018" /usr/share/gap/etc/convert.pl -t -c -n transgrp . ../htm
+
+#############################################################################
+##
+#E
Index: gap-transgrp-2.0.6/doc/manual.bib
===================================================================
--- /dev/null
+++ gap-transgrp-2.0.6/doc/manual.bib
@@ -0,0 +1,99 @@
+@article{ BM83,
+  author =           {Butler, G. and McKay, J.},
+  title =            {The transitive groups of degree up to eleven},
+  journal =          {Comm. Algebra},
+  volume =           {11},
+  number =           {8},
+  year =             {1983},
+  pages =            {863--911},
+  coden =            {COALDM},
+  fjournal =         {Communications in Algebra},
+  issn =             {0092-7872},
+  mrclass =          {20B05},
+  mrnumber =         {695893 (84f:20005)},
+  mrreviewer =       {Michael Klemm},
+  printedkey =       {BM83}
+}
+@article{ Butler93,
+  author =           {Butler, G.},
+  title =            {The transitive groups of degree fourteen and fifteen},
+  journal =          {J. Symbolic Comput.},
+  volume =           {16},
+  number =           {5},
+  year =             {1993},
+  pages =            {413--422},
+  fjournal =         {Journal of Symbolic Computation},
+  issn =             {0747-7171},
+  mrclass =          {20B35 (20B40 68Q40)},
+  mrnumber =         {1271082 (95e:20006)},
+  mrreviewer =       {Gerhard Hiss},
+  printedkey =       {But93}
+}
+
+@article{ ConwayHulpkeMcKay98,
+  author =           {Conway, J. H. and Hulpke, A. and McKay, J.},
+  title =            {On transitive permutation groups},
+  journal =          {LMS J. Comput. Math.},
+  volume =           {1},
+  year =             {1998},
+  pages =            {1--8 (electronic)},
+  fjournal =         {LMS Journal of Computation and Mathematics},
+  issn =             {1461-1570},
+  mrclass =          {20B05 (20B40)},
+  mrnumber =         {1635715 (99g:20011)},
+  mrreviewer =       {D. F. Holt},
+  printedkey =       {CHM98}
+}
+
+@phdthesis{ Hulpke96,
+  author =           {Hulpke, A.},
+  title =            {Konstruktion transitiver {P}ermutationsgruppen},
+  publisher =        {Verlag der Augustinus Buchhandlung, Aachen},
+  school =           {Rheinisch Westf{\"a}lische Technische Hochschule},
+  address =          {Aachen, Germany},
+  year =             {1996},
+  printedkey =       {Hul96},
+  type =             {Dissertation}
+}
+
+@article{ HulpkeTG,
+  author =           {Hulpke, A.},
+  title =            {Constructing transitive permutation groups},
+  journal =          {J. Symbolic Comput.},
+  volume =           {39},
+  number =           {1},
+  year =             {2005},
+  pages =            {1--30},
+  fjournal =         {Journal of Symbolic Computation},
+  issn =             {0747-7171},
+  mrclass =          {20B10 (20B35)},
+  mrnumber =         {2168238 (2006e:20004)},
+  mrreviewer =       {J. Quistorff},
+  printedkey =       {Hul05}
+}
+
+@article{ Roy87,
+  author =           {Royle, G. F.},
+  title =            {The transitive groups of degree twelve},
+  journal =          {J. Symbolic Comput.},
+  volume =           {4},
+  number =           {2},
+  year =             {1987},
+  pages =            {255--268},
+  fjournal =         {Journal of Symbolic Computation},
+  issn =             {0747-7171},
+  mrclass =          {20B05},
+  mrnumber =         {922391 (89b:20010)},
+  mrreviewer =       {Martin W. Liebeck},
+  printedkey =       {Roy87}
+}
+
+@article {CanHolt32,
+    AUTHOR = {Cannon, John J. and Holt, Derek F.},
+     TITLE = {The transitive permutation groups of degree 32},
+   JOURNAL = {Experiment. Math.},
+    VOLUME = {17},
+      YEAR = {2008},
+    NUMBER = {3},
+     PAGES = {307--314},
+}
Index: gap-transgrp-2.0.6/doc/manual.mst
===================================================================
--- /dev/null
+++ gap-transgrp-2.0.6/doc/manual.mst
@@ -0,0 +1,16 @@
+preamble ""
+postamble "\n"
+group_skip "\n"
+headings_flag 1
+heading_prefix "\\letter "
+numhead_positive "{}"
+symhead_positive "{}"
+item_0  "\n  "
+item_1  "\n    \\sub "
+item_01 "\n    \\sub "
+item_x1 ", "
+item_2  "\n      \\subsub "
+item_12 "\n      \\subsub "
+item_x2 ", "
+page_compositor "--"
+line_max 1000
Index: gap-transgrp-2.0.6/doc/manual.tex
===================================================================
--- gap-transgrp-2.0.6.orig/doc/manual.tex
+++ gap-transgrp-2.0.6/doc/manual.tex
@@ -9,7 +9,7 @@
 %%
 %F  gapmacro . . . . . . . . . . . . . . . .  read the GAP macro package
 %%
-\input gapmacro
+\input /usr/share/gap/etc/gapmacro
 %
 %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
