summaryrefslogtreecommitdiff
path: root/meta-pkgs/texlive-collection-latexextra/Makefile
blob: 9f8a204eaa70f6c334b378b6029924f30f2a7b1a (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
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
# $NetBSD: Makefile,v 1.67 2022/05/31 21:19:28 markd Exp $

DISTNAME=	collection-latexextra
PKGNAME=	texlive-${DISTNAME}-2022pre3
CATEGORIES=	meta-pkgs
MASTER_SITES=	# empty
TEXLIVE_REV=	63430

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	https://www.tug.org/texlive/
COMMENT=	LaTeX additional packages

DEPENDS+=	texlive-collection-latexrecommended-[0-9]*:../../meta-pkgs/texlive-collection-latexrecommended
DEPENDS+=	texlive-collection-pictures-[0-9]*:../../meta-pkgs/texlive-collection-pictures

DEPENDS+=	tex-2up-[0-9]*:../../print/tex-2up
DEPENDS+=	tex-a0poster-[0-9]*:../../print/tex-a0poster
DEPENDS+=	tex-a4wide-[0-9]*:../../print/tex-a4wide
DEPENDS+=	tex-a5comb-[0-9]*:../../print/tex-a5comb
# depend abraces
DEPENDS+=	tex-abstract-[0-9]*:../../print/tex-abstract
# depend accessibility
DEPENDS+=	tex-accsupp-[0-9]*:../../print/tex-accsupp
# depend achemso
# depend acro
DEPENDS+=	tex-acronym-[0-9]*:../../print/tex-acronym
# depend acroterm
# depend actuarialangle
# depend actuarialsymbol
# depend addfont
# depend addlines
# depend adjmulticol
DEPENDS+=	tex-adjustbox-[0-9]*:../../print/tex-adjustbox
DEPENDS+=	tex-adrconv-[0-9]*:../../print/tex-adrconv
DEPENDS+=	tex-advdate-[0-9]*:../../print/tex-advdate
# depend akktex
# depend akletter
# depend alertmessage
# depend alnumsec
DEPENDS+=	tex-alphalph-[0-9]*:../../print/tex-alphalph
# depend alterqcm
# depend altfont
# depend altsubsup
# depend amsaddr
DEPENDS+=	tex-animate-[0-9]*:../../graphics/tex-animate
DEPENDS+=	tex-anonchap-[0-9]*:../../print/tex-anonchap
DEPENDS+=	tex-answers-[0-9]*:../../print/tex-answers
DEPENDS+=	tex-anyfontsize-[0-9]*:../../print/tex-anyfontsize
DEPENDS+=	tex-appendix-[0-9]*:../../print/tex-appendix
DEPENDS+=	tex-appendixnumberbeamer-[0-9]*:../../print/tex-appendixnumberbeamer
# depend apptools
DEPENDS+=	tex-arabicfront-[0-9]*:../../print/tex-arabicfront
# depend arcs
# depend arraycols
# depend arrayjobx
# depend arraysort
# depend arydshln
# depend asciilist
DEPENDS+=	tex-askinclude-[0-9]*:../../print/tex-askinclude
# depend assignment
# depend assoccnt
# depend association-matrix
DEPENDS+=	tex-atenddvi-[0-9]*:../../print/tex-atenddvi
# depend atendofenv
# depend attachfile
# depend aurl
# depend authoraftertitle
# depend authorarchive
# depend authorindex
# depend autofancyhdr
# depend autonum
DEPENDS+=	tex-autonum-[0-9]*:../../print/tex-autonum
# depend autopdf
# depend autopuncitems
# depend avremu
# depend axessibility
DEPENDS+=	tex-background-[0-9]*:../../print/tex-background
# depend bankstatement
# depend bashful
# depend basicarith
# depend bchart
# depend beamer-rl
# depend beamer2thesis
# depend beamerappendixnote
# depend beameraudience
# depend beamerauxtheme
# depend beamercolorthemeowl
# depend beamerdarkthemes
DEPENDS+=	tex-beamerposter-[0-9]*:../../print/tex-beamerposter
# depend beamersubframe
# depend beamertheme-arguelles
DEPENDS+=	tex-beamertheme-cuerna-[0-9]*:../../print/tex-beamertheme-cuerna
DEPENDS+=	tex-beamertheme-detlevcm-[0-9]*:../../print/tex-beamertheme-detlevcm
DEPENDS+=	tex-beamertheme-epyt-[0-9]*:../../print/tex-beamertheme-epyt
DEPENDS+=	tex-beamertheme-focus-[0-9]*:../../print/tex-beamertheme-focus
DEPENDS+=	tex-beamertheme-light-[0-9]*:../../print/tex-beamertheme-light
DEPENDS+=	tex-beamertheme-metropolis-[0-9]*:../../print/tex-beamertheme-metropolis
DEPENDS+=	tex-beamertheme-npbt-[0-9]*:../../print/tex-beamertheme-npbt
DEPENDS+=	tex-beamertheme-phnompenh-[0-9]*:../../print/tex-beamertheme-phnompenh
# depend beamertheme-pure-minimalistic
DEPENDS+=	tex-beamertheme-saintpetersburg-[0-9]*:../../print/tex-beamertheme-saintpetersburg
# depend beamertheme-simpledarkblue
# depend beamertheme-trigon
DEPENDS+=	tex-beamertheme-upenn-bc-[0-9]*:../../print/tex-beamertheme-upenn-bc
DEPENDS+=	tex-beamerthemejltree-[0-9]*:../../print/tex-beamerthemejltree
# depend beamerthemelalic
DEPENDS+=	tex-beamerthemenirma-[0-9]*:../../print/tex-beamerthemenirma
# epend beamerthemenord
# depend bearwear
# depend beaulivre
DEPENDS+=	tex-beton-[0-9]*:../../print/tex-beton
# depend bewerbung
# depend bez123
# depend bhcexam
# depend bibletext
DEPENDS+=	tex-bigfoot-[0-9]*:../../print/tex-bigfoot
# depend bigints
# depend bilingualpages
# depend biochemistry-colors
# depend bithesis
# depend bizcard
DEPENDS+=	tex-blindtext-[0-9]*:../../print/tex-blindtext
DEPENDS+=	tex-blkarray-[0-9]*:../../print/tex-blkarray
DEPENDS+=	tex-block-[0-9]*:../../print/tex-block
# depend blowup
# depend bnumexpr
# depend boites
DEPENDS+=	tex-bold-extra-[0-9]*:../../print/tex-bold-extra
# depend book-of-common-prayer
# depend bookcover
# depend bookest
# depend booklet
# depend bookshelf
# depend boolexpr
# depend bophook
DEPENDS+=	tex-boxedminipage-[0-9]*:../../print/tex-boxedminipage
# depend boxhandler
# depend bracketkey
DEPENDS+=	tex-braket-[0-9]*:../../print/tex-braket
# depend breakurl
# depend bubblesort
# depend bullcntr
# depend bxcalc
# depend bxdpx-beamer
# depend bxdvidriver
# depend bxenclose
# depend bxnewfont
# depend bxpapersize
# depend bxpdfver
# depend bxtexlogo
# depend calcage
# depend calctab
# depend calculator
DEPENDS+=	tex-calrsfs-[0-9]*:../../print/tex-calrsfs
# depend cals
# depend calxxxx-yyyy
DEPENDS+=	tex-cancel-[0-9]*:../../print/tex-cancel
# depend canoniclayout
DEPENDS+=	tex-capt-of-[0-9]*:../../print/tex-capt-of
# depend captcont
DEPENDS+=	tex-captdef-[0-9]*:../../print/tex-captdef
# depend carbohydrates
DEPENDS+=	tex-cases-[0-9]*:../../print/tex-cases
# depend casyl
DEPENDS+=	tex-catchfile-[0-9]*:../../print/tex-catchfile
# depend catchfilebetweentags
# depend catechis
# depend catoptions
# depend cbcoptic
DEPENDS+=	tex-ccaption-[0-9]*:../../print/tex-ccaption
# depend cclicenses
# depend cd
# depend cd-cover
# depend cdcmd
# depend cdpbundl
# depend cellprops
DEPENDS+=	tex-cellspace-[0-9]*:../../print/tex-cellspace
# depend censor
# depend centeredline
# depend centerlastline
DEPENDS+=	tex-changebar-[0-9]*:../../print/tex-changebar
# depend changelayout
# depend changelog
DEPENDS+=	tex-changepage-[0-9]*:../../print/tex-changepage
DEPENDS+=	tex-changes-[0-9]*:../../print/tex-changes
DEPENDS+=	tex-chappg-[0-9]*:../../print/tex-chappg
# depend chapterfolder
# depend cheatsheet
DEPENDS+=	tex-checkend-[0-9]*:../../print/tex-checkend
# depend chet
# depend chextras
# depend childdoc
# depend chkfloat
# depend chletter
DEPENDS+=	tex-chngcntr-[0-9]*:../../print/tex-chngcntr
# depend chronology
# depend circ
# depend circledsteps
# depend circledtext
# depend classics
DEPENDS+=	tex-classpack-[0-9]*:../../print/tex-classpack
# depend clefval
DEPENDS+=	tex-cleveref-[0-9]*:../../print/tex-cleveref
# depend clicks
# depend clipboard
# depend clistmap
# depend clock
# depend clrdblpg
# depend clrstrip
# depend cmdstring
# depend cmdtrack
DEPENDS+=	tex-cmsd-[0-9]*:../../fonts/tex-cmsd
# depend cnltx
# depend cntformats
# depend cntperchap
# depend codebox
# depend codedoc
# depend codehigh
# depend codepage
# depend codesection
# depend collcell
DEPENDS+=	tex-collectbox-[0-9]*:../../print/tex-collectbox
# depend colophon
# depend color-edits
# depend colordoc
# depend colorinfo
# depend coloring
# depend colorist
# depend colorspace
# depend colortab
# depend colorwav
# depend colorweb
# depend colourchange
# depend combelow
# depend combine
# depend comma
# depend commado
# depend commedit
DEPENDS+=	tex-comment-[0-9]*:../../print/tex-comment
# depend commonunicode
# depend competences
# depend concepts
DEPENDS+=	tex-concprog-[0-9]*:../../print/tex-concprog
# depend conditext
# depend constants
DEPENDS+=	tex-continue-[0-9]*:../../print/tex-continue
DEPENDS+=	tex-contour-[0-9]*:../../graphics/tex-contour
# depend contracard
# depend conv-xkv
DEPENDS+=	tex-cooking-[0-9]*:../../print/tex-cooking
# depend cooking-units
# depend cool
# depend coollist
# depend coolstr
# depend coolthms
# depend cooltooltips
# depend coop-writing
# depend coordsys
# depend copyedit
# depend copyrightbox
# depend coseoul
# depend counttexruns
# depend courseoutline
# depend coursepaper
# depend coverpage
# depend cprotect
# depend crbox
# depend create-theorem
# depend crefthe
# depend crossreference
# depend crossreftools
# depend crumbs
DEPENDS+=	tex-csquotes-[0-9]*:../../print/tex-csquotes
# depend css-colors
# depend csvmerge
DEPENDS+=	tex-csvsimple-[0-9]*:../../textproc/tex-csvsimple
DEPENDS+=	tex-cuisine-[0-9]*:../../print/tex-cuisine
# depend currency
# depend currfile
DEPENDS+=	tex-currvita-[0-9]*:../../print/tex-currvita
DEPENDS+=	tex-cutwin-[0-9]*:../../print/tex-cutwin
# depend cv
# depend cv4tw
# depend cweb-latex
# depend cyber
# depend cybercic
DEPENDS+=	tex-dashbox-[0-9]*:../../print/tex-dashbox
DEPENDS+=	tex-dashrule-[0-9]*:../../print/tex-dashrule
# depend dashundergaps
# depend dataref
DEPENDS+=	tex-datatool-[0-9]*:../../print/tex-datatool
# depend datax
# depend dateiliste
DEPENDS+=	tex-datenumber-[0-9]*:../../time/tex-datenumber
# depend datestamp
DEPENDS+=	tex-datetime-[0-9]*:../../print/tex-datetime
DEPENDS+=	tex-datetime2-bahasai-[0-9]*:../../time/tex-datetime2-bahasai
DEPENDS+=	tex-datetime2-basque-[0-9]*:../../time/tex-datetime2-basque
DEPENDS+=	tex-datetime2-breton-[0-9]*:../../time/tex-datetime2-breton
DEPENDS+=	tex-datetime2-bulgarian-[0-9]*:../../time/tex-datetime2-bulgarian
DEPENDS+=	tex-datetime2-catalan-[0-9]*:../../time/tex-datetime2-catalan
DEPENDS+=	tex-datetime2-croatian-[0-9]*:../../time/tex-datetime2-croatian
DEPENDS+=	tex-datetime2-czech-[0-9]*:../../time/tex-datetime2-czech
DEPENDS+=	tex-datetime2-danish-[0-9]*:../../time/tex-datetime2-danish
DEPENDS+=	tex-datetime2-dutch-[0-9]*:../../time/tex-datetime2-dutch
DEPENDS+=	tex-datetime2-en-fulltext-[0-9]*:../../time/tex-datetime2-en-fulltext
DEPENDS+=	tex-datetime2-english-[0-9]*:../../time/tex-datetime2-english
DEPENDS+=	tex-datetime2-esperanto-[0-9]*:../../time/tex-datetime2-esperanto
DEPENDS+=	tex-datetime2-estonian-[0-9]*:../../time/tex-datetime2-estonian
DEPENDS+=	tex-datetime2-finnish-[0-9]*:../../time/tex-datetime2-finnish
DEPENDS+=	tex-datetime2-french-[0-9]*:../../time/tex-datetime2-french
DEPENDS+=	tex-datetime2-galician-[0-9]*:../../time/tex-datetime2-galician
DEPENDS+=	tex-datetime2-german-[0-9]*:../../time/tex-datetime2-german
DEPENDS+=	tex-datetime2-greek-[0-9]*:../../time/tex-datetime2-greek
DEPENDS+=	tex-datetime2-hebrew-[0-9]*:../../time/tex-datetime2-hebrew
DEPENDS+=	tex-datetime2-icelandic-[0-9]*:../../time/tex-datetime2-icelandic
DEPENDS+=	tex-datetime2-irish-[0-9]*:../../time/tex-datetime2-irish
DEPENDS+=	tex-datetime2-it-fulltext-[0-9]*:../../time/tex-datetime2-it-fulltext
DEPENDS+=	tex-datetime2-italian-[0-9]*:../../time/tex-datetime2-italian
DEPENDS+=	tex-datetime2-latin-[0-9]*:../../time/tex-datetime2-latin
DEPENDS+=	tex-datetime2-lsorbian-[0-9]*:../../time/tex-datetime2-lsorbian
DEPENDS+=	tex-datetime2-magyar-[0-9]*:../../time/tex-datetime2-magyar
DEPENDS+=	tex-datetime2-norsk-[0-9]*:../../time/tex-datetime2-norsk
DEPENDS+=	tex-datetime2-polish-[0-9]*:../../time/tex-datetime2-polish
DEPENDS+=	tex-datetime2-portuges-[0-9]*:../../time/tex-datetime2-portuges
DEPENDS+=	tex-datetime2-romanian-[0-9]*:../../time/tex-datetime2-romanian
DEPENDS+=	tex-datetime2-russian-[0-9]*:../../time/tex-datetime2-russian
DEPENDS+=	tex-datetime2-samin-[0-9]*:../../time/tex-datetime2-samin
DEPENDS+=	tex-datetime2-scottish-[0-9]*:../../time/tex-datetime2-scottish
DEPENDS+=	tex-datetime2-serbian-[0-9]*:../../time/tex-datetime2-serbian
DEPENDS+=	tex-datetime2-slovak-[0-9]*:../../time/tex-datetime2-slovak
DEPENDS+=	tex-datetime2-slovene-[0-9]*:../../time/tex-datetime2-slovene
DEPENDS+=	tex-datetime2-spanish-[0-9]*:../../time/tex-datetime2-spanish
DEPENDS+=	tex-datetime2-swedish-[0-9]*:../../time/tex-datetime2-swedish
DEPENDS+=	tex-datetime2-turkish-[0-9]*:../../time/tex-datetime2-turkish
DEPENDS+=	tex-datetime2-ukrainian-[0-9]*:../../time/tex-datetime2-ukrainian
DEPENDS+=	tex-datetime2-usorbian-[0-9]*:../../time/tex-datetime2-usorbian
DEPENDS+=	tex-datetime2-welsh-[0-9]*:../../time/tex-datetime2-welsh
DEPENDS+=	tex-dblfloatfix-[0-9]*:../../print/tex-dblfloatfix
# depend dbshow
# depend debate
# depend decimal
# depend decorule
# depend delimtxt
# depend denisbdoc
# depend diabetes-logbook
DEPENDS+=	tex-diagbox-[0-9]*:../../print/tex-diagbox
# depend diagnose
# depend dialogl
# depend dichokey
# depend dimnum
DEPENDS+=	tex-dinbrief-[0-9]*:../../print/tex-dinbrief
# depend directory
# depend dirtytalk
# depend dlfltxb
# depend dnaseq
DEPENDS+=	tex-doclicense-[0-9]*:../../devel/tex-doclicense
# depend docmfp
# depend docmute
# depend doctools
# depend documentation
# depend docutils
DEPENDS+=	tex-doi-[0-9]*:../../print/tex-doi
# depend dotarrow
DEPENDS+=	tex-dotlessi-[0-9]*:../../print/tex-dotlessi
# depend dotseqn
# depend download
# depend dox
# depend dpfloat
# depend dprogress
# depend drac
DEPENDS+=	tex-draftcopy-[0-9]*:../../print/tex-draftcopy
# depend draftfigure
DEPENDS+=	tex-draftwatermark-[0-9]*:../../print/tex-draftwatermark
# depend dtk
# depend dtxdescribe
# depend dtxgallery
# depend ducksay
# depend duckuments
# depend dvdcoll
# depend dynamicnumber
# depend dynblocks
# depend ean13isbn
# depend easy
DEPENDS+=	tex-easy-todo-[0-9]*:../../print/tex-easy-todo
# depend easybook
# depend easyfig
# depend easyfloats
# depend easyformat
# depend easylist
# depend easyreview
# depend ebezier
# depend ecclesiastic
# depend econlipsum
# depend ecv
# depend ed
# depend edichokey
# depend edmargin
# depend eemeir
# depend efbox
# depend egplot
# depend ehhline
# depend einfart
# depend elegantbook
# depend elegantnote
# depend elegantpaper
# depend elements
# depend ellipsis
# depend elmath
# depend elocalloc
# depend elpres
# depend elzcards
# depend emarks
# depend embedall
DEPENDS+=	tex-embedfile-[0-9]*:../../print/tex-embedfile
# depend embrac
# depend emptypage
# depend emulateapj
DEPENDS+=	tex-endfloat-[0-9]*:../../print/tex-endfloat
# depend endheads
DEPENDS+=	tex-endnotes-[0-9]*:../../print/tex-endnotes
# depend endnotes-hy
# depend engpron
# depend engrec
DEPENDS+=	tex-enotez-[0-9]*:../../print/tex-enotez
DEPENDS+=	tex-enumitem-[0-9]*:../../print/tex-enumitem
# depend enumitem-zref
# depend envbig
DEPENDS+=	tex-environ-[0-9]*:../../print/tex-environ
DEPENDS+=	tex-envlab-[0-9]*:../../print/tex-envlab
DEPENDS+=	tex-epigraph-[0-9]*:../../print/tex-epigraph
# depend epigraph-keys
# depend epiolmec
# depend eq-pin2corr
# depend eqell
# depend eqlist
# depend eqnalign
# depend eqname
DEPENDS+=	tex-eqparbox-[0-9]*:../../print/tex-eqparbox
# depend errata
# depend erw-l3
# depend esami
# depend esdiff
# depend esieecv
# depend esindex
DEPENDS+=	tex-esint-[0-9]*:../../fonts/tex-esint
# depend esint-type1
# depend etaremune
DEPENDS+=	tex-etextools-[0-9]*:../../print/tex-etextools
# depend etl
DEPENDS+=	tex-etoc-[0-9]*:../../print/tex-etoc
# depend eukdate
# depend eulerpx
DEPENDS+=	tex-europasscv-[0-9]*:../../print/tex-europasscv
DEPENDS+=	tex-europecv-[0-9]*:../../print/tex-europecv
DEPENDS+=	tex-everyhook-[0-9]*:../../print/tex-everyhook
DEPENDS+=	tex-everypage-[0-9]*:../../print/tex-everypage
DEPENDS+=	tex-exam-[0-9]*:../../print/tex-exam
# depend exam-n
# depend exam-randomizechoices
# depend examdesign
# depend example
# depend examplep
# depend exceltex
DEPENDS+=	tex-excludeonly-[0-9]*:../../print/tex-excludeonly
# depend exercise
# depend exercisebank
# depend exercisepoints
# depend exercises
# depend exesheet
# depend exframe
# depend exp-testopt
# depend expdlist
# depend export
# depend exsheets
# depend exsol
# depend extract
# depend facsimile
# depend factura
# depend fancyhandout
# depend fancylabel
# depend fancynum
# depend fancypar
# depend fancyslides
# depend fancytabs
# depend fancytooltips
# depend fbox
# depend fcolumn
# depend fetchcls
# depend fewerfloatpages
# depend ffcode
# depend ffslides
# depend fgruler
# depend fifo-stack
# depend figsize
DEPENDS+=	tex-filecontents-[0-9]*:../../print/tex-filecontents
# depend filecontentsdef
# depend filedate
# depend fileinfo
# depend filemod
# depend fink
# depend finstrut
# depend fithesis
# depend fixcmex
# depend fixfoot
DEPENDS+=	tex-fixme-[0-9]*:../../print/tex-fixme
DEPENDS+=	tex-fixmetodonotes-[0-9]*:../../print/tex-fixmetodonotes
# depend fjodor
# depend flabels
# depend flacards
# depend flagderiv
# depend flashcards
# depend flashmovie
# depend flipbook
# depend flippdf
DEPENDS+=	tex-floatflt-[0-9]*:../../print/tex-floatflt
DEPENDS+=	tex-floatrow-[0-9]*:../../print/tex-floatrow
DEPENDS+=	tex-flowfram-[0-9]*:../../print/tex-flowfram
# depend fmp
DEPENDS+=	tex-fmtcount-[0-9]*:../../print/tex-fmtcount
# depend fn2end
# depend fnbreak
DEPENDS+=	tex-fncychap-[0-9]*:../../print/tex-fncychap
DEPENDS+=	tex-fncylab-[0-9]*:../../print/tex-fncylab
DEPENDS+=	tex-fnpara-[0-9]*:../../print/tex-fnpara
# depend fnpct
# depend fnumprint
# depend foilhtml
# depend foliono
DEPENDS+=	tex-fontaxes-[0-9]*:../../print/tex-fontaxes
# depend fontsetup
# depend fontsize
# depend fonttable
DEPENDS+=	tex-footmisc-[0-9]*:../../print/tex-footmisc
# depend footmisx
DEPENDS+=	tex-footnotebackref-[0-9]*:../../print/tex-footnotebackref
# depend footnoterange
DEPENDS+=	tex-footnpag-[0-9]*:../../print/tex-footnpag
# depend forarray
# depend foreign
DEPENDS+=	tex-forloop-[0-9]*:../../print/tex-forloop
# depend formlett
# depend forms16be
# depend formular
# depend fragments
# depend frame
DEPENDS+=	tex-framed-[0-9]*:../../print/tex-framed
# depend frankenstein
# depend frege
# depend froufrou
DEPENDS+=	tex-ftcap-[0-9]*:../../print/tex-ftcap
# depend ftnxtra
# depend fullblck
# depend fullminipage
# depend fullwidth
# depend functional
DEPENDS+=	tex-fundus-calligra-[0-9]*:../../print/tex-fundus-calligra
# depend fundus-cyr
# depend fundus-sueterlin
DEPENDS+=	tex-fvextra-[0-9]*:../../print/tex-fvextra
DEPENDS+=	tex-fwlw-[0-9]*:../../print/tex-fwlw
DEPENDS+=	tex-g-brief-[0-9]*:../../print/tex-g-brief
# depend gatherenum
# depend gauss
# depend gcard
# depend gcite
# depend gender
# depend genmpage
# depend getfiledate
# depend getitems
# depend gindex
# depend ginpenc
# depend gitfile-info
# depend gitinfo
# depend gitinfo2
# depend gitlog
# depend gitver
# depend globalvals
# depend gloss
DEPENDS+=	tex-glossaries-[0-9]*:../../print/tex-glossaries
# depend glossaries-danish
# depend glossaries-dutch
# depend glossaries-english
# depend glossaries-estonian
# depend glossaries-extra
# depend glossaries-finnish
# depend glossaries-french
# depend glossaries-german
# depend glossaries-irish
# depend glossaries-italian
# depend glossaries-magyar
# depend glossaries-nynorsk
# depend glossaries-polish
# depend glossaries-portuges
# depend glossaries-serbian
# depend glossaries-slovene
# depend glossaries-spanish
# depend gmdoc
# depend gmdoc-enhance
# depend gmiflink
# depend gmutils
# depend gmverb
# depend grabbox
# depend grading-scheme
# depend graphbox
# depend graphicscache
# depend graphicx-psmin
# depend graphicxbox
# depend graphpaper
# depend grayhints
# depend grfpaste
# depend grid
# depend grid-system
# depend gridpapers
# depend gridset
# depend gridslides
# depend gs1
# depend guitlogo
# depend ha-prosper
# depend hackthefootline
# depend halloweenmath
# depend handin
# depend handout
# depend handoutwithnotes
DEPENDS+=	tex-hang-[0-9]*:../../print/tex-hang
DEPENDS+=	tex-hanging-[0-9]*:../../print/tex-hanging
DEPENDS+=	tex-hardwrap-[0-9]*:../../print/tex-hardwrap
# depend harnon-cv
# depend harpoon
# depend hc
# depend he-she
# depend hep-acronym
# depend hep-float
# depend hep-math
# depend hep-text
# depend hep-title
# depend hhtensor
# depend highlightlatex
# depend histogr
# depend hitec
# depend hitreport
# depend hletter
DEPENDS+=	tex-hobsub-[0-9]*:../../print/tex-hobsub
# depend hpsdiss
# depend href-ul
# depend hrefhide
# depend huawei
# depend hvextern
# depend hvindex
# depend hvlogos
# depend hvpygmentex
DEPENDS+=	tex-hypdoc-[0-9]*:../../print/tex-hypdoc
# depend hvqrurl
DEPENDS+=	tex-hypdestopt-[0-9]*:../../print/tex-hypdestopt
# depend hypdvips
DEPENDS+=	tex-hyper-[0-9]*:../../print/tex-hyper
# depend hyperbar
DEPENDS+=	tex-hypernat-[0-9]*:../../print/tex-hypernat
# depend hyperxmp
DEPENDS+=	tex-hyphenat-[0-9]*:../../print/tex-hyphenat
# depend identkey
# depend idxcmds
# depend idxlayout
# depend iexec
# depend ifallfalse
# depend iffont
# depend ifmslide
DEPENDS+=	tex-ifmtarg-[0-9]*:../../print/tex-ifmtarg
DEPENDS+=	tex-ifnextok-[0-9]*:../../print/tex-ifnextok
DEPENDS+=	tex-ifoddpage-[0-9]*:../../print/tex-ifoddpage
# depend ifthenx
# depend iitem
# depend image-gallery
DEPENDS+=	tex-imakeidx-[0-9]*:../../print/tex-imakeidx
DEPENDS+=	tex-import-[0-9]*:../../print/tex-import
DEPENDS+=	tex-incgraph-[0-9]*:../../graphics/tex-incgraph
# depend indextools
# depend inline-images
# depend inlinedef
DEPENDS+=	tex-inputenx-[0-9]*:../../print/tex-inputenx
# depend inputtrc
# depend interactiveworkbook
# depend interfaces
# depend intopdf
# depend inversepath
# depend invoice
# depend invoice-class
# depend invoice2
# depend iso
# depend iso10303
# depend isodate
# depend isodoc
# depend isonums
# depend isopt
# depend isorot
# depend isotope
# depend issuulinks
# depend iwhdp
# depend jlabels
# depend jmsdelim
# depend jslectureplanner
# depend jumplines
# depend jvlisting
# depend kalendarium
# depend kantlipsum
# depend kerntest
DEPENDS+=	tex-keycommand-[0-9]*:../../print/tex-keycommand
# depend keyfloat
# depend keyindex
# depend keyparse
# depend keyreader
# depend keystroke
# depend keyval2e
# depend keyvaltable
DEPENDS+=	tex-kix-[0-9]*:../../print/tex-kix
# depend knowledge
# depend koma-moderncvclassic
# depend koma-script-sfs
# depend komacv
# depend komacv-rg
# depend ktv-texdata
# depend l3build
# depend labbook
DEPENDS+=	tex-labels-[0-9]*:../../print/tex-labels
# depend labels4easylist
# depend labelschanged
# depend lambdax
# depend lastpackage
DEPENDS+=	tex-lastpage-[0-9]*:../../print/tex-lastpage
# depend latex-amsmath-dev
DEPENDS+=	tex-latex-base-dev-[0-9]*:../../print/tex-latex-base-dev
# depend latex-bin-dev
DEPENDS+=	tex-latex-firstaid-dev-[0-9]*:../../print/tex-latex-firstaid-dev
# depend latex-graphics-dev
# depend latex-lab-dev
# depend latex-tools-dev
# depend latex-uni8
# depend latexcolors
# depend latexdemo
# depend latexgit
DEPENDS+=	tex-layouts-[0-9]*:../../print/tex-layouts
DEPENDS+=	tex-lazylist-[0-9]*:../../print/tex-lazylist
# depend lccaps
# depend lcd
# depend lcg
DEPENDS+=	tex-leading-[0-9]*:../../print/tex-leading
DEPENDS+=	tex-leaflet-[0-9]*:../../print/tex-leaflet
# depend lebhart
# depend lectures
# depend lectureslides
DEPENDS+=	tex-leftidx-[0-9]*:../../print/tex-leftidx
# depend leftindex
# depend leipzig
# depend lengthconvert
# depend lettre
DEPENDS+=	tex-lettrine-[0-9]*:../../print/tex-lettrine
# depend lewis
# depend lhelp
# depend libgreek
# depend limap
# depend linegoal
# depend linop
DEPENDS+=	tex-lipsum-[0-9]*:../../print/tex-lipsum
# depend lisp-on-tex
DEPENDS+=	tex-listing-[0-9]*:../../print/tex-listing
DEPENDS+=	tex-listingsutf8-[0-9]*:../../print/tex-listingsutf8
# depend listlbls
# depend listliketab
# depend listofsymbols
DEPENDS+=	tex-lkproof-[0-9]*:../../print/tex-lkproof
# depend lmake
# depend locality
# depend logbox
# depend logical-markup-utils
# depend logpap
DEPENDS+=	tex-longfbox-[0-9]*:../../print/tex-longfbox
# depend longfigure
# depend longnamefilelist
# depend loops
# depend lsc
# depend lstaddons
# depend lstfiracode
# depend lt3graph
# depend ltablex
DEPENDS+=	tex-ltabptch-[0-9]*:../../print/tex-ltabptch
# depend ltxdockit
# depend ltxguidex
# depend ltxkeys
# depend ltxnew
# depend ltxtools
# depend lua-check-hyphen
# depend lua-physical
# depend luatodonotes
# depend macrolist
# depend macroswap
DEPENDS+=	tex-magaz-[0-9]*:../../print/tex-magaz
DEPENDS+=	tex-magicnum-[0-9]*:../../print/tex-magicnum
# depend mailing
# depend mailmerge
# depend makebarcode
# depend makebase
# depend makebox
DEPENDS+=	tex-makecell-[0-9]*:../../print/tex-makecell
# depend makecirc
DEPENDS+=	tex-makecmds-[0-9]*:../../print/tex-makecmds
# depend makecookbook
# depend makedtx
# depend makeglos
# depend makelabels
DEPENDS+=	tex-makerobust-[0-9]*:../../print/tex-makerobust
# depend mandi
DEPENDS+=	tex-manfnt-[0-9]*:../../fonts/tex-manfnt
# depend manuscript
# depend manyind
# depend marginfit
DEPENDS+=	tex-marginfix-[0-9]*:../../print/tex-marginfix
DEPENDS+=	tex-marginnote-[0-9]*:../../print/tex-marginnote
# depend markdown
DEPENDS+=	tex-mathalpha-[0-9]*:../../fonts/tex-mathalpha
# depend mathastext
# depend mathexam
# depend mathfam256
# depend mathfont
# depend maybemath
# depend mcaption
# depend mceinleger
# depend mcexam
# depend mcite
# depend mciteplus
DEPENDS+=	tex-mdframed-[0-9]*:../../print/tex-mdframed
# depend media4svg
DEPENDS+=	tex-media9-[0-9]*:../../print/tex-media9
# depend medstarbeamer
# depend meetingmins
# depend memexsupp
# depend memory
# depend mensa-tex
# depend menu
# depend menucard
# depend menukeys
# depend metalogox
# depend metanorma
# depend metastr
# depend method
# depend metre
DEPENDS+=	tex-mfirstuc-[0-9]*:../../print/tex-mfirstuc
# depend mftinc
# depend mi-solns
DEPENDS+=	tex-midpage-[0-9]*:../../print/tex-midpage
# depend mindflow
# depend minibox
# depend minidocument
DEPENDS+=	tex-minifp-[0-9]*:../../math/tex-minifp
# depend minimalist
# depend minipage-marginpar
DEPENDS+=	tex-minitoc-[0-9]*:../../print/tex-minitoc
# depend minorrevision
DEPENDS+=	tex-minted-[0-9]*:../../print/tex-minted
# depend minutes
# depend mla-paper
DEPENDS+=	tex-mleftright-[0-9]*:../../print/tex-mleftright
# depend mlist
# depend mmap
# depend mnotes
DEPENDS+=	tex-moderncv-[0-9]*:../../print/tex-moderncv
# depend modernposter
# depend moderntimeline
# depend modref
# depend modroman
# depend modular
# depend monofill
# depend moodle
# depend moreenum
DEPENDS+=	tex-morefloats-[0-9]*:../../print/tex-morefloats
# depend morehype
# depend moresize
DEPENDS+=	tex-moreverb-[0-9]*:../../print/tex-moreverb
DEPENDS+=	tex-morewrites-[0-9]*:../../print/tex-morewrites
# depend movie15
DEPENDS+=	tex-mparhack-[0-9]*:../../print/tex-mparhack
# depend mpostinl
# depend msc
# depend msg
# depend mslapa
# depend mtgreek
# depend multenum
# depend multiaudience
# depend multibbl
# depend multicap
# depend multicolrule
# depend multidef
# depend multienv
# depend multiexpand
# depend multilang
DEPENDS+=	tex-multirow-[0-9]*:../../print/tex-multirow
# depend mversion
# depend mwe
# depend mycv
# depend mylatex
# depend mylatexformat
# depend nag
# depend nameauth
# depend namespc
# depend ncclatex
DEPENDS+=	tex-ncctools-[0-9]*:../../print/tex-ncctools
DEPENDS+=	tex-needspace-[0-9]*:../../print/tex-needspace
# depend nestquot
# depend newcommand
# depend newenviron
# depend newfile
DEPENDS+=	tex-newlfm-[0-9]*:../../print/tex-newlfm
# depend newspaper
DEPENDS+=	tex-newunicodechar-[0-9]*:../../print/tex-newunicodechar
# depend newvbtm
# depend newverbs
DEPENDS+=	tex-nextpage-[0-9]*:../../print/tex-nextpage
DEPENDS+=	tex-nfssext-cfr-[0-9]*:../../print/tex-nfssext-cfr
# depend nicefilelist
# depend niceframe
# depend nicetext
# depend nidanfloat
# depend ninecolors
# depend nlctdoc
# depend noconflict
# depend noindentafter
# depend noitcrul
DEPENDS+=	tex-nolbreaks-[0-9]*:../../print/tex-nolbreaks
DEPENDS+=	tex-nomencl-[0-9]*:../../print/tex-nomencl
# depend nomentbl
# depend nonfloat
# depend nonumonpart
DEPENDS+=	tex-nopageno-[0-9]*:../../print/tex-nopageno
# depend normalcolor
# depend notes
# depend notespages
# depend notestex
DEPENDS+=	tex-notoccite-[0-9]*:../../print/tex-notoccite
# depend nowidow
# depend nox
DEPENDS+=	tex-ntheorem-[0-9]*:../../print/tex-ntheorem
# depend numberedblock
# depend numname
DEPENDS+=	tex-numprint-[0-9]*:../../print/tex-numprint
# depend numspell
# depend ocg-p
# depend ocgx
DEPENDS+=	tex-ocgx2-[0-9]*:../../print/tex-ocgx2
# depend ocr-latex
DEPENDS+=	tex-octavo-[0-9]*:../../print/tex-octavo
# depend oldstyle
DEPENDS+=	tex-onlyamsmath-[0-9]*:../../print/tex-onlyamsmath
# depend opcit
# depend optidef
DEPENDS+=	tex-optional-[0-9]*:../../print/tex-optional
DEPENDS+=	tex-options-[0-9]*:../../print/tex-options
# depend orcidlink
# depend orientation
DEPENDS+=	tex-outline-[0-9]*:../../print/tex-outline
# depend outliner
# depend outlines
# depend outlining
# depend overlays
DEPENDS+=	tex-overpic-[0-9]*:../../print/tex-overpic
# depend padcount
# depend pagecolor
# depend pagecont
DEPENDS+=	tex-pagenote-[0-9]*:../../print/tex-pagenote
# depend pagerange
DEPENDS+=	tex-pageslts-[0-9]*:../../print/tex-pageslts
# depend palette
# depend paper
# depend papercdcase
# depend papermas
# depend papertex
# depend paracol
# depend parades
DEPENDS+=	tex-paralist-[0-9]*:../../print/tex-paralist
# depend paresse
# depend parnotes
# depend parsa
# depend parselines
# depend pas-cours
# depend pas-cv
# depend pas-tableur
# depend patch
# depend patchcmd
# depend pauldoc
# depend pawpict
# depend pax
# depend pbalance
DEPENDS+=	tex-pbox-[0-9]*:../../print/tex-pbox
# depend pbsheet
# depend pdf14
DEPENDS+=	tex-pdfcolmk-[0-9]*:../../print/tex-pdfcolmk
DEPENDS+=	tex-pdfcomment-[0-9]*:../../print/tex-pdfcomment
# depend pdfcprot
# depend pdfmarginpar
# depend pdfoverlay
# depend pdfpagediff
# depend pdfpc
# depend pdfpc-movie
# depend pdfprivacy
# depend pdfreview
# depend pdfscreen
# depend pdfslide
# depend pdfsync
# depend pdfwin
# depend pdfx
# depend pecha
# depend perltex
# depend permute
# depend petiteannonce
# depend pgfmath-xfp
# depend phfcc
# depend phfextendedabstract
# depend phffullpagefigure
# depend phfnote
# depend phfparen
# depend phfqit
# depend phfquotetext
# depend phfsvnwatermark
# depend phfthm
# depend philex
# depend phonenumbers
# depend photo
DEPENDS+=	tex-picture-[0-9]*:../../print/tex-picture
# depend piff
# depend pkgloader
DEPENDS+=	tex-placeins-[0-9]*:../../print/tex-placeins
# depend plantslabels
# depend plates
# depend plweb
DEPENDS+=	tex-pmboxdraw-[0-9]*:../../print/tex-pmboxdraw
# depend polynom
# depend polynomial
DEPENDS+=	tex-polytable-[0-9]*:../../print/tex-polytable
# depend postcards
# depend poster-mac
# depend postnotes
DEPENDS+=	tex-powerdot-[0-9]*:../../print/tex-powerdot
# depend ppr-prv
# depend practicalreports
DEPENDS+=	tex-prelim2e-[0-9]*:../../print/tex-prelim2e
DEPENDS+=	tex-preprint-[0-9]*:../../print/tex-preprint
# depend pressrelease
# depend prettyref
# depend prettytok
DEPENDS+=	tex-preview-[0-9]*:../../print/tex-preview
DEPENDS+=	tex-printlen-[0-9]*:../../print/tex-printlen
DEPENDS+=	tex-probsoln-[0-9]*:../../print/tex-probsoln
DEPENDS+=	tex-program-[0-9]*:../../print/tex-program
# depend progress
# depend progressbar
# depend projlib
# depend proofread
# depend properties
DEPENDS+=	tex-prosper-[0-9]*:../../print/tex-prosper
# depend protex
# depend protocol
# depend psfragx
# depend pstool
# depend pstring
# depend pxgreeks
# depend pygmentex
# depend python
# depend qcm
# depend qstest
# depend qsymbols
# depend quicktype
# depend quiz2socrative
# depend quotchap
DEPENDS+=	tex-quoting-[0-9]*:../../print/tex-quoting
# depend quotmark
# depend ran_toks
# depend randtext
# depend rccol
# depend rcs-multi
DEPENDS+=	tex-rcsinfo-[0-9]*:../../print/tex-rcsinfo
# depend readablecv
DEPENDS+=	tex-readarray-[0-9]*:../../print/tex-readarray
DEPENDS+=	tex-realboxes-[0-9]*:../../print/tex-realboxes
# depend recipe
# depend recipebook
# depend recipecard
# depend rectopma
# depend refcheck
# depend refenums
# depend reflectgraphics
# depend refman
# depend refstyle
# depend regcount
DEPENDS+=	tex-regexpatch-[0-9]*:../../print/tex-regexpatch
# depend register
# depend regstats
# depend relenc
DEPENDS+=	tex-relsize-[0-9]*:../../print/tex-relsize
# depend repeatindex
# depend repltext
# depend returntogrid
# depend rgltxdoc
# depend rjlparshap
# depend rlepsf
# depend rmpage
# depend robustcommand
# depend robustindex
# depend romanbar
# depend romanbarpagenumber
DEPENDS+=	tex-romanneg-[0-9]*:../../print/tex-romanneg
# depend romannum
DEPENDS+=	tex-rotfloat-[0-9]*:../../print/tex-rotfloat
# depend rotpages
# depend roundbox
# depend rterface
# depend rtkinenc
# depend rulerbox
# depend rulercompass
# depend runcode
# depend rvwrite
# depend sanitize-umlaut
DEPENDS+=	tex-sauerj-[0-9]*:../../print/tex-sauerj
# depend savefnmark
DEPENDS+=	tex-savesym-[0-9]*:../../print/tex-savesym
# depend savetrees
DEPENDS+=	tex-scale-[0-9]*:../../print/tex-scale
# depend scalebar
DEPENDS+=	tex-scalerel-[0-9]*:../../print/tex-scalerel
# depend scanpages
# depend schedule
# depend schooldocs
# depend scontents
# depend scrambledenvs
# depend scrlayer-fancyhdr
# depend scrlttr2copy
# depend sdaps
# depend sdrt
DEPENDS+=	tex-secdot-[0-9]*:../../print/tex-secdot
# depend secnum
# depend sectionbox
# depend sectionbreak
DEPENDS+=	tex-sectsty-[0-9]*:../../print/tex-sectsty
# depend seealso
DEPENDS+=	tex-selectp-[0-9]*:../../print/tex-selectp
DEPENDS+=	tex-selinput-[0-9]*:../../print/tex-selinput
# semantex
DEPENDS+=	tex-semantic-[0-9]*:../../print/tex-semantic
# depend semantic-markup
# depend semesterplanner
# depend semioneside
# depend semproc
# depend semtex
# depend sepfootnotes
# depend seqsplit
# depend sesstime
# depend sf298
# depend sffms
DEPENDS+=	tex-sfmath-[0-9]*:../../print/tex-sfmath
DEPENDS+=	tex-shadethm-[0-9]*:../../print/tex-shadethm
DEPENDS+=	tex-shadow-[0-9]*:../../print/tex-shadow
DEPENDS+=	tex-shadowtext-[0-9]*:../../print/tex-shadowtext
DEPENDS+=	tex-shapepar-[0-9]*:../../print/tex-shapepar
# depend shdoc
# depend shipunov
# depend shorttoc
# depend show2e
# depend showcharinbox
DEPENDS+=	tex-showdim-[0-9]*:../../print/tex-showdim
# depend showexpl
# depend showhyphens
DEPENDS+=	tex-showlabels-[0-9]*:../../print/tex-showlabels
DEPENDS+=	tex-sidecap-[0-9]*:../../print/tex-sidecap
DEPENDS+=	tex-sidenotes-[0-9]*:../../print/tex-sidenotes
# depend sidenotesplus
DEPENDS+=	tex-silence-[0-9]*:../../print/tex-silence
# depend sillypage
# depend simplecd
# depend simplecv
# depend simpleinvoice
# depend simplivre
# depend sitem
# depend skb
# depend skdoc
# depend skeldoc
# depend skeycommand
# depend skeyval
# depend skills
# depend skrapport
# depend slantsc
# depend smalltableof
# depend smart-eqn
# depend smartref
# depend smartunits
DEPENDS+=	tex-snapshot-[0-9]*:../../print/tex-snapshot
# depend snaptodo
# depend snotez
DEPENDS+=	tex-soulpos-[0-9]*:../../print/tex-soulpos
DEPENDS+=	tex-soulutf8-[0-9]*:../../print/tex-soulutf8
# depend spacingtricks
# depend spark-otf
# depend sparklines
DEPENDS+=	tex-sphack-[0-9]*:../../print/tex-sphack
# depend splitindex
# depend spot
# depend spotcolor
# depend spreadtab
# depend spverbatim
# depend srbook-mem
DEPENDS+=	tex-srcltx-[0-9]*:../../print/tex-srcltx
# depend sseq
# depend sslides
# depend stack
DEPENDS+=	tex-stackengine-[0-9]*:../../print/tex-stackengine
DEPENDS+=	tex-standalone-[0-9]*:../../print/tex-standalone
DEPENDS+=	tex-stdclsdv-[0-9]*:../../print/tex-stdclsdv
# depend stdpage
# depend stealcaps
# depend stex
# depend storebox
# depend storecmd
DEPENDS+=	tex-stringstrings-[0-9]*:../../print/tex-stringstrings
DEPENDS+=	tex-sttools-[0-9]*:../../print/tex-sttools
# depend stubs
# depend studenthandouts
# depend styledcmd
# depend subdepth
DEPENDS+=	tex-subdocs-[0-9]*:../../print/tex-subdocs
# depend subeqn
# depend subeqnarray
DEPENDS+=	tex-subfigmat-[0-9]*:../../print/tex-subfigmat
DEPENDS+=	tex-subfigure-[0-9]*:../../print/tex-subfigure
DEPENDS+=	tex-subfiles-[0-9]*:../../print/tex-subfiles
# depend subfloat
# depend substitutefont
DEPENDS+=	tex-substr-[0-9]*:../../print/tex-substr
DEPENDS+=	tex-supertabular-[0-9]*:../../print/tex-supertabular
# depend suppose
# depend svg
# depend svgcolor
# depend svn
# depend svn-multi
DEPENDS+=	tex-svn-prov-[0-9]*:../../print/tex-svn-prov
DEPENDS+=	tex-svninfo-[0-9]*:../../print/tex-svninfo
# depend swfigure
# depend syntax
# depend syntrace
# depend synttree
# depend tabbing
# depend tabfigures
# depend tableaux
# depend tablefootnote
# depend tableof
# depend tablestyles
# depend tablists
DEPENDS+=	tex-tabls-[0-9]*:../../print/tex-tabls
# depend tablvar
# depend tabstackengine
# depend tabto-ltx
DEPENDS+=	tex-tabu-[0-9]*:../../print/tex-tabu
# depend tabularborder
# depend tabularcalc
# depend tabularew
# depend tabularray
DEPENDS+=	tex-tabulary-[0-9]*:../../print/tex-tabulary
# depend tagging
# depend tagpair
# depend tagpdf
# depend talk
# depend tamefloats
# depend tasks
# depend tcldoc
DEPENDS+=	tex-tcolorbox-[0-9]*:../../print/tex-tcolorbox
# depend tdclock
# depend technics
# depend ted
# depend templatetools
DEPENDS+=	tex-termcal-[0-9]*:../../print/tex-termcal
# depend termlist
# depend termsim
DEPENDS+=	tex-testhyphens-[0-9]*:../../print/tex-testhyphens
# depend testidx
# depend tex-label
# depend tex-locale
# depend texlogos
DEPENDS+=	tex-texmate-[0-9]*:../../print/tex-texmate
# depend texments
DEPENDS+=	tex-texpower-[0-9]*:../../print/tex-texpower
# depend texshade
# depend texsurgery
DEPENDS+=	tex-textfit-[0-9]*:../../print/tex-textfit
DEPENDS+=	tex-textmerg-[0-9]*:../../print/tex-textmerg
DEPENDS+=	tex-textpos-[0-9]*:../../print/tex-textpos
# depend textualicomma
# depend texvc
# depend theoremref
# depend thinsp
DEPENDS+=	tex-thmtools-[0-9]*:../../print/tex-thmtools
# depend threadcol
DEPENDS+=	tex-threeparttable-[0-9]*:../../print/tex-threeparttable
DEPENDS+=	tex-threeparttablex-[0-9]*:../../print/tex-threeparttablex
# depend thumb
# depend thumbs
# depend thumby
# depend ticket
# depend tipauni
# depend titlecaps
# depend titlefoot
# depend titlepic
DEPENDS+=	tex-titleref-[0-9]*:../../print/tex-titleref
DEPENDS+=	tex-titlesec-[0-9]*:../../print/tex-titlesec
DEPENDS+=	tex-titling-[0-9]*:../../print/tex-titling
# depend to-be-determined
DEPENDS+=	tex-tocbibind-[0-9]*:../../print/tex-tocbibind
# depend tocdata
DEPENDS+=	tex-tocloft-[0-9]*:../../print/tex-tocloft
# depend tocvsec2
DEPENDS+=	tex-todo-[0-9]*:../../print/tex-todo
DEPENDS+=	tex-todonotes-[0-9]*:../../print/tex-todonotes
# depend tokcycle
# depend tokenizer
# depend toolbox
# depend topfloat
# depend topiclongtable
# depend totalcount
# depend totcount
DEPENDS+=	tex-totpages-[0-9]*:../../print/tex-totpages
DEPENDS+=	tex-translations-[0-9]*:../../print/tex-translations
DEPENDS+=	tex-transparent-[0-9]*:../../print/tex-transparent
# depend trfsigns
DEPENDS+=	tex-trimspaces-[0-9]*:../../print/tex-trimspaces
# depend trivfloat
# depend trsym
DEPENDS+=	tex-truncate-[0-9]*:../../print/tex-truncate
# depend tucv
# depend turnthepage
DEPENDS+=	tex-twoinone-[0-9]*:../../print/tex-twoinone
# depend twoup
# depend txgreeks
DEPENDS+=	tex-type1cm-[0-9]*:../../print/tex-type1cm
# depend typed-checklist
# depend typeface
# depend typoaid
# depend typogrid
# depend uassign
DEPENDS+=	tex-ucs-[0-9]*:../../print/tex-ucs
# depend uebungsblatt
# depend umoline
# depend underlin
# depend underoverlap
DEPENDS+=	tex-undolabl-[0-9]*:../../print/tex-undolabl
# depend uni-titlepage
# depend unicodefonttable
# depend unisc
# depend unitconv
DEPENDS+=	tex-units-[0-9]*:../../print/tex-units
# depend unravel
# depend upmethodology
DEPENDS+=	tex-upquote-[0-9]*:../../print/tex-upquote
# depend uri
# depend ushort
# depend uspace
# depend utf8add
# depend uwmslide
# depend variablelm
# depend varindex
# depend vcell
# depend varsfromjobname
DEPENDS+=	tex-varwidth-[0-9]*:../../print/tex-varwidth
# depend vdmlisting
DEPENDS+=	tex-verbasef-[0-9]*:../../print/tex-verbasef
DEPENDS+=	tex-verbatimbox-[0-9]*:../../print/tex-verbatimbox
# depend verbatimcopy
DEPENDS+=	tex-verbdef-[0-9]*:../../print/tex-verbdef
# depend verbments
# depend verifiche
DEPENDS+=	tex-version-[0-9]*:../../print/tex-version
# depend versions
# depend versonotes
DEPENDS+=	tex-vertbars-[0-9]*:../../print/tex-vertbars
# depend vgrid
DEPENDS+=	tex-vhistory-[0-9]*:../../print/tex-vhistory
DEPENDS+=	tex-vmargin-[0-9]*:../../print/tex-vmargin
# depend volumes
# depend vpe
DEPENDS+=	tex-vruler-[0-9]*:../../print/tex-vruler
# depend vtable
# depend vwcol
# depend wallcalendar
DEPENDS+=	tex-wallpaper-[0-9]*:../../print/tex-wallpaper
# depend warning
# depend warpcol
DEPENDS+=	tex-was-[0-9]*:../../print/tex-was
# depend webquiz
# depend widetable
# depend widows-and-orphans
# depend williams
# depend willowtreebook
# depend withargs
# depend wordcount
# depend wordlike
# depend worksheet
DEPENDS+=	tex-wrapfig-[0-9]*:../../print/tex-wrapfig
# depend wrapfig2
# depend wtref
DEPENDS+=	tex-xargs-[0-9]*:../../print/tex-xargs
# depend xassoccnt
# depend xbmks
# depend xcntperchap
# depend xcolor-material
# depend xcolor-solarized
DEPENDS+=	tex-xcomment-[0-9]*:../../print/tex-xcomment
# depend xcookybooky
# depend xcpdftips
# depend xdoc
# depend xellipsis
# depend xfakebold
DEPENDS+=	tex-xfor-[0-9]*:../../print/tex-xfor
# depend xhfill
DEPENDS+=	tex-xifthen-[0-9]*:../../devel/tex-xifthen
# depend xint
# depend xkcdcolors
# depend xltabular
# depend xmpincl
# depend xnewcommand
# depend xoptarg
DEPENDS+=	tex-xpatch-[0-9]*:../../print/tex-xpatch
# depend xpeek
# depend xprintlen
# depend xpunctuate
# depend xsavebox
# depend xsim
DEPENDS+=	tex-xstring-[0-9]*:../../print/tex-xstring
DEPENDS+=	tex-xtab-[0-9]*:../../print/tex-xtab
# depend xurl
# depend xwatermark
# depend xytree
# depend yafoot
# depend yagusylo
# depend yaletter
# depend ycbook
DEPENDS+=	tex-ydoc-[0-9]*:../../print/tex-ydoc
# depend yplan
# depend zebra-goodies
# depend zed-csp
# depend ziffer
DEPENDS+=	tex-zref-[0-9]*:../../print/tex-zref
# depend zref-check
# depend zref-clever
# depend zref-vario
# depend zwgetfdate
# depend zwpagelayout

META_PACKAGE=	yes

.include "../../mk/bsd.pkg.mk"