summaryrefslogtreecommitdiff
path: root/meta-pkgs/texlive-collection-latexextra/Makefile
blob: 480f281e854c3dc8ed6f2d19d33d9fee9dd38c3b (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
# $NetBSD: Makefile,v 1.23 2017/01/20 22:13:28 markd Exp $

DISTNAME=	collection-latexextra
PKGNAME=	texlive-${DISTNAME}-2016pre5
CATEGORIES=	meta-pkgs
MASTER_SITES=	# empty
TEXLIVE_REV=	41662

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	http://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
# depend ESIEEcv
# depend GS1
# depend HA-prosper
# depend Tabbing
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 achemso
# depend acro
DEPENDS+=	tex-acronym-[0-9]*:../../print/tex-acronym
# depend acroterm
# depend actuarialangle
# 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
# depend alterqcm
# depend altfont
# 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
# depend anyfontsize
DEPENDS+=	tex-appendix-[0-9]*:../../print/tex-appendix
# depend appendixnumberbeamer
# depend apptools
# depend arcs
# depend arrayjobx
# depend arraysort
# depend arydshln
# depend asciilist
# depend assignment
# depend assoccnt
# depend attachfile
# depend authoraftertitle
# depend authorindex
# depend autonum
# depend autopdf
# depend avremu
DEPENDS+=	tex-background-[0-9]*:../../print/tex-background
# depend bankstatement
# depend bashful
# depend basicarith
# depend bchart
# depend beamer2thesis
# depend beameraudience
# depend beamercolorthemeowl
# depend beamerdarkthemes
# depend beamerposter
# depend beamersubframe
# depend beamertheme-detlevcm
# depend beamertheme-epyt
# depend beamertheme-metropolis
# depend beamertheme-phnompenh
# depend beamertheme-upenn-bc
# depend beamerthemejltree
# depend beamerthemenirma
DEPENDS+=	tex-beton-[0-9]*:../../print/tex-beton
# depend bewerbung
# depend bez123
DEPENDS+=	tex-bezos-[0-9]*:../../print/tex-bezos
# depend bhcexam
# depend bibletext
# depend bigfoot
# depend bigints
# 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 bnumexpr
# depend boites
DEPENDS+=	tex-bold-extra-[0-9]*:../../print/tex-bold-extra
# depend bookcover
# depend bookest
# depend booklet
# depend boolexpr
# depend bophook
DEPENDS+=	tex-boxedminipage-[0-9]*:../../print/tex-boxedminipage
# depend boxedminipage2e
# depend boxhandler
# depend bracketkey
DEPENDS+=	tex-braket-[0-9]*:../../print/tex-braket
# depend breakurl
# depend bullcntr
DEPENDS+=	tex-bussproofs-[0-9]*:../../print/tex-bussproofs
# depend bxdpx-beamer
# depend bxdvidriver
# depend bxenclose
# depend bxnewfont
# depend bxpapersize
# depend bxpdfver
# 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
# depend catchfilebetweentags
# depend catechis
# depend catoptions
# depend cbcoptic
DEPENDS+=	tex-ccaption-[0-9]*:../../print/tex-ccaption
# depend cclicenses
# depend cd
# depend cd-cover
# depend cdpbundl
DEPENDS+=	tex-cellspace-[0-9]*:../../print/tex-cellspace
# depend censor
DEPENDS+=	tex-changebar-[0-9]*:../../print/tex-changebar
# depend changelayout
DEPENDS+=	tex-changepage-[0-9]*:../../print/tex-changepage
# depend changes
DEPENDS+=	tex-chappg-[0-9]*:../../print/tex-chappg
# depend chapterfolder
# depend chet
# depend chextras
# depend chkfloat
# depend chletter
DEPENDS+=	tex-chngcntr-[0-9]*:../../print/tex-chngcntr
# depend chronology
# depend circ
# depend classics
# depend clefval
DEPENDS+=	tex-cleveref-[0-9]*:../../print/tex-cleveref
# depend clipboard
# depend clock
# depend cmdstring
# depend cmdtrack
DEPENDS+=	tex-cmsd-[0-9]*:../../fonts/tex-cmsd
# depend cnltx
# depend cntformats
# depend cntperchap
# depend codedoc
# depend codepage
# depend codesection
# depend collcell
DEPENDS+=	tex-collectbox-[0-9]*:../../print/tex-collectbox
# depend colordoc
# depend colorinfo
# depend coloring
# depend colorspace
# depend colortab
# depend colorwav
# depend colorweb
# depend colourchange
# depend combelow
# depend combine
# depend comma
# depend commado
DEPENDS+=	tex-comment-[0-9]*:../../print/tex-comment
# depend concepts
DEPENDS+=	tex-concprog-[0-9]*:../../print/tex-concprog
# depend constants
# depend continue
# depend contour
# depend contracard
DEPENDS+=	tex-cooking-[0-9]*:../../print/tex-cooking
# depend cool
# depend coollist
# depend coolstr
# depend coolthms
# depend cooltooltips
# depend coordsys
# depend copyedit
# depend copyrightbox
# depend coseoul
# depend counttexruns
# depend courseoutline
# depend coursepaper
# depend coverpage
# depend cprotect
# depend crbox
# depend crossreference
DEPENDS+=	tex-csquotes-[0-9]*:../../print/tex-csquotes
# depend csvsimple
DEPENDS+=	tex-cuisine-[0-9]*:../../print/tex-cuisine
# depend currfile
DEPENDS+=	tex-currvita-[0-9]*:../../print/tex-currvita
# depend cutwin
# depend cv
# depend cv4tw
# depend cweb-latex
# depend cyber
# depend cybercic
DEPENDS+=	tex-dashbox-[0-9]*:../../print/tex-dashbox
# depend dashrule
# depend dashundergaps
# depend dataref
DEPENDS+=	tex-datatool-[0-9]*:../../print/tex-datatool
# depend dateiliste
# depend datenumber
DEPENDS+=	tex-datetime-[0-9]*:../../print/tex-datetime
# depend datetime2
# depend datetime2-bahasai
# depend datetime2-basque
# depend datetime2-breton
# depend datetime2-bulgarian
# depend datetime2-catalan
# depend datetime2-croatian
# depend datetime2-czech
# depend datetime2-danish
# depend datetime2-dutch
# depend datetime2-en-fulltext
# depend datetime2-english
# depend datetime2-esperanto
# depend datetime2-estonian
# depend datetime2-finnish
# depend datetime2-french
# depend datetime2-galician
# depend datetime2-german
# depend datetime2-greek
# depend datetime2-hebrew
# depend datetime2-icelandic
# depend datetime2-irish
# depend datetime2-italian
# depend datetime2-it-fulltext
# depend datetime2-latin
# depend datetime2-lsorbian
# depend datetime2-magyar
# depend datetime2-norsk
# depend datetime2-polish
# depend datetime2-portuges
# depend datetime2-romanian
# depend datetime2-russian
# depend datetime2-samin
# depend datetime2-scottish
# depend datetime2-serbian
# depend datetime2-slovak
# depend datetime2-slovene
# depend datetime2-spanish
# depend datetime2-swedish
# depend datetime2-turkish
# depend datetime2-ukrainian
# depend datetime2-usorbian
# depend datetime2-welsh
DEPENDS+=	tex-dblfloatfix-[0-9]*:../../print/tex-dblfloatfix
# depend decimal
# depend decorule
# depend delimtxt
# depend denisbdoc
DEPENDS+=	tex-diagbox-[0-9]*:../../print/tex-diagbox
# depend diagnose
# depend dialogl
# depend dichokey
DEPENDS+=	tex-dinbrief-[0-9]*:../../print/tex-dinbrief
# depend directory
# depend dirtytalk
# depend dlfltxb
# depend dnaseq
# depend doclicense
# depend docmfp
# depend docmute
# depend doctools
# depend documentation
# depend doi
# depend dotarrow
# depend dotseqn
# depend download
# depend dox
# depend dpfloat
# depend dprogress
# depend drac
DEPENDS+=	tex-draftcopy-[0-9]*:../../print/tex-draftcopy
DEPENDS+=	tex-draftwatermark-[0-9]*:../../print/tex-draftwatermark
# depend dtk
# depend dtxgallery
# depend dvdcoll
# depend dynamicnumber
# depend dynblocks
# depend ean13isbn
# depend easy
DEPENDS+=	tex-easy-todo-[0-9]*:../../print/tex-easy-todo
# depend easyfig
# depend easylist
# depend easyreview
# depend ebezier
# depend ecclesiastic
# depend ecv
# depend ed
# depend edmargin
# depend eemeir
# depend efbox
# depend egplot
# depend elements
# depend ellipsis
# depend elmath
# depend elocalloc
# depend elpres
# depend elzcards
# depend emarks
# depend embedall
# 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 engpron
# depend engrec
# depend 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
# depend epigraph
# depend epiolmec
# depend eqell
# depend eqlist
# depend eqname
# depend eqparbox
# depend errata
# depend esami
# depend esdiff
DEPENDS+=	tex-esint-[0-9]*:../../fonts/tex-esint
# depend esint-type1
# depend etaremune
# depend etextools
# depend etoc
DEPENDS+=	tex-etoolbox-[0-9]*:../../devel/tex-etoolbox
# depend eukdate
DEPENDS+=	tex-europasscv-[0-9]*:../../print/tex-europasscv
DEPENDS+=	tex-europecv-[0-9]*:../../print/tex-europecv
# depend everyhook
DEPENDS+=	tex-everypage-[0-9]*:../../print/tex-everypage
DEPENDS+=	tex-exam-[0-9]*:../../print/tex-exam
# depend exam-n
# depend examdesign
# depend example
# depend examplep
# depend exceltex
DEPENDS+=	tex-excludeonly-[0-9]*:../../print/tex-excludeonly
# depend exercise
# depend exercises
# depend exp-testopt
# depend expdlist
# depend export
# depend exsheets
# depend exsol
# depend extract
# depend facsimile
# depend factura
# depend fancylabel
# depend fancynum
# depend fancypar
# depend fancyslides
# depend fancytabs
# depend fancytooltips
# depend fcolumn
# depend ffslides
# depend fibeamer
# depend fifo-stack
# depend figsize
DEPENDS+=	tex-filecontents-[0-9]*:../../print/tex-filecontents
# depend filedate
# depend filehook
# 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
# depend 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
DEPENDS+=	tex-fontaxes-[0-9]*:../../print/tex-fontaxes
# depend fonttable
DEPENDS+=	tex-footmisc-[0-9]*:../../print/tex-footmisc
# depend footnotebackref
# depend footnotehyper
# 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 formular
# depend fragments
# depend frame
DEPENDS+=	tex-framed-[0-9]*:../../print/tex-framed
# depend frankenstein
# depend frege
DEPENDS+=	tex-ftcap-[0-9]*:../../print/tex-ftcap
# depend ftnxtra
# depend fullblck
# depend fullminipage
# depend fullwidth
# depend fundus-calligra
# depend fundus-cyr
# depend fundus-sueterlin
# depend fvextra
DEPENDS+=	tex-fwlw-[0-9]*:../../print/tex-fwlw
DEPENDS+=	tex-g-brief-[0-9]*:../../print/tex-g-brief
# depend gauss
# depend gcard
# depend gcite
# depend gender
# depend genmpage
# depend getfiledate
# depend getitems
# depend ginpenc
# depend gitfile-info
# depend gitinfo
# depend gitinfo2
# depend gitlog
# depend gloss
DEPENDS+=	tex-glossaries-[0-9]*:../../print/tex-glossaries
# depend glossaries-danish
# depend glossaries-dutch
# depend glossaries-english
# depend glossaries-extra
# depend glossaries-french
# depend glossaries-german
# depend glossaries-irish
# depend glossaries-italian
# depend glossaries-magyar
# depend glossaries-polish
# depend glossaries-portuges
# depend glossaries-serbian
# depend glossaries-spanish
# depend gmdoc
# depend gmdoc-enhance
# depend gmiflink
# depend gmutils
# depend gmverb
# depend graphbox
# depend graphicx-psmin
# depend graphicxbox
# depend grfpaste
# depend grid
# depend grid-system
# depend gridset
# depend guitlogo
# depend handout
# depend hang
# depend hanging
# depend hardwrap
# depend harnon-cv
# depend harpoon
# depend hc
# depend he-she
# depend hhtensor
# depend histogr
# depend hitec
# depend hletter
# depend hpsdiss
# depend hrefhide
# depend hvindex
# depend hypdvips
DEPENDS+=	tex-hyper-[0-9]*:../../print/tex-hyper
DEPENDS+=	tex-hypernat-[0-9]*:../../print/tex-hypernat
# depend hyperref-docsrc
# depend hyperxmp
DEPENDS+=	tex-hyphenat-[0-9]*:../../print/tex-hyphenat
# depend idxcmds
# depend idxlayout
# 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
DEPENDS+=	tex-ifplatform-[0-9]*:../../print/tex-ifplatform
# depend ifthenx
# depend iitem
# depend image-gallery
# depend imakeidx
DEPENDS+=	tex-import-[0-9]*:../../print/tex-import
DEPENDS+=	tex-incgraph-[0-9]*:../../graphics/tex-incgraph
# depend indextools
# depend inlinedef
# depend inputtrc
# depend interactiveworkbook
# depend interfaces
# depend inversepath
# depend invoice
# depend iso
# depend iso10303
# depend isodate
# depend isodoc
# depend isonums
# depend isorot
# depend isotope
# depend issuulinks
# depend iwhdp
# depend jlabels
# depend jslectureplanner
# depend jumplines
# depend jvlisting
# depend kantlipsum
# depend kerntest
# depend keycommand
# depend keyreader
# depend keystroke
# depend keyval2e
# depend keyvaltable
DEPENDS+=	tex-kix-[0-9]*:../../print/tex-kix
# depend koma-moderncvclassic
# depend koma-script-sfs
# depend komacv
# depend ktv-texdata
# depend l3build
# depend labbook
DEPENDS+=	tex-labels-[0-9]*:../../print/tex-labels
# depend lastpackage
DEPENDS+=	tex-lastpage-[0-9]*:../../print/tex-lastpage
# depend latex-tds
# depend latexdemo
DEPENDS+=	tex-layouts-[0-9]*:../../print/tex-layouts
DEPENDS+=	tex-lazylist-[0-9]*:../../print/tex-lazylist
# depend lcd
# depend lcg
# depend leading
DEPENDS+=	tex-leaflet-[0-9]*:../../print/tex-leaflet
DEPENDS+=	tex-leftidx-[0-9]*:../../print/tex-leftidx
# 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
# depend listlbls
# depend listliketab
# depend listofsymbols
DEPENDS+=	tex-lkproof-[0-9]*:../../print/tex-lkproof
# depend lmake
# depend locality
DEPENDS+=	tex-localloc-[0-9]*:../../print/tex-localloc
# 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 lt3graph
# depend ltablex
DEPENDS+=	tex-ltabptch-[0-9]*:../../print/tex-ltabptch
# depend ltxdockit
# depend ltxindex
# depend ltxkeys
# depend ltxnew
# depend ltxtools
# depend macroswap
DEPENDS+=	tex-magaz-[0-9]*:../../print/tex-magaz
# depend mailing
# depend mailmerge
# depend makebarcode
# depend makebase
# depend makebox
# depend makecell
# depend makecirc
DEPENDS+=	tex-makecmds-[0-9]*:../../print/tex-makecmds
# depend makedtx
# depend makeglos
# depend mandi
DEPENDS+=	tex-manfnt-[0-9]*:../../fonts/tex-manfnt
# depend manuscript
# depend marginfix
DEPENDS+=	tex-marginnote-[0-9]*:../../print/tex-marginnote
# depend markdown
# depend mathalfa
# depend mathastext
# depend mathexam
# depend maybemath
# depend mbenotes
# depend mcaption
# depend mceinleger
# depend mcite
# depend mciteplus
DEPENDS+=	tex-mdframed-[0-9]*:../../print/tex-mdframed
DEPENDS+=	tex-media9-[0-9]*:../../print/tex-media9
# depend medstarbeamer
# depend meetingmins
# depend memexsupp
# depend memory
# depend menu
# depend menukeys
# depend method
# depend metre
# depend mfirstuc
# depend mftinc
DEPENDS+=	tex-midpage-[0-9]*:../../print/tex-midpage
# depend minibox
# depend minifp
# 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
# depend mlist
# depend mmap
# depend mnotes
DEPENDS+=	tex-moderncv-[0-9]*:../../print/tex-moderncv
# depend moderntimeline
# depend modref
# depend modroman
# depend monofill
# depend moodle
# depend moreenum
# depend morefloats
# depend morehype
# depend moresize
DEPENDS+=	tex-moreverb-[0-9]*:../../print/tex-moreverb
# depend morewrites
# depend movie15
DEPENDS+=	tex-mparhack-[0-9]*:../../print/tex-mparhack
# depend msc
# depend msg
# depend mslapa
# depend mtgreek
# depend multenum
# depend multiaudience
# depend multibbl
# depend multicap
# depend multidef
# depend multienv
# depend multiexpand
DEPENDS+=	tex-multirow-[0-9]*:../../print/tex-multirow
# depend mversion
# depend mwe
# depend mycv
# 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
# depend newunicodechar
# depend newvbtm
# depend newverbs
DEPENDS+=	tex-nextpage-[0-9]*:../../print/tex-nextpage
# depend nfssext-cfr
# depend nicefilelist
# depend niceframe
# depend nicetext
# 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
DEPENDS+=	tex-notoccite-[0-9]*:../../print/tex-notoccite
# depend nowidow
# depend nox
DEPENDS+=	tex-ntheorem-[0-9]*:../../print/tex-ntheorem
# depend numberedblock
# depend numname
# depend numprint
# depend ocg-p
# depend ocgx
# depend 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 outline
# depend outliner
# depend outlines
DEPENDS+=	tex-overpic-[0-9]*:../../print/tex-overpic
# depend pagecolor
# depend pagecont
# depend pagenote
# depend pagerange
DEPENDS+=	tex-pageslts-[0-9]*:../../print/tex-pageslts
# 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 parselines
# depend pas-cours
# depend pas-cv
# depend pas-tableur
# depend patch
# depend patchcmd
# depend pauldoc
# depend pawpict
# depend pax
DEPENDS+=	tex-pbox-[0-9]*:../../print/tex-pbox
# depend pbsheet
# depend pdf14
DEPENDS+=	tex-pdfcomment-[0-9]*:../../print/tex-pdfcomment
# depend pdfcprot
# depend pdfmarginpar
# depend pdfpagediff
# depend pdfscreen
# depend pdfslide
# depend pdfsync
# depend pdfwin
# depend pdfx
# depend pecha
# depend perltex
# depend permute
# depend petiteannonce
# depend philex
# depend photo
# depend piff
# depend pkgloader
DEPENDS+=	tex-placeins-[0-9]*:../../print/tex-placeins
# depend plantslabels
# depend plates
# depend plweb
# depend polynom
# depend polynomial
DEPENDS+=	tex-polytable-[0-9]*:../../print/tex-polytable
# depend postcards
# depend poster-mac
# depend ppr-prv
DEPENDS+=	tex-preprint-[0-9]*:../../print/tex-preprint
# depend pressrelease
# depend prettyref
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 proofread
# depend properties
DEPENDS+=	tex-prosper-[0-9]*:../../print/tex-prosper
# depend protex
# depend protocol
# depend psfragx
DEPENDS+=	tex-pst-pdf-[0-9]*:../../graphics/tex-pst-pdf
# depend pstool
# depend pxgreeks
# depend python
# depend qcm
# depend qstest
# depend qsymbols
# depend quotchap
# depend quoting
# depend quotmark
# depend ran_toks
# depend randtext
# depend rccol
# depend rcs-multi
DEPENDS+=	tex-rcsinfo-[0-9]*:../../print/tex-rcsinfo
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
# depend regexpatch
# depend register
# depend regstats
# depend relenc
DEPENDS+=	tex-relsize-[0-9]*:../../print/tex-relsize
# depend repeatindex
# depend repltext
# 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 rulercompass
# depend rvwrite
# depend sanitize-umlaut
DEPENDS+=	tex-sauerj-[0-9]*:../../print/tex-sauerj
# depend savefnmark
# depend savesym
# depend savetrees
DEPENDS+=	tex-scale-[0-9]*:../../print/tex-scale
# depend scalebar
# depend scalerel
# depend scanpages
# depend scrlttr2copy
# depend sdrt
DEPENDS+=	tex-secdot-[0-9]*:../../print/tex-secdot
# depend sectionbox
DEPENDS+=	tex-sectsty-[0-9]*:../../print/tex-sectsty
# depend seealso
DEPENDS+=	tex-selectp-[0-9]*:../../print/tex-selectp
# depend semantic
# depend semioneside
# depend semproc
# depend sepfootnotes
# depend seqsplit
# 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
DEPENDS+=	tex-showlabels-[0-9]*:../../print/tex-showlabels
DEPENDS+=	tex-sidecap-[0-9]*:../../print/tex-sidecap
# depend sidenotes
# depend silence
# depend simplecd
# depend simplecv
# depend sitem
# depend skb
# depend skdoc
# depend skeycommand
# depend skeyval
# depend skrapport
# depend slantsc
# depend smalltableof
# depend smartunits
# depend smartref
DEPENDS+=	tex-snapshot-[0-9]*:../../print/tex-snapshot
# depend snotez
DEPENDS+=	tex-soul-[0-9]*:../../print/tex-soul
# 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
# depend stackengine
DEPENDS+=	tex-standalone-[0-9]*:../../print/tex-standalone
# depend statistik
DEPENDS+=	tex-stdclsdv-[0-9]*:../../print/tex-stdclsdv
# depend stdpage
# 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 subdepth
# 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 svg
# depend svgcolor
# depend svn
# depend svn-multi
# depend svn-prov
DEPENDS+=	tex-svninfo-[0-9]*:../../print/tex-svninfo
# depend syntax
# depend syntrace
# depend synttree
# depend tabfigures
# depend tableaux
# depend tablefootnote
# depend tableof
# depend tablestyles
# depend tablists
DEPENDS+=	tex-tabls-[0-9]*:../../print/tex-tabls
# depend tabstackengine
# depend tabto-ltx
DEPENDS+=	tex-tabu-[0-9]*:../../print/tex-tabu
# depend tabularborder
# depend tabularcalc
# depend tabularew
# depend tabulary
# depend tagging
# depend tagpair
# depend talk
# depend tamefloats
# depend tasks
# depend tcldoc
DEPENDS+=	tex-tcolorbox-[0-9]*:../../print/tex-tcolorbox
# depend tdclock
# depend technics
# depend ted
# depend templatetools
# depend termcal
# depend termlist
# depend testhyphens
# depend tex-label
# depend texlogos
DEPENDS+=	tex-texmate-[0-9]*:../../print/tex-texmate
# depend texments
DEPENDS+=	tex-texpower-[0-9]*:../../print/tex-texpower
# depend texshade
# depend texvc
DEPENDS+=	tex-textfit-[0-9]*:../../print/tex-textfit
# depend textgreek
DEPENDS+=	tex-textmerg-[0-9]*:../../print/tex-textmerg
DEPENDS+=	tex-textpos-[0-9]*:../../print/tex-textpos
# depend theoremref
# depend thinsp
# depend thmtools
# depend threadcol
DEPENDS+=	tex-threeparttable-[0-9]*:../../print/tex-threeparttable
# depend threeparttablex
# depend thumb
# depend thumbs
# depend thumby
# depend ticket
# 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
DEPENDS+=	tex-tocbibind-[0-9]*:../../print/tex-tocbibind
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 tokenizer
# depend toolbox
# depend topfloat
# depend totcount
DEPENDS+=	tex-totpages-[0-9]*:../../print/tex-totpages
# depend translations
# 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 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
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 uwmslide
# depend varindex
# 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
DEPENDS+=	tex-version-[0-9]*:../../print/tex-version
# depend versions
# depend versonotes
DEPENDS+=	tex-vertbars-[0-9]*:../../print/tex-vertbars
# depend vgrid
# depend vhistory
DEPENDS+=	tex-vmargin-[0-9]*:../../print/tex-vmargin
# depend volumes
# depend vpe
DEPENDS+=	tex-vruler-[0-9]*:../../print/tex-vruler
# depend vwcol
DEPENDS+=	tex-wallpaper-[0-9]*:../../print/tex-wallpaper
# depend warning
# depend warpcol
DEPENDS+=	tex-was-[0-9]*:../../print/tex-was
# depend widetable
# depend williams
# depend withargs
# depend wordcount
# depend wordlike
DEPENDS+=	tex-wrapfig-[0-9]*:../../print/tex-wrapfig
DEPENDS+=	tex-xargs-[0-9]*:../../print/tex-xargs
# depend xassoccnt
# depend xcntperchap
# depend xcolor-solarized
DEPENDS+=	tex-xcomment-[0-9]*:../../print/tex-xcomment
# depend xdoc
# depend xellipsis
DEPENDS+=	tex-xfor-[0-9]*:../../print/tex-xfor
# depend xhfill
DEPENDS+=	tex-xifthen-[0-9]*:../../devel/tex-xifthen
# depend xint
# depend xmpincl
# depend xnewcommand
# depend xoptarg
# depend xpatch
# depend xpeek
# depend xprintlen
# depend xpunctuate
# depend xsavebox
DEPENDS+=	tex-xstring-[0-9]*:../../print/tex-xstring
DEPENDS+=	tex-xtab-[0-9]*:../../print/tex-xtab
# depend xwatermark
# depend xytree
# depend yafoot
# depend yagusylo
# depend ycbook
DEPENDS+=	tex-ydoc-[0-9]*:../../print/tex-ydoc
# depend yplan
# depend zed-csp
# depend ziffer
# depend zwgetfdate
# depend zwpagelayout

META_PACKAGE=	yes

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