summaryrefslogtreecommitdiff
path: root/print/Makefile
blob: 36909ad6de2548c8ac063d1cd9f2952c1deeb16e (plain)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
# $NetBSD: Makefile,v 1.663 2016/06/19 04:11:16 markd Exp $
#

COMMENT=	Desktop publishing

SUBDIR+=	LPRng
SUBDIR+=	LPRng-core
SUBDIR+=	LPRng-doc
SUBDIR+=	R-knitr
SUBDIR+=	a2ps
SUBDIR+=	abc2ps
SUBDIR+=	abcm2ps
SUBDIR+=	acroread7
SUBDIR+=	acroread8
SUBDIR+=	acroread9
SUBDIR+=	adobeps-win
SUBDIR+=	advi
SUBDIR+=	apsfilter
SUBDIR+=	atril
SUBDIR+=	auctex
SUBDIR+=	bg5pdf
SUBDIR+=	bg5ps
SUBDIR+=	bibtool
SUBDIR+=	bww2tex
SUBDIR+=	chktex
SUBDIR+=	cjkutils
SUBDIR+=	cnprint
SUBDIR+=	cups
SUBDIR+=	cups-drivers-Magicolor5440DL
SUBDIR+=	cups-filters
SUBDIR+=	cups-pdf
SUBDIR+=	cups15
SUBDIR+=	deforaos-pdfviewer
SUBDIR+=	diffpdf
SUBDIR+=	dvidvi
SUBDIR+=	dviljk
SUBDIR+=	dvipdfmx
SUBDIR+=	dvipsk
SUBDIR+=	electrix
SUBDIR+=	enscript
SUBDIR+=	epdfview
SUBDIR+=	epstool
SUBDIR+=	evince
SUBDIR+=	evince-nautilus
SUBDIR+=	evince3
SUBDIR+=	flpsed
SUBDIR+=	foo2zjs
SUBDIR+=	foomatic-filters
SUBDIR+=	foomatic-filters-cups
SUBDIR+=	foomatic-ppds
SUBDIR+=	foomatic-ppds-cups
SUBDIR+=	foomatic4-db
SUBDIR+=	foomatic4-db-engine
SUBDIR+=	foomatic4-filters
SUBDIR+=	ghostscript
SUBDIR+=	ghostscript-agpl
SUBDIR+=	ghostscript-gpl
SUBDIR+=	glabels
SUBDIR+=	gtklp
SUBDIR+=	gutenprint-lib
SUBDIR+=	gv
SUBDIR+=	hpijs
SUBDIR+=	hplip
SUBDIR+=	html2ps
SUBDIR+=	if-psprint
SUBDIR+=	ijs
SUBDIR+=	img2eps
SUBDIR+=	imposter
SUBDIR+=	ja-a2ps
SUBDIR+=	ja-ptex
SUBDIR+=	ja-vflib
SUBDIR+=	ja-vflib-lib
SUBDIR+=	ja-vflib-utils
SUBDIR+=	ja-vfxdvik
SUBDIR+=	jcabc2ps
SUBDIR+=	kbibtex
SUBDIR+=	kbibtex-kde3
SUBDIR+=	kpathsea
SUBDIR+=	lacheck
SUBDIR+=	latex-mk
SUBDIR+=	latexmk
SUBDIR+=	lgrind
SUBDIR+=	libgnomecups
SUBDIR+=	libgnomeprint
SUBDIR+=	libgnomeprintui
SUBDIR+=	libgxps
SUBDIR+=	libpaper
SUBDIR+=	libspectre
SUBDIR+=	lilypond
SUBDIR+=	luatex
SUBDIR+=	magicfilter
SUBDIR+=	mp
SUBDIR+=	mpage
SUBDIR+=	mupdf
SUBDIR+=	okular
SUBDIR+=	p5-LaTeX-Driver
SUBDIR+=	p5-LaTeX-Encode
SUBDIR+=	p5-LaTeX-Table
SUBDIR+=	p5-Net-CUPS
SUBDIR+=	p5-PostScript
SUBDIR+=	p5-PostScript-MailLabels
SUBDIR+=	p5-PostScript-Simple
SUBDIR+=	p5-biblatex-biber
SUBDIR+=	papersize
SUBDIR+=	paps
SUBDIR+=	pcps
SUBDIR+=	pdf-redact-tools
SUBDIR+=	pdf2djvu
SUBDIR+=	pdfjam
SUBDIR+=	pdflib
SUBDIR+=	pdflib-lite
SUBDIR+=	pdfmod
SUBDIR+=	pdfshuffler
SUBDIR+=	pdvipsk
SUBDIR+=	php-pdflib
SUBDIR+=	pmw
SUBDIR+=	pnm2ppa
SUBDIR+=	podofo
SUBDIR+=	poppler
SUBDIR+=	poppler-cpp
SUBDIR+=	poppler-data
SUBDIR+=	poppler-glib
SUBDIR+=	poppler-includes
SUBDIR+=	poppler-qt4
SUBDIR+=	poppler-qt5
SUBDIR+=	poppler-utils
SUBDIR+=	poppler016
SUBDIR+=	poppler016-qt3
SUBDIR+=	poster
SUBDIR+=	pscal
SUBDIR+=	psify
SUBDIR+=	psjoin
SUBDIR+=	pslib
SUBDIR+=	psutils
SUBDIR+=	ptexenc
SUBDIR+=	py-PDF2
SUBDIR+=	py-Pdf
SUBDIR+=	py-cups
SUBDIR+=	py-pisa
SUBDIR+=	py-poppler
SUBDIR+=	py-pslib
SUBDIR+=	py-reportlab
SUBDIR+=	py-weasyprint
SUBDIR+=	qpdf
SUBDIR+=	qpdfview
SUBDIR+=	rlpr
SUBDIR+=	rtf2latex
SUBDIR+=	rtf2latex2e
SUBDIR+=	ruby-gnome2-poppler
SUBDIR+=	ruby-pdf-core
SUBDIR+=	ruby-pdf-reader
SUBDIR+=	ruby-pdf-writer
SUBDIR+=	ruby-prawn
SUBDIR+=	scribus
SUBDIR+=	scribus-qt4
SUBDIR+=	seetexk
SUBDIR+=	stylewriter
SUBDIR+=	tcl-pdflib
SUBDIR+=	teTeX
SUBDIR+=	teTeX3-bin
SUBDIR+=	teTeX3-texmf
SUBDIR+=	tex-2up
SUBDIR+=	tex-2up-doc
SUBDIR+=	tex-FAQ-en-doc
SUBDIR+=	tex-IEEEconf
SUBDIR+=	tex-IEEEconf-doc
SUBDIR+=	tex-IEEEtran
SUBDIR+=	tex-IEEEtran-doc
SUBDIR+=	tex-MemoirChapStyles-doc
SUBDIR+=	tex-SIstyle
SUBDIR+=	tex-SIstyle-doc
SUBDIR+=	tex-SIunits
SUBDIR+=	tex-SIunits-doc
SUBDIR+=	tex-Type1fonts-doc
SUBDIR+=	tex-a0poster
SUBDIR+=	tex-a0poster-doc
SUBDIR+=	tex-a4wide
SUBDIR+=	tex-a4wide-doc
SUBDIR+=	tex-a5comb
SUBDIR+=	tex-a5comb-doc
SUBDIR+=	tex-abc
SUBDIR+=	tex-abc-doc
SUBDIR+=	tex-abstract
SUBDIR+=	tex-abstract-doc
SUBDIR+=	tex-acmconf
SUBDIR+=	tex-acmconf-doc
SUBDIR+=	tex-acmtrans
SUBDIR+=	tex-acmtrans-doc
SUBDIR+=	tex-acromake
SUBDIR+=	tex-acromake-doc
SUBDIR+=	tex-acronym
SUBDIR+=	tex-acronym-doc
SUBDIR+=	tex-adjustbox
SUBDIR+=	tex-adjustbox-doc
SUBDIR+=	tex-adrconv
SUBDIR+=	tex-adrconv-doc
SUBDIR+=	tex-advdate
SUBDIR+=	tex-advdate-doc
SUBDIR+=	tex-aeguill
SUBDIR+=	tex-aeguill-doc
SUBDIR+=	tex-aleph
SUBDIR+=	tex-algorithm2e
SUBDIR+=	tex-algorithm2e-doc
SUBDIR+=	tex-algorithmicx
SUBDIR+=	tex-algorithmicx-doc
SUBDIR+=	tex-algorithms
SUBDIR+=	tex-algorithms-doc
SUBDIR+=	tex-amscls
SUBDIR+=	tex-amscls-doc
SUBDIR+=	tex-amslatex-primer-doc
SUBDIR+=	tex-amsmath
SUBDIR+=	tex-amsmath-doc
SUBDIR+=	tex-amsrefs
SUBDIR+=	tex-amsrefs-doc
SUBDIR+=	tex-amstex
SUBDIR+=	tex-amstex-doc
SUBDIR+=	tex-anonchap
SUBDIR+=	tex-anonchap-doc
SUBDIR+=	tex-answers
SUBDIR+=	tex-answers-doc
SUBDIR+=	tex-antomega
SUBDIR+=	tex-antomega-doc
SUBDIR+=	tex-anysize
SUBDIR+=	tex-anysize-doc
SUBDIR+=	tex-appendix
SUBDIR+=	tex-appendix-doc
SUBDIR+=	tex-arabi
SUBDIR+=	tex-arabi-doc
SUBDIR+=	tex-arabtex
SUBDIR+=	tex-arabtex-doc
SUBDIR+=	tex-around-the-bend-doc
SUBDIR+=	tex-arsclassica
SUBDIR+=	tex-arsclassica-doc
SUBDIR+=	tex-ascii-chart-doc
SUBDIR+=	tex-babel
SUBDIR+=	tex-babel-albanian
SUBDIR+=	tex-babel-bahasa
SUBDIR+=	tex-babel-basque
SUBDIR+=	tex-babel-bosnian
SUBDIR+=	tex-babel-breton
SUBDIR+=	tex-babel-bulgarian
SUBDIR+=	tex-babel-catalan
SUBDIR+=	tex-babel-croatian
SUBDIR+=	tex-babel-czech
SUBDIR+=	tex-babel-danish
SUBDIR+=	tex-babel-doc
SUBDIR+=	tex-babel-dutch
SUBDIR+=	tex-babel-english
SUBDIR+=	tex-babel-esperanto
SUBDIR+=	tex-babel-estonian
SUBDIR+=	tex-babel-french
SUBDIR+=	tex-babel-friulan
SUBDIR+=	tex-babel-galician
SUBDIR+=	tex-babel-georgian
SUBDIR+=	tex-babel-german
SUBDIR+=	tex-babel-greek
SUBDIR+=	tex-babel-hebrew
SUBDIR+=	tex-babel-hungarian
SUBDIR+=	tex-babel-icelandic
SUBDIR+=	tex-babel-interlingua
SUBDIR+=	tex-babel-irish
SUBDIR+=	tex-babel-italian
SUBDIR+=	tex-babel-kurmanji
SUBDIR+=	tex-babel-latin
SUBDIR+=	tex-babel-latvian
SUBDIR+=	tex-babel-norsk
SUBDIR+=	tex-babel-piedmontese
SUBDIR+=	tex-babel-polish
SUBDIR+=	tex-babel-portuges
SUBDIR+=	tex-babel-romanian
SUBDIR+=	tex-babel-romansh
SUBDIR+=	tex-babel-russian
SUBDIR+=	tex-babel-samin
SUBDIR+=	tex-babel-scottish
SUBDIR+=	tex-babel-serbianc
SUBDIR+=	tex-babel-slovak
SUBDIR+=	tex-babel-slovenian
SUBDIR+=	tex-babel-sorbian
SUBDIR+=	tex-babel-spanglish
SUBDIR+=	tex-babel-spanish
SUBDIR+=	tex-babel-swedish
SUBDIR+=	tex-babel-thai
SUBDIR+=	tex-babel-turkish
SUBDIR+=	tex-babel-vietnamese
SUBDIR+=	tex-babel-welsh
SUBDIR+=	tex-babelbib
SUBDIR+=	tex-babelbib-doc
SUBDIR+=	tex-bagpipe
SUBDIR+=	tex-bagpipe-doc
SUBDIR+=	tex-bbm-macros
SUBDIR+=	tex-bbm-macros-doc
SUBDIR+=	tex-beamer
SUBDIR+=	tex-beamer-doc
SUBDIR+=	tex-beton
SUBDIR+=	tex-beton-doc
SUBDIR+=	tex-bezos
SUBDIR+=	tex-bezos-doc
SUBDIR+=	tex-biblatex
SUBDIR+=	tex-biblatex-doc
SUBDIR+=	tex-bibleref-german
SUBDIR+=	tex-bibleref-german-doc
SUBDIR+=	tex-bibtex
SUBDIR+=	tex-bibtex-doc
SUBDIR+=	tex-bibtex8
SUBDIR+=	tex-bibtopic
SUBDIR+=	tex-bibtopic-doc
SUBDIR+=	tex-bibunits
SUBDIR+=	tex-bibunits-doc
SUBDIR+=	tex-blkarray
SUBDIR+=	tex-blkarray-doc
SUBDIR+=	tex-block
SUBDIR+=	tex-block-doc
SUBDIR+=	tex-bold-extra
SUBDIR+=	tex-bold-extra-doc
SUBDIR+=	tex-booktabs
SUBDIR+=	tex-booktabs-de-doc
SUBDIR+=	tex-booktabs-doc
SUBDIR+=	tex-boxedminipage
SUBDIR+=	tex-boxedminipage-doc
SUBDIR+=	tex-braket
SUBDIR+=	tex-braket-doc
SUBDIR+=	tex-breakcites
SUBDIR+=	tex-breakcites-doc
SUBDIR+=	tex-breqn
SUBDIR+=	tex-bussproofs
SUBDIR+=	tex-bussproofs-doc
SUBDIR+=	tex-c90
SUBDIR+=	tex-c90-doc
SUBDIR+=	tex-calrsfs
SUBDIR+=	tex-calrsfs-doc
SUBDIR+=	tex-cancel
SUBDIR+=	tex-cancel-doc
SUBDIR+=	tex-capt-of
SUBDIR+=	tex-capt-of-doc
SUBDIR+=	tex-captdef
SUBDIR+=	tex-captdef-doc
SUBDIR+=	tex-caption
SUBDIR+=	tex-caption-doc
SUBDIR+=	tex-carlisle
SUBDIR+=	tex-carlisle-doc
SUBDIR+=	tex-cases
SUBDIR+=	tex-cases-doc
SUBDIR+=	tex-ccaption
SUBDIR+=	tex-ccaption-doc
SUBDIR+=	tex-cellspace
SUBDIR+=	tex-cellspace-doc
SUBDIR+=	tex-changebar
SUBDIR+=	tex-changebar-doc
SUBDIR+=	tex-changepage
SUBDIR+=	tex-changepage-doc
SUBDIR+=	tex-chappg
SUBDIR+=	tex-chappg-doc
SUBDIR+=	tex-chbibref
SUBDIR+=	tex-chbibref-doc
SUBDIR+=	tex-chemarrow
SUBDIR+=	tex-chemarrow-doc
SUBDIR+=	tex-chess
SUBDIR+=	tex-chess-doc
SUBDIR+=	tex-chess-problem-diagrams
SUBDIR+=	tex-chess-problem-diagrams-doc
SUBDIR+=	tex-chessboard
SUBDIR+=	tex-chessboard-doc
SUBDIR+=	tex-chessfss
SUBDIR+=	tex-chessfss-doc
SUBDIR+=	tex-chngcntr
SUBDIR+=	tex-chngcntr-doc
SUBDIR+=	tex-circle
SUBDIR+=	tex-circle-doc
SUBDIR+=	tex-cite
SUBDIR+=	tex-cite-doc
SUBDIR+=	tex-cjk
SUBDIR+=	tex-cjk-doc
SUBDIR+=	tex-cjk-gs-integrate
SUBDIR+=	tex-cjk-gs-integrate-doc
SUBDIR+=	tex-cjk-ko
SUBDIR+=	tex-cjk-ko-doc
SUBDIR+=	tex-cjkpunct
SUBDIR+=	tex-cjkpunct-doc
SUBDIR+=	tex-cjkutils
SUBDIR+=	tex-cjkutils-doc
SUBDIR+=	tex-classpack
SUBDIR+=	tex-classpack-doc
SUBDIR+=	tex-clrscode
SUBDIR+=	tex-clrscode-doc
SUBDIR+=	tex-cmap
SUBDIR+=	tex-cnbwp
SUBDIR+=	tex-cnbwp-doc
SUBDIR+=	tex-collectbox
SUBDIR+=	tex-collectbox-doc
SUBDIR+=	tex-colortbl
SUBDIR+=	tex-colortbl-doc
SUBDIR+=	tex-comment
SUBDIR+=	tex-comment-doc
SUBDIR+=	tex-components-of-TeX-doc
SUBDIR+=	tex-comprehensive-doc
SUBDIR+=	tex-concprog
SUBDIR+=	tex-concprog-doc
SUBDIR+=	tex-context
SUBDIR+=	tex-context-doc
SUBDIR+=	tex-cooking
SUBDIR+=	tex-cooking-doc
SUBDIR+=	tex-crop
SUBDIR+=	tex-csbulletin
SUBDIR+=	tex-csbulletin-doc
SUBDIR+=	tex-cslatex
SUBDIR+=	tex-csplain
SUBDIR+=	tex-csquotes
SUBDIR+=	tex-csquotes-de-doc
SUBDIR+=	tex-csquotes-doc
SUBDIR+=	tex-ctable
SUBDIR+=	tex-ctib
SUBDIR+=	tex-ctib-doc
SUBDIR+=	tex-cuisine
SUBDIR+=	tex-cuisine-doc
SUBDIR+=	tex-curves
SUBDIR+=	tex-curves-doc
SUBDIR+=	tex-custom-bib
SUBDIR+=	tex-custom-bib-doc
SUBDIR+=	tex-cweb
SUBDIR+=	tex-cweb-doc
SUBDIR+=	tex-cyrillic
SUBDIR+=	tex-cyrillic-bin
SUBDIR+=	tex-cyrillic-bin-doc
SUBDIR+=	tex-cyrillic-doc
SUBDIR+=	tex-dashbox
SUBDIR+=	tex-dashbox-doc
SUBDIR+=	tex-datatool
SUBDIR+=	tex-datatool-doc
SUBDIR+=	tex-datetime
SUBDIR+=	tex-datetime-doc
SUBDIR+=	tex-dblfloatfix
SUBDIR+=	tex-dblfloatfix-doc
SUBDIR+=	tex-dehyph-exptl
SUBDIR+=	tex-dehyph-exptl-doc
SUBDIR+=	tex-dhua
SUBDIR+=	tex-dhua-doc
SUBDIR+=	tex-dickimaw-doc
SUBDIR+=	tex-dinbrief
SUBDIR+=	tex-dinbrief-doc
SUBDIR+=	tex-dk-bib
SUBDIR+=	tex-dk-bib-doc
SUBDIR+=	tex-dnp
SUBDIR+=	tex-draftcopy
SUBDIR+=	tex-draftcopy-doc
SUBDIR+=	tex-draftwatermark
SUBDIR+=	tex-draftwatermark-doc
SUBDIR+=	tex-dtxtut-doc
SUBDIR+=	tex-dvipdfmx
SUBDIR+=	tex-dvipdfmx-def
SUBDIR+=	tex-dvipdfmx-doc
SUBDIR+=	tex-dvips
SUBDIR+=	tex-dvips-doc
SUBDIR+=	tex-dvisvgm-def
SUBDIR+=	tex-dvisvgm-def-doc
SUBDIR+=	tex-easy-todo
SUBDIR+=	tex-easy-todo-doc
SUBDIR+=	tex-edmac
SUBDIR+=	tex-edmac-doc
SUBDIR+=	tex-einfuehrung-doc
SUBDIR+=	tex-elsarticle
SUBDIR+=	tex-elsarticle-doc
SUBDIR+=	tex-enctex
SUBDIR+=	tex-enctex-doc
SUBDIR+=	tex-endfloat
SUBDIR+=	tex-endfloat-doc
SUBDIR+=	tex-endnotes
SUBDIR+=	tex-endnotes-doc
SUBDIR+=	tex-enumitem
SUBDIR+=	tex-enumitem-doc
SUBDIR+=	tex-environ
SUBDIR+=	tex-environ-doc
SUBDIR+=	tex-envlab
SUBDIR+=	tex-envlab-doc
SUBDIR+=	tex-eplain
SUBDIR+=	tex-eplain-doc
SUBDIR+=	tex-epsf
SUBDIR+=	tex-epsf-doc
SUBDIR+=	tex-epsf-dvipdfmx
SUBDIR+=	tex-epsf-dvipdfmx-doc
SUBDIR+=	tex-eso-pic
SUBDIR+=	tex-eso-pic-doc
SUBDIR+=	tex-etdipa-doc
SUBDIR+=	tex-etex
SUBDIR+=	tex-etex-doc
SUBDIR+=	tex-etex-pkg
SUBDIR+=	tex-etex-pkg-doc
SUBDIR+=	tex-ethiop
SUBDIR+=	tex-ethiop-doc
SUBDIR+=	tex-etoolbox-de-doc
SUBDIR+=	tex-euler
SUBDIR+=	tex-euler-doc
SUBDIR+=	tex-europasscv
SUBDIR+=	tex-europasscv-doc
SUBDIR+=	tex-europecv
SUBDIR+=	tex-europecv-doc
SUBDIR+=	tex-everypage
SUBDIR+=	tex-everypage-doc
SUBDIR+=	tex-exam
SUBDIR+=	tex-exam-doc
SUBDIR+=	tex-excludeonly
SUBDIR+=	tex-excludeonly-doc
SUBDIR+=	tex-extsizes
SUBDIR+=	tex-extsizes-doc
SUBDIR+=	tex-fancybox
SUBDIR+=	tex-fancybox-doc
SUBDIR+=	tex-fancyhdr
SUBDIR+=	tex-fancyhdr-doc
SUBDIR+=	tex-fancyref
SUBDIR+=	tex-fancyvrb
SUBDIR+=	tex-fancyvrb-doc
SUBDIR+=	tex-feupphdteses
SUBDIR+=	tex-feupphdteses-doc
SUBDIR+=	tex-fifinddo-info-doc
SUBDIR+=	tex-figflow
SUBDIR+=	tex-figflow-doc
SUBDIR+=	tex-filecontents
SUBDIR+=	tex-filecontents-doc
SUBDIR+=	tex-first-latex-doc-doc
SUBDIR+=	tex-fix2col
SUBDIR+=	tex-fix2col-doc
SUBDIR+=	tex-fixme
SUBDIR+=	tex-fixme-doc
SUBDIR+=	tex-fixmetodonotes
SUBDIR+=	tex-fixmetodonotes-doc
SUBDIR+=	tex-fixpdfmag
SUBDIR+=	tex-float
SUBDIR+=	tex-float-doc
SUBDIR+=	tex-floatflt
SUBDIR+=	tex-floatflt-doc
SUBDIR+=	tex-flowfram
SUBDIR+=	tex-flowfram-doc
SUBDIR+=	tex-fmtcount
SUBDIR+=	tex-fmtcount-doc
SUBDIR+=	tex-fncylab
SUBDIR+=	tex-fncylab-doc
SUBDIR+=	tex-fnpara
SUBDIR+=	tex-fnpara-doc
SUBDIR+=	tex-foiltex
SUBDIR+=	tex-font-change
SUBDIR+=	tex-font-change-doc
SUBDIR+=	tex-fontch
SUBDIR+=	tex-fontch-doc
SUBDIR+=	tex-footbib
SUBDIR+=	tex-footbib-doc
SUBDIR+=	tex-footmisc
SUBDIR+=	tex-footmisc-doc
SUBDIR+=	tex-footnpag
SUBDIR+=	tex-footnpag-doc
SUBDIR+=	tex-forloop
SUBDIR+=	tex-forloop-doc
SUBDIR+=	tex-framed
SUBDIR+=	tex-framed-doc
SUBDIR+=	tex-ftcap
SUBDIR+=	tex-ftcap-doc
SUBDIR+=	tex-fwlw
SUBDIR+=	tex-fwlw-doc
SUBDIR+=	tex-g-brief
SUBDIR+=	tex-g-brief-doc
SUBDIR+=	tex-genmisc
SUBDIR+=	tex-gentle-doc
SUBDIR+=	tex-geometry
SUBDIR+=	tex-geometry-de-doc
SUBDIR+=	tex-geometry-doc
SUBDIR+=	tex-german
SUBDIR+=	tex-german-doc
SUBDIR+=	tex-germbib
SUBDIR+=	tex-germbib-doc
SUBDIR+=	tex-germkorr
SUBDIR+=	tex-germkorr-doc
SUBDIR+=	tex-getoptk
SUBDIR+=	tex-getoptk-doc
SUBDIR+=	tex-gfnotation
SUBDIR+=	tex-gfnotation-doc
SUBDIR+=	tex-glossaries
SUBDIR+=	tex-glossaries-doc
SUBDIR+=	tex-go
SUBDIR+=	tex-go-doc
SUBDIR+=	tex-graphics
SUBDIR+=	tex-graphics-cfg
SUBDIR+=	tex-graphics-cfg-doc
SUBDIR+=	tex-graphics-doc
SUBDIR+=	tex-guide-to-latex
SUBDIR+=	tex-gustlib
SUBDIR+=	tex-gustlib-doc
SUBDIR+=	tex-happy4th-doc
SUBDIR+=	tex-harvard
SUBDIR+=	tex-harvard-doc
SUBDIR+=	tex-hausarbeit-jura
SUBDIR+=	tex-hausarbeit-jura-doc
SUBDIR+=	tex-here
SUBDIR+=	tex-here-doc
SUBDIR+=	tex-hyper
SUBDIR+=	tex-hyper-doc
SUBDIR+=	tex-hypernat
SUBDIR+=	tex-hypernat-doc
SUBDIR+=	tex-hyperref
SUBDIR+=	tex-hyperref-doc
SUBDIR+=	tex-hyph-utf8
SUBDIR+=	tex-hyph-utf8-doc
SUBDIR+=	tex-hyphen-afrikaans
SUBDIR+=	tex-hyphen-ancientgreek
SUBDIR+=	tex-hyphen-arabic
SUBDIR+=	tex-hyphen-armenian
SUBDIR+=	tex-hyphen-base
SUBDIR+=	tex-hyphen-basque
SUBDIR+=	tex-hyphen-bulgarian
SUBDIR+=	tex-hyphen-catalan
SUBDIR+=	tex-hyphen-chinese
SUBDIR+=	tex-hyphen-coptic
SUBDIR+=	tex-hyphen-croatian
SUBDIR+=	tex-hyphen-czech
SUBDIR+=	tex-hyphen-danish
SUBDIR+=	tex-hyphen-dutch
SUBDIR+=	tex-hyphen-english
SUBDIR+=	tex-hyphen-esperanto
SUBDIR+=	tex-hyphen-estonian
SUBDIR+=	tex-hyphen-ethiopic
SUBDIR+=	tex-hyphen-farsi
SUBDIR+=	tex-hyphen-finnish
SUBDIR+=	tex-hyphen-french
SUBDIR+=	tex-hyphen-friulan
SUBDIR+=	tex-hyphen-galician
SUBDIR+=	tex-hyphen-georgian
SUBDIR+=	tex-hyphen-german
SUBDIR+=	tex-hyphen-greek
SUBDIR+=	tex-hyphen-greek-doc
SUBDIR+=	tex-hyphen-hungarian
SUBDIR+=	tex-hyphen-hungarian-doc
SUBDIR+=	tex-hyphen-icelandic
SUBDIR+=	tex-hyphen-indic
SUBDIR+=	tex-hyphen-indonesian
SUBDIR+=	tex-hyphen-interlingua
SUBDIR+=	tex-hyphen-irish
SUBDIR+=	tex-hyphen-italian
SUBDIR+=	tex-hyphen-kurmanji
SUBDIR+=	tex-hyphen-latin
SUBDIR+=	tex-hyphen-latvian
SUBDIR+=	tex-hyphen-lithuanian
SUBDIR+=	tex-hyphen-mongolian
SUBDIR+=	tex-hyphen-norwegian
SUBDIR+=	tex-hyphen-piedmontese
SUBDIR+=	tex-hyphen-polish
SUBDIR+=	tex-hyphen-portuguese
SUBDIR+=	tex-hyphen-romanian
SUBDIR+=	tex-hyphen-romansh
SUBDIR+=	tex-hyphen-russian
SUBDIR+=	tex-hyphen-sanskrit
SUBDIR+=	tex-hyphen-serbian
SUBDIR+=	tex-hyphen-slovak
SUBDIR+=	tex-hyphen-slovenian
SUBDIR+=	tex-hyphen-spanish
SUBDIR+=	tex-hyphen-swedish
SUBDIR+=	tex-hyphen-thai
SUBDIR+=	tex-hyphen-turkish
SUBDIR+=	tex-hyphen-turkmen
SUBDIR+=	tex-hyphen-ukrainian
SUBDIR+=	tex-hyphen-uppersorbian
SUBDIR+=	tex-hyphen-welsh
SUBDIR+=	tex-hyphenat
SUBDIR+=	tex-hyphenat-doc
SUBDIR+=	tex-hyplain
SUBDIR+=	tex-hyplain-doc
SUBDIR+=	tex-ifluatex
SUBDIR+=	tex-ifluatex-doc
SUBDIR+=	tex-ifmtarg
SUBDIR+=	tex-ifmtarg-doc
SUBDIR+=	tex-ifnextok
SUBDIR+=	tex-ifnextok-doc
SUBDIR+=	tex-ifplatform
SUBDIR+=	tex-ifplatform-doc
SUBDIR+=	tex-iftex
SUBDIR+=	tex-iftex-doc
SUBDIR+=	tex-ifxetex
SUBDIR+=	tex-ifxetex-doc
SUBDIR+=	tex-igo
SUBDIR+=	tex-impatient-doc
SUBDIR+=	tex-import
SUBDIR+=	tex-import-doc
SUBDIR+=	tex-index
SUBDIR+=	tex-index-doc
SUBDIR+=	tex-intro-scientific-doc
SUBDIR+=	tex-jadetex
SUBDIR+=	tex-jadetex-doc
SUBDIR+=	tex-japanese
SUBDIR+=	tex-japanese-doc
SUBDIR+=	tex-jknapltx
SUBDIR+=	tex-js-misc
SUBDIR+=	tex-js-misc-doc
SUBDIR+=	tex-jsclasses
SUBDIR+=	tex-jurabib
SUBDIR+=	tex-jurabib-doc
SUBDIR+=	tex-kix
SUBDIR+=	tex-kix-doc
SUBDIR+=	tex-knuth-doc
SUBDIR+=	tex-koma-script
SUBDIR+=	tex-koma-script-examples-doc
SUBDIR+=	tex-kotex
SUBDIR+=	tex-kotex-dev
SUBDIR+=	tex-kotex-dev-doc
SUBDIR+=	tex-kotex-doc
SUBDIR+=	tex-kotex-oblivoir
SUBDIR+=	tex-kotex-oblivoir-doc
SUBDIR+=	tex-kotex-plain
SUBDIR+=	tex-kotex-plain-doc
SUBDIR+=	tex-kotex-utf
SUBDIR+=	tex-kotex-utf-doc
SUBDIR+=	tex-kotex-utils
SUBDIR+=	tex-kotex-utils-doc
SUBDIR+=	tex-kpathsea
SUBDIR+=	tex-kpathsea-doc
SUBDIR+=	tex-l2picfaq-doc
SUBDIR+=	tex-l2tabu-doc
SUBDIR+=	tex-l2tabu-english-doc
SUBDIR+=	tex-labels
SUBDIR+=	tex-labels-doc
SUBDIR+=	tex-lambda
SUBDIR+=	tex-lastpage
SUBDIR+=	tex-lastpage-doc
SUBDIR+=	tex-latex
SUBDIR+=	tex-latex-bib-ex-doc
SUBDIR+=	tex-latex-bin
SUBDIR+=	tex-latex-bin-doc
SUBDIR+=	tex-latex-brochure-doc
SUBDIR+=	tex-latex-course-doc
SUBDIR+=	tex-latex-doc
SUBDIR+=	tex-latex-doc-ptr-doc
SUBDIR+=	tex-latex-graphics-companion-doc
SUBDIR+=	tex-latex-referenz-doc
SUBDIR+=	tex-latex-tabellen-doc
SUBDIR+=	tex-latex-veryshortguide-doc
SUBDIR+=	tex-latex-web-companion-doc
SUBDIR+=	tex-latex2e-help-texinfo-doc
SUBDIR+=	tex-latex4wp-doc
SUBDIR+=	tex-latexcheat-de-doc
SUBDIR+=	tex-latexcheat-doc
SUBDIR+=	tex-latexconfig
SUBDIR+=	tex-latexcourse-rug-doc
SUBDIR+=	tex-latexfileinfo-pkgs
SUBDIR+=	tex-latexfileinfo-pkgs-doc
SUBDIR+=	tex-layouts
SUBDIR+=	tex-layouts-doc
SUBDIR+=	tex-lazylist
SUBDIR+=	tex-lazylist-doc
SUBDIR+=	tex-leaflet
SUBDIR+=	tex-leaflet-doc
SUBDIR+=	tex-leftidx
SUBDIR+=	tex-leftidx-doc
SUBDIR+=	tex-lettrine
SUBDIR+=	tex-lettrine-doc
SUBDIR+=	tex-lineno
SUBDIR+=	tex-lipsum
SUBDIR+=	tex-lipsum-doc
SUBDIR+=	tex-listing
SUBDIR+=	tex-listing-doc
SUBDIR+=	tex-listings
SUBDIR+=	tex-listings-doc
SUBDIR+=	tex-lkproof
SUBDIR+=	tex-lkproof-doc
SUBDIR+=	tex-logreq
SUBDIR+=	tex-logreq-doc
SUBDIR+=	tex-lollipop
SUBDIR+=	tex-lollipop-doc
SUBDIR+=	tex-ltabptch
SUBDIR+=	tex-ltabptch-doc
SUBDIR+=	tex-ltxmisc
SUBDIR+=	tex-lualatex-doc-de-doc
SUBDIR+=	tex-luatex
SUBDIR+=	tex-luatex-doc
SUBDIR+=	tex-macros2e-doc
SUBDIR+=	tex-magaz
SUBDIR+=	tex-magaz-doc
SUBDIR+=	tex-makecmds
SUBDIR+=	tex-makecmds-doc
SUBDIR+=	tex-marginnote
SUBDIR+=	tex-marginnote-doc
SUBDIR+=	tex-math-e-doc
SUBDIR+=	tex-mathcomp
SUBDIR+=	tex-mathcomp-doc
SUBDIR+=	tex-mathdots
SUBDIR+=	tex-mathdots-doc
SUBDIR+=	tex-mathtools
SUBDIR+=	tex-mdframed
SUBDIR+=	tex-mdframed-doc
SUBDIR+=	tex-mdwtools
SUBDIR+=	tex-mdwtools-doc
SUBDIR+=	tex-media9
SUBDIR+=	tex-media9-doc
SUBDIR+=	tex-memdesign-doc
SUBDIR+=	tex-memoir
SUBDIR+=	tex-memoir-doc
SUBDIR+=	tex-metafont-beginners-doc
SUBDIR+=	tex-metalogo
SUBDIR+=	tex-metalogo-doc
SUBDIR+=	tex-metapost-examples-doc
SUBDIR+=	tex-mfnfss
SUBDIR+=	tex-mfnfss-doc
SUBDIR+=	tex-mhchem
SUBDIR+=	tex-mhchem-doc
SUBDIR+=	tex-microtype
SUBDIR+=	tex-microtype-de-doc
SUBDIR+=	tex-microtype-doc
SUBDIR+=	tex-midpage
SUBDIR+=	tex-midpage-doc
SUBDIR+=	tex-mil3-doc
SUBDIR+=	tex-minitoc
SUBDIR+=	tex-minitoc-doc
SUBDIR+=	tex-minted
SUBDIR+=	tex-minted-doc
SUBDIR+=	tex-misc
SUBDIR+=	tex-misc209
SUBDIR+=	tex-mkpattern
SUBDIR+=	tex-mkpattern-doc
SUBDIR+=	tex-mltex
SUBDIR+=	tex-mltex-doc
SUBDIR+=	tex-moderncv
SUBDIR+=	tex-moderncv-doc
SUBDIR+=	tex-moreverb
SUBDIR+=	tex-moreverb-doc
SUBDIR+=	tex-mparhack
SUBDIR+=	tex-mparhack-doc
SUBDIR+=	tex-ms
SUBDIR+=	tex-ms-doc
SUBDIR+=	tex-multibib
SUBDIR+=	tex-multibib-doc
SUBDIR+=	tex-multirow
SUBDIR+=	tex-multirow-doc
SUBDIR+=	tex-musixtex
SUBDIR+=	tex-musixtex-doc
SUBDIR+=	tex-natbib
SUBDIR+=	tex-natbib-doc
SUBDIR+=	tex-needspace
SUBDIR+=	tex-needspace-doc
SUBDIR+=	tex-newlfm
SUBDIR+=	tex-newlfm-doc
SUBDIR+=	tex-newsletr
SUBDIR+=	tex-newsletr-doc
SUBDIR+=	tex-nextpage
SUBDIR+=	tex-nolbreaks
SUBDIR+=	tex-nolbreaks-doc
SUBDIR+=	tex-nomencl
SUBDIR+=	tex-nomencl-doc
SUBDIR+=	tex-nopageno
SUBDIR+=	tex-nopageno-doc
SUBDIR+=	tex-notoccite
SUBDIR+=	tex-notoccite-doc
SUBDIR+=	tex-ntgclass
SUBDIR+=	tex-ntgclass-doc
SUBDIR+=	tex-ntheorem
SUBDIR+=	tex-ntheorem-doc
SUBDIR+=	tex-oberdiek
SUBDIR+=	tex-oberdiek-doc
SUBDIR+=	tex-octavo
SUBDIR+=	tex-octavo-doc
SUBDIR+=	tex-oinuit
SUBDIR+=	tex-oinuit-doc
SUBDIR+=	tex-omega
SUBDIR+=	tex-omega-doc
SUBDIR+=	tex-onlyamsmath
SUBDIR+=	tex-onlyamsmath-doc
SUBDIR+=	tex-optional
SUBDIR+=	tex-optional-doc
SUBDIR+=	tex-ordinalpt
SUBDIR+=	tex-ordinalpt-doc
SUBDIR+=	tex-otibet
SUBDIR+=	tex-otibet-doc
SUBDIR+=	tex-oubraces
SUBDIR+=	tex-oubraces-doc
SUBDIR+=	tex-overpic
SUBDIR+=	tex-pageslts
SUBDIR+=	tex-paralist
SUBDIR+=	tex-paralist-doc
SUBDIR+=	tex-parskip
SUBDIR+=	tex-parskip-doc
SUBDIR+=	tex-passivetex
SUBDIR+=	tex-patgen2-tutorial-doc
SUBDIR+=	tex-path
SUBDIR+=	tex-path-doc
SUBDIR+=	tex-pb-diagram
SUBDIR+=	tex-pb-diagram-doc
SUBDIR+=	tex-pbibtex-base
SUBDIR+=	tex-pbibtex-base-doc
SUBDIR+=	tex-pbox
SUBDIR+=	tex-pdfcomment
SUBDIR+=	tex-pdfcomment-doc
SUBDIR+=	tex-pdfpages
SUBDIR+=	tex-pdfpages-doc
SUBDIR+=	tex-pdftex
SUBDIR+=	tex-pdftex-def
SUBDIR+=	tex-pdftex-doc
SUBDIR+=	tex-pdftools
SUBDIR+=	tex-pdftools-doc
SUBDIR+=	tex-pgf
SUBDIR+=	tex-pgf-doc
SUBDIR+=	tex-pgfplots
SUBDIR+=	tex-pgfplots-doc
SUBDIR+=	tex-picinpar
SUBDIR+=	tex-picinpar-doc
SUBDIR+=	tex-pict2e
SUBDIR+=	tex-pict2e-doc
SUBDIR+=	tex-pictexsum-doc
SUBDIR+=	tex-pitex
SUBDIR+=	tex-pitex-doc
SUBDIR+=	tex-pkfix
SUBDIR+=	tex-pkfix-doc
SUBDIR+=	tex-placeins
SUBDIR+=	tex-placeins-doc
SUBDIR+=	tex-placeins-plain
SUBDIR+=	tex-plain
SUBDIR+=	tex-plain-doc-doc
SUBDIR+=	tex-plipsum
SUBDIR+=	tex-plipsum-doc
SUBDIR+=	tex-plnfss
SUBDIR+=	tex-plnfss-doc
SUBDIR+=	tex-plstmary
SUBDIR+=	tex-plstmary-doc
SUBDIR+=	tex-poltawski
SUBDIR+=	tex-poltawski-doc
SUBDIR+=	tex-polyglossia
SUBDIR+=	tex-polyglossia-doc
SUBDIR+=	tex-polytable
SUBDIR+=	tex-polytable-doc
SUBDIR+=	tex-powerdot
SUBDIR+=	tex-preprint
SUBDIR+=	tex-preprint-doc
SUBDIR+=	tex-present
SUBDIR+=	tex-present-doc
SUBDIR+=	tex-presentations-doc
SUBDIR+=	tex-presentations-en-doc
SUBDIR+=	tex-preview
SUBDIR+=	tex-preview-doc
SUBDIR+=	tex-printlen
SUBDIR+=	tex-printlen-doc
SUBDIR+=	tex-probsoln
SUBDIR+=	tex-probsoln-doc
SUBDIR+=	tex-program
SUBDIR+=	tex-program-doc
SUBDIR+=	tex-prosper
SUBDIR+=	tex-prosper-doc
SUBDIR+=	tex-psfrag
SUBDIR+=	tex-psfrag-doc
SUBDIR+=	tex-psizzl
SUBDIR+=	tex-psizzl-doc
SUBDIR+=	tex-pslatex
SUBDIR+=	tex-pspicture
SUBDIR+=	tex-pspicture-doc
SUBDIR+=	tex-pstricks-examples-doc
SUBDIR+=	tex-pstricks-examples-en-doc
SUBDIR+=	tex-ptex
SUBDIR+=	tex-ptex-base
SUBDIR+=	tex-ptex-base-doc
SUBDIR+=	tex-ptex-doc
SUBDIR+=	tex-r_und_s
SUBDIR+=	tex-r_und_s-doc
SUBDIR+=	tex-rcs
SUBDIR+=	tex-rcsinfo
SUBDIR+=	tex-rcsinfo-doc
SUBDIR+=	tex-readarray
SUBDIR+=	tex-readarray-doc
SUBDIR+=	tex-realscripts
SUBDIR+=	tex-realscripts-doc
SUBDIR+=	tex-relsize
SUBDIR+=	tex-resume
SUBDIR+=	tex-resumemac
SUBDIR+=	tex-resumemac-doc
SUBDIR+=	tex-revtex
SUBDIR+=	tex-revtex-doc
SUBDIR+=	tex-revtex4
SUBDIR+=	tex-revtex4-doc
SUBDIR+=	tex-romanneg
SUBDIR+=	tex-romanneg-doc
SUBDIR+=	tex-rotating
SUBDIR+=	tex-rotating-doc
SUBDIR+=	tex-rotfloat
SUBDIR+=	tex-rotfloat-doc
SUBDIR+=	tex-ruhyphen
SUBDIR+=	tex-sansmath
SUBDIR+=	tex-sansmath-doc
SUBDIR+=	tex-sauerj
SUBDIR+=	tex-sauerj-doc
SUBDIR+=	tex-scale
SUBDIR+=	tex-scale-doc
SUBDIR+=	tex-schulschriften
SUBDIR+=	tex-schulschriften-doc
SUBDIR+=	tex-schwalbe-chess
SUBDIR+=	tex-schwalbe-chess-doc
SUBDIR+=	tex-secdot
SUBDIR+=	tex-secdot-doc
SUBDIR+=	tex-section
SUBDIR+=	tex-section-doc
SUBDIR+=	tex-sectsty
SUBDIR+=	tex-sectsty-doc
SUBDIR+=	tex-selectp
SUBDIR+=	tex-seminar
SUBDIR+=	tex-seminar-doc
SUBDIR+=	tex-sepnum
SUBDIR+=	tex-sepnum-doc
SUBDIR+=	tex-setspace
SUBDIR+=	tex-shadethm
SUBDIR+=	tex-shadow
SUBDIR+=	tex-shadow-doc
SUBDIR+=	tex-shapepar
SUBDIR+=	tex-shapepar-doc
SUBDIR+=	tex-showdim
SUBDIR+=	tex-showdim-doc
SUBDIR+=	tex-showlabels
SUBDIR+=	tex-showlabels-doc
SUBDIR+=	tex-showtags
SUBDIR+=	tex-showtags-doc
SUBDIR+=	tex-sidecap
SUBDIR+=	tex-sidecap-doc
SUBDIR+=	tex-simplified-latex-doc
SUBDIR+=	tex-siunitx
SUBDIR+=	tex-siunitx-doc
SUBDIR+=	tex-skak
SUBDIR+=	tex-skak-doc
SUBDIR+=	tex-skaknew
SUBDIR+=	tex-skaknew-doc
SUBDIR+=	tex-snapshot
SUBDIR+=	tex-snapshot-doc
SUBDIR+=	tex-soul
SUBDIR+=	tex-soul-doc
SUBDIR+=	tex-spanish-mx
SUBDIR+=	tex-spanish-mx-doc
SUBDIR+=	tex-sphack
SUBDIR+=	tex-sphack-doc
SUBDIR+=	tex-splitbib
SUBDIR+=	tex-srcltx
SUBDIR+=	tex-srcltx-doc
SUBDIR+=	tex-standalone
SUBDIR+=	tex-standalone-doc
SUBDIR+=	tex-startex
SUBDIR+=	tex-startex-doc
SUBDIR+=	tex-statex
SUBDIR+=	tex-statex-doc
SUBDIR+=	tex-stdclsdv
SUBDIR+=	tex-stdclsdv-doc
SUBDIR+=	tex-stringstrings
SUBDIR+=	tex-stringstrings-doc
SUBDIR+=	tex-sttools
SUBDIR+=	tex-sttools-doc
SUBDIR+=	tex-subfig
SUBDIR+=	tex-subfig-doc
SUBDIR+=	tex-subfigmat
SUBDIR+=	tex-subfigmat-doc
SUBDIR+=	tex-subfigure
SUBDIR+=	tex-subfigure-doc
SUBDIR+=	tex-subfiles
SUBDIR+=	tex-subfiles-doc
SUBDIR+=	tex-substr
SUBDIR+=	tex-substr-doc
SUBDIR+=	tex-supertabular
SUBDIR+=	tex-supertabular-doc
SUBDIR+=	tex-svg-inkscape-doc
SUBDIR+=	tex-svninfo
SUBDIR+=	tex-svninfo-doc
SUBDIR+=	tex-t2
SUBDIR+=	tex-t2-doc
SUBDIR+=	tex-tabls
SUBDIR+=	tex-tabls-doc
SUBDIR+=	tex-tabu
SUBDIR+=	tex-tabu-doc
SUBDIR+=	tex-tabulars-e-doc
SUBDIR+=	tex-tamethebeast-doc
SUBDIR+=	tex-tds-doc
SUBDIR+=	tex-templates-fenn-doc
SUBDIR+=	tex-templates-sommer-doc
SUBDIR+=	tex-tetex
SUBDIR+=	tex-tetex-doc
SUBDIR+=	tex-tex
SUBDIR+=	tex-tex-font-errors-cheatsheet-doc
SUBDIR+=	tex-tex-ini-files
SUBDIR+=	tex-tex-ini-files-doc
SUBDIR+=	tex-tex-overview-doc
SUBDIR+=	tex-tex-refs-doc
SUBDIR+=	tex-tex4ht
SUBDIR+=	tex-tex4ht-doc
SUBDIR+=	tex-texbytopic-doc
SUBDIR+=	tex-texconfig
SUBDIR+=	tex-texconfig-doc
SUBDIR+=	tex-texdoc
SUBDIR+=	tex-texdoc-doc
SUBDIR+=	tex-texinfo
SUBDIR+=	tex-texlive-common-doc
SUBDIR+=	tex-texlive-docindex
SUBDIR+=	tex-texlive-docindex-doc
SUBDIR+=	tex-texlive-en-doc
SUBDIR+=	tex-texlive-scripts
SUBDIR+=	tex-texlive.infra
SUBDIR+=	tex-texmate
SUBDIR+=	tex-texmate-doc
SUBDIR+=	tex-texpower
SUBDIR+=	tex-texpower-doc
SUBDIR+=	tex-texsis
SUBDIR+=	tex-texsis-doc
SUBDIR+=	tex-textcase
SUBDIR+=	tex-textcase-doc
SUBDIR+=	tex-textfit
SUBDIR+=	tex-textfit-doc
SUBDIR+=	tex-textmerg
SUBDIR+=	tex-textmerg-doc
SUBDIR+=	tex-textpos
SUBDIR+=	tex-textpos-doc
SUBDIR+=	tex-thailatex
SUBDIR+=	tex-threeparttable
SUBDIR+=	tex-threeparttable-doc
SUBDIR+=	tex-thumbpdf
SUBDIR+=	tex-timetable
SUBDIR+=	tex-tipa-de-doc
SUBDIR+=	tex-titlepages-doc
SUBDIR+=	tex-titleref
SUBDIR+=	tex-titleref-doc
SUBDIR+=	tex-titlesec
SUBDIR+=	tex-titlesec-doc
SUBDIR+=	tex-tlc2-doc
SUBDIR+=	tex-tocbibind
SUBDIR+=	tex-tocbibind-doc
SUBDIR+=	tex-tocloft
SUBDIR+=	tex-tocloft-doc
SUBDIR+=	tex-todo
SUBDIR+=	tex-todo-doc
SUBDIR+=	tex-todonotes
SUBDIR+=	tex-todonotes-doc
SUBDIR+=	tex-tools
SUBDIR+=	tex-tools-doc
SUBDIR+=	tex-toptesi
SUBDIR+=	tex-toptesi-doc
SUBDIR+=	tex-totpages
SUBDIR+=	tex-totpages-doc
SUBDIR+=	tex-tpslifonts
SUBDIR+=	tex-tpslifonts-doc
SUBDIR+=	tex-translation-arsclassica-de-doc
SUBDIR+=	tex-translation-biblatex-de-doc
SUBDIR+=	tex-translation-chemsym-de-doc
SUBDIR+=	tex-translation-ecv-de-doc
SUBDIR+=	tex-translation-enumitem-de-doc
SUBDIR+=	tex-translation-europecv-de-doc
SUBDIR+=	tex-translation-filecontents-de-doc
SUBDIR+=	tex-translation-moreverb-de-doc
SUBDIR+=	tex-treetex
SUBDIR+=	tex-treetex-doc
SUBDIR+=	tex-truncate
SUBDIR+=	tex-truncate-doc
SUBDIR+=	tex-tufte-latex
SUBDIR+=	tex-tufte-latex-doc
SUBDIR+=	tex-twoinone
SUBDIR+=	tex-twoinone-doc
SUBDIR+=	tex-type1cm
SUBDIR+=	tex-type1cm-doc
SUBDIR+=	tex-typehtml
SUBDIR+=	tex-typehtml-doc
SUBDIR+=	tex-ucs
SUBDIR+=	tex-ucs-doc
SUBDIR+=	tex-udesoftec
SUBDIR+=	tex-udesoftec-doc
SUBDIR+=	tex-ukrhyph
SUBDIR+=	tex-ukrhyph-doc
SUBDIR+=	tex-ulem
SUBDIR+=	tex-ulem-doc
SUBDIR+=	tex-umlaute
SUBDIR+=	tex-umlaute-doc
SUBDIR+=	tex-underscore
SUBDIR+=	tex-underscore-doc
SUBDIR+=	tex-undolabl
SUBDIR+=	tex-unicode-data
SUBDIR+=	tex-unicode-data-doc
SUBDIR+=	tex-units
SUBDIR+=	tex-units-doc
SUBDIR+=	tex-updmap-map
SUBDIR+=	tex-upquote
SUBDIR+=	tex-upquote-doc
SUBDIR+=	tex-url
SUBDIR+=	tex-url-doc
SUBDIR+=	tex-varisize
SUBDIR+=	tex-varisize-doc
SUBDIR+=	tex-varwidth
SUBDIR+=	tex-varwidth-doc
SUBDIR+=	tex-verbasef
SUBDIR+=	tex-verbasef-doc
SUBDIR+=	tex-verbatimbox
SUBDIR+=	tex-verbatimbox-doc
SUBDIR+=	tex-verbdef
SUBDIR+=	tex-verbdef-doc
SUBDIR+=	tex-version
SUBDIR+=	tex-version-doc
SUBDIR+=	tex-vertbars
SUBDIR+=	tex-visualfaq-doc
SUBDIR+=	tex-vmargin
SUBDIR+=	tex-vmargin-doc
SUBDIR+=	tex-vntex
SUBDIR+=	tex-vntex-doc
SUBDIR+=	tex-voss-mathcol-doc
SUBDIR+=	tex-voss-mathmode-doc
SUBDIR+=	tex-vruler
SUBDIR+=	tex-vruler-doc
SUBDIR+=	tex-wallpaper
SUBDIR+=	tex-wallpaper-doc
SUBDIR+=	tex-was
SUBDIR+=	tex-was-doc
SUBDIR+=	tex-webguide-doc
SUBDIR+=	tex-wrapfig
SUBDIR+=	tex-wrapfig-doc
SUBDIR+=	tex-xargs
SUBDIR+=	tex-xargs-doc
SUBDIR+=	tex-xcjk2uni
SUBDIR+=	tex-xcjk2uni-doc
SUBDIR+=	tex-xcolor
SUBDIR+=	tex-xcolor-doc
SUBDIR+=	tex-xcomment
SUBDIR+=	tex-xcomment-doc
SUBDIR+=	tex-xdvi
SUBDIR+=	tex-xetex
SUBDIR+=	tex-xetex-def
SUBDIR+=	tex-xetex-doc
SUBDIR+=	tex-xetexconfig
SUBDIR+=	tex-xetexref-doc
SUBDIR+=	tex-xfor
SUBDIR+=	tex-xfor-doc
SUBDIR+=	tex-xii-doc
SUBDIR+=	tex-xkeyval
SUBDIR+=	tex-xkeyval-doc
SUBDIR+=	tex-xltxtra
SUBDIR+=	tex-xltxtra-doc
SUBDIR+=	tex-xskak
SUBDIR+=	tex-xskak-doc
SUBDIR+=	tex-xstring
SUBDIR+=	tex-xstring-doc
SUBDIR+=	tex-xtab
SUBDIR+=	tex-xtab-doc
SUBDIR+=	tex-xunicode
SUBDIR+=	tex-xunicode-doc
SUBDIR+=	tex-ydoc
SUBDIR+=	tex-ydoc-doc
SUBDIR+=	tex-yfonts
SUBDIR+=	tex-yfonts-doc
SUBDIR+=	tex-zxjafont
SUBDIR+=	tex-zxjafont-doc
SUBDIR+=	tex4ht
#SUBDIR+=	texlive				# place holder directory
SUBDIR+=	transfig
SUBDIR+=	vlna
SUBDIR+=	web2c
SUBDIR+=	xdvik
SUBDIR+=	xetex
SUBDIR+=	xpdf
SUBDIR+=	xpdf-arabic
SUBDIR+=	xpdf-chinese-simplified
SUBDIR+=	xpdf-chinese-traditional
SUBDIR+=	xpdf-cyrillic
SUBDIR+=	xpdf-greek
SUBDIR+=	xpdf-hebrew
SUBDIR+=	xpdf-japanese
SUBDIR+=	xpdf-korean
SUBDIR+=	xpdf-latin2
SUBDIR+=	xpdf-thai
SUBDIR+=	xpdf-turkish
SUBDIR+=	xpdfopen
SUBDIR+=	xpp
SUBDIR+=	yup
SUBDIR+=	zathura
SUBDIR+=	zathura-pdf-mupdf
SUBDIR+=	zathura-pdf-poppler
SUBDIR+=	zathura-ps

.include "../mk/misc/category.mk"