blob: 49c0071e91437a8d6577d88e3ac99849aaf48cf4 (
plain) (
blame)
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
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
|
# $FreeBSD$
#
COMMENT = Text processing utilities (does not include desktop publishing)
SUBDIR += 2bsd-diff
SUBDIR += R-cran-DT
SUBDIR += R-cran-R2HTML
SUBDIR += R-cran-XML
SUBDIR += R-cran-formatR
SUBDIR += R-cran-highr
SUBDIR += R-cran-htmltools
SUBDIR += R-cran-markdown
SUBDIR += R-cran-pystr
SUBDIR += R-cran-rmarkdown
SUBDIR += R-cran-stringi
SUBDIR += R-cran-stringr
SUBDIR += R-cran-xml2
SUBDIR += R-cran-xtable
SUBDIR += R-cran-yaml
SUBDIR += ack
SUBDIR += adabrowse
SUBDIR += add-css-links
SUBDIR += af-aspell
SUBDIR += aft
SUBDIR += agrep
SUBDIR += aiksaurus
SUBDIR += aiksaurus-gtk
SUBDIR += align
SUBDIR += am-aspell
SUBDIR += amberfish
SUBDIR += ansifilter
SUBDIR += ant-xinclude-task
SUBDIR += antiword
SUBDIR += apache-poi
SUBDIR += apache-solr
SUBDIR += apache-solr3
SUBDIR += apertium
SUBDIR += archmage
SUBDIR += artha
SUBDIR += asciidoc
SUBDIR += asciinema
SUBDIR += asm-xml
SUBDIR += asm2html
SUBDIR += aspell
SUBDIR += aspell-ispell
SUBDIR += ast-aspell
SUBDIR += atom
SUBDIR += augeas
SUBDIR += az-aspell
SUBDIR += bar
SUBDIR += bbe
SUBDIR += be-aspell
SUBDIR += bedic-data
SUBDIR += beediff
SUBDIR += bg-aspell
SUBDIR += bg-hyphen
SUBDIR += bg-mythes
SUBDIR += bib2html
SUBDIR += bibtex2html
SUBDIR += bibtool
SUBDIR += bibutils
SUBDIR += bn-aspell
SUBDIR += bomstrip
SUBDIR += br-aspell
SUBDIR += bsddiff
SUBDIR += bsdgrep
SUBDIR += bsdsort
SUBDIR += btparse
SUBDIR += c2html
SUBDIR += ca-aspell
SUBDIR += catdoc
SUBDIR += cbedic
SUBDIR += cdif
SUBDIR += cdiff
SUBDIR += cgrep
SUBDIR += chm2pdf
SUBDIR += chpp
SUBDIR += cl-meta
SUBDIR += cl-meta-sbcl
SUBDIR += cl-ppcre
SUBDIR += cl-ppcre-sbcl
SUBDIR += clit
SUBDIR += clucene
SUBDIR += clucene-qt4
SUBDIR += clucene-qt5
SUBDIR += cmark
SUBDIR += coccigrep
SUBDIR += code2html
SUBDIR += codespell
SUBDIR += colordiff
SUBDIR += confetti
SUBDIR += confget
SUBDIR += consul-template
SUBDIR += crimson
SUBDIR += cs-aspell
SUBDIR += cs-mythes
SUBDIR += csb-aspell
SUBDIR += csv2latex
SUBDIR += csvdiff
SUBDIR += ctpl
SUBDIR += ctpp2
SUBDIR += cwtext
SUBDIR += cy-aspell
SUBDIR += da-aspell
SUBDIR += da-hyphen
SUBDIR += dadadodo
SUBDIR += db2latex
SUBDIR += dbacl
SUBDIR += dblatex
SUBDIR += denature
SUBDIR += dict
SUBDIR += dictem
SUBDIR += dictfmt
SUBDIR += dictionary
SUBDIR += diffmark
SUBDIR += diffsplit
SUBDIR += diffstat
SUBDIR += diffutils
SUBDIR += dikt
SUBDIR += discount
SUBDIR += dixit
SUBDIR += doc-mode.el
SUBDIR += docbook
SUBDIR += docbook-sgml
SUBDIR += docbook-tdg
SUBDIR += docbook-to-man
SUBDIR += docbook-utils
SUBDIR += docbook-xml
SUBDIR += docbook-xsd
SUBDIR += docbook-xsl
SUBDIR += docbook-xsl-ns
SUBDIR += docbook2X
SUBDIR += docbook2mdoc
SUBDIR += docbook2odf
SUBDIR += docbookide.el
SUBDIR += docdiff
SUBDIR += doclifter
SUBDIR += docproj
SUBDIR += dom4j
SUBDIR += domc
SUBDIR += dsssl-docbook-modular
SUBDIR += dtd-catalogs
SUBDIR += dtd2relax
SUBDIR += dtdinst
SUBDIR += dtdparse
SUBDIR += duncan
SUBDIR += dwdiff
SUBDIR += easydiff
SUBDIR += ebook-tools
SUBDIR += ecromedos
SUBDIR += ekhtml
SUBDIR += el-aspell
SUBDIR += el-hyphen
SUBDIR += elasticsearch
SUBDIR += elasticsearch-plugin-head
SUBDIR += elasticsearch-plugin-hq
SUBDIR += elasticsearch-plugin-marvel
SUBDIR += elasticsearch-plugin-migration
SUBDIR += elasticsearch-plugin-sql
SUBDIR += elasticsearch-river-rabbitmq
SUBDIR += elasticsearch2
SUBDIR += elasticsearch2-plugin-hq
SUBDIR += elasticsearch2-plugin-marvel
SUBDIR += elasticsearch2-plugin-sql
SUBDIR += elixir-earmark
SUBDIR += elixir-ex_doc
SUBDIR += elixir-funnel
SUBDIR += elixir-sweet_xml
SUBDIR += emacs-wiki
SUBDIR += en-aspell
SUBDIR += en-hunspell
SUBDIR += en-mythes
SUBDIR += enchant
SUBDIR += eo-aspell
SUBDIR += eqe
SUBDIR += erlang-edown
SUBDIR += erlang-p1xml
SUBDIR += erlang-yamerl
SUBDIR += es-aspell
SUBDIR += es-hunspell
SUBDIR += es-hyphen
SUBDIR += es-mythes
SUBDIR += estraier
SUBDIR += et-aspell
SUBDIR += exempi
SUBDIR += expat2
SUBDIR += exslt
SUBDIR += extract_url
SUBDIR += ezxml
SUBDIR += fa-aspell
SUBDIR += fcitx-m17n
SUBDIR += fex
SUBDIR += ffe
SUBDIR += fi-aspell
SUBDIR += filepp
SUBDIR += fist
SUBDIR += fixrtf
SUBDIR += fldiff
SUBDIR += flex
SUBDIR += flip
SUBDIR += fo-aspell
SUBDIR += foiltex
SUBDIR += fop
SUBDIR += fpc-aspell
SUBDIR += fpc-libxml2
SUBDIR += freexl
SUBDIR += fy-aspell
SUBDIR += ga-aspell
SUBDIR += gastex
SUBDIR += gd-aspell
SUBDIR += gdome2
SUBDIR += gl-aspell
SUBDIR += gladtex
SUBDIR += glark
SUBDIR += glpi-plugins-AdditionalReports
SUBDIR += glpi-plugins-DataInjection
SUBDIR += gmetadom
SUBDIR += gnome-doc-utils
SUBDIR += gnome-spell
SUBDIR += gnugrep
SUBDIR += go-text
SUBDIR += go.text
SUBDIR += goldendict
SUBDIR += google-ctemplate
SUBDIR += google-translate-cli
SUBDIR += gpp
SUBDIR += grap
SUBDIR += grc-aspell
SUBDIR += groff
SUBDIR += groonga
SUBDIR += gsed
SUBDIR += gspell
SUBDIR += gtk-doc
SUBDIR += gtkspell
SUBDIR += gtkspell-reference
SUBDIR += gtkspell3
SUBDIR += gu-aspell
SUBDIR += gutenmark
SUBDIR += gv-aspell
SUBDIR += heirloom-doctools
SUBDIR += hevea
SUBDIR += hhm
SUBDIR += hi-aspell
SUBDIR += highlight
SUBDIR += hil-aspell
SUBDIR += hr-aspell
SUBDIR += hs-Diff
SUBDIR += hs-HStringTemplate
SUBDIR += hs-HaXml
SUBDIR += hs-appar
SUBDIR += hs-attoparsec
SUBDIR += hs-attoparsec-enumerator
SUBDIR += hs-bencode
SUBDIR += hs-blaze-html
SUBDIR += hs-blaze-markup
SUBDIR += hs-bytestring-csv
SUBDIR += hs-case-insensitive
SUBDIR += hs-cassava
SUBDIR += hs-citeproc-hs
SUBDIR += hs-cmark
SUBDIR += hs-csv
SUBDIR += hs-double-conversion
SUBDIR += hs-feed
SUBDIR += hs-hexpat
SUBDIR += hs-highlighting-kate
SUBDIR += hs-hs-bibutils
SUBDIR += hs-html
SUBDIR += hs-html-conduit
SUBDIR += hs-hxt
SUBDIR += hs-hxt-charproperties
SUBDIR += hs-hxt-regex-xmlschema
SUBDIR += hs-hxt-unicode
SUBDIR += hs-lhs2tex
SUBDIR += hs-libxml
SUBDIR += hs-libxml-sax
SUBDIR += hs-pandoc
SUBDIR += hs-pandoc-citeproc
SUBDIR += hs-pandoc-types
SUBDIR += hs-parsec
SUBDIR += hs-polyparse
SUBDIR += hs-regex-applicative
SUBDIR += hs-regex-base
SUBDIR += hs-regex-compat
SUBDIR += hs-regex-compat-tdfa
SUBDIR += hs-regex-pcre-builtin
SUBDIR += hs-regex-posix
SUBDIR += hs-regex-tdfa
SUBDIR += hs-rfc5051
SUBDIR += hs-stringsearch
SUBDIR += hs-tagsoup
SUBDIR += hs-tagstream-conduit
SUBDIR += hs-texmath
SUBDIR += hs-uri
SUBDIR += hs-xml
SUBDIR += hs-xml-conduit
SUBDIR += hs-xml-hamlet
SUBDIR += hs-xml-types
SUBDIR += hs-xmlhtml
SUBDIR += hs-yaml
SUBDIR += hsb-aspell
SUBDIR += htdig
SUBDIR += html
SUBDIR += html-pretty
SUBDIR += html-xml-utils
SUBDIR += html2fo
SUBDIR += html2tex
SUBDIR += html2text
SUBDIR += html2xhtml
SUBDIR += htmlc
SUBDIR += htmldoc
SUBDIR += htmlise
SUBDIR += htmlize.el
SUBDIR += htmlsection
SUBDIR += htmltolatex
SUBDIR += humanzip
SUBDIR += hunspell
SUBDIR += hy-aspell
SUBDIR += hyperestraier
SUBDIR += hyphen
SUBDIR += ia-aspell
SUBDIR += ibus
SUBDIR += ibus-el
SUBDIR += ibus-kmfl
SUBDIR += ibus-m17n
SUBDIR += ibus-qt
SUBDIR += ibus-table
SUBDIR += id-aspell
SUBDIR += id-hyphen
SUBDIR += idnits
SUBDIR += igor
SUBDIR += iksemel
SUBDIR += info2html
SUBDIR += info2man
SUBDIR += info_to_html
SUBDIR += intltool
SUBDIR += irstlm
SUBDIR += is-aspell
SUBDIR += is-hyphen
SUBDIR += iso-schematron-xslt
SUBDIR += iso12083
SUBDIR += iso8879
SUBDIR += it-aspell
SUBDIR += it-hunspell
SUBDIR += it-hyphen
SUBDIR += it-mythes
SUBDIR += itstool
SUBDIR += jade
SUBDIR += jakarta-commons-digester
SUBDIR += jalingo
SUBDIR += jarnal
SUBDIR += java2html
SUBDIR += jaxup
SUBDIR += jdictionary
SUBDIR += jdictionary-int-eng
SUBDIR += jing
SUBDIR += jo
SUBDIR += jq
SUBDIR += jrefentry
SUBDIR += jshon
SUBDIR += kdiff3
SUBDIR += kenlm
SUBDIR += kibana3
SUBDIR += kibana41
SUBDIR += kibana42
SUBDIR += kibana43
SUBDIR += kibana44
SUBDIR += kibana45
SUBDIR += kmfl-european-latin
SUBDIR += kmfl-khmer
SUBDIR += kmfl-sil-ezra
SUBDIR += kmfl-sil-galatia
SUBDIR += kmfl-sil-ipa-unicode
SUBDIR += kmfl-sil-panafrican-latin
SUBDIR += kmfl-sil-yi
SUBDIR += kmfl-varamozhi-malayalam
SUBDIR += kmflcomp
SUBDIR += kn-aspell
SUBDIR += kompare
SUBDIR += ku-aspell
SUBDIR += ky-aspell
SUBDIR += l2a
SUBDIR += la-aspell
SUBDIR += lacheck
SUBDIR += lasem
SUBDIR += latex-service
SUBDIR += latex2html
SUBDIR += libabw
SUBDIR += libcrm114
SUBDIR += libcroco
SUBDIR += libcss
SUBDIR += libcsv
SUBDIR += libcue
SUBDIR += libe-book
SUBDIR += libebml
SUBDIR += libextractor
SUBDIR += libexttextcat
SUBDIR += libflate
SUBDIR += libguess
SUBDIR += libkmfl
SUBDIR += libkolabxml
SUBDIR += libkomparediff2
SUBDIR += liblingoteach
SUBDIR += liblrdf
SUBDIR += libmrss
SUBDIR += libmrss-php
SUBDIR += libmwaw03
SUBDIR += libnxml
SUBDIR += libodfgen01
SUBDIR += libparsifal
SUBDIR += librevenge
SUBDIR += libroxml
SUBDIR += libsass
SUBDIR += libsoldout
SUBDIR += libsphinxclient
SUBDIR += libstree
SUBDIR += libtext-charwidth-perl
SUBDIR += libtext-wrapi18n-perl
SUBDIR += libtextcat
SUBDIR += libtranslate
SUBDIR += libtre
SUBDIR += libucl
SUBDIR += libunibreak
SUBDIR += libuninameslist
SUBDIR += libutf8proc
SUBDIR += libvisio01
SUBDIR += libwapcaplet
SUBDIR += libwpd010
SUBDIR += libwps
SUBDIR += libwps03
SUBDIR += libxdiff
SUBDIR += libxml++26
SUBDIR += libxml++26-reference
SUBDIR += libxml2
SUBDIR += libxml2-reference
SUBDIR += libxode
SUBDIR += libxslt
SUBDIR += libxslt-reference
SUBDIR += libyaml
SUBDIR += link-grammar
SUBDIR += linux-c6-aspell
SUBDIR += linux-c6-expat
SUBDIR += linux-c6-libxml2
SUBDIR += linux-f10-aspell
SUBDIR += linux-f10-expat
SUBDIR += linux-f10-libxml2
SUBDIR += linux-f10-scim-gtk
SUBDIR += linux-f10-scim-libs
SUBDIR += linuxdoc
SUBDIR += linuxdoc-tools
SUBDIR += localize
SUBDIR += loook
SUBDIR += lt-aspell
SUBDIR += lt-hyphen
SUBDIR += lttoolbox
SUBDIR += ltxml
SUBDIR += luaexpat
SUBDIR += lucene
SUBDIR += lucene4
SUBDIR += lucene5
SUBDIR += luceneplusplus
SUBDIR += lv-aspell
SUBDIR += m17n-im-config
SUBDIR += makefaq
SUBDIR += makepatch
SUBDIR += man2html
SUBDIR += markdown
SUBDIR += markdown-mode.el
SUBDIR += mathml-xsd
SUBDIR += mdocml
SUBDIR += meld
SUBDIR += metauml
SUBDIR += mgdiff
SUBDIR += mguesser
SUBDIR += mi-aspell
SUBDIR += mifluz
SUBDIR += miller
SUBDIR += minised
SUBDIR += mk-aspell
SUBDIR += mkcatalog
SUBDIR += ml-aspell
SUBDIR += ml1
SUBDIR += mn-aspell
SUBDIR += modlogan
SUBDIR += mr-aspell
SUBDIR += ms-aspell
SUBDIR += msort
SUBDIR += mt-aspell
SUBDIR += multimarkdown
SUBDIR += muse
SUBDIR += mxml
SUBDIR += mysqlviz
SUBDIR += mythes
SUBDIR += nb-aspell
SUBDIR += nds-aspell
SUBDIR += nl-aspell
SUBDIR += nl-hunspell
SUBDIR += nl-hyphen
SUBDIR += nl-mythes
SUBDIR += nn-aspell
SUBDIR += no-hunspell
SUBDIR += nunnimcax
SUBDIR += nux
SUBDIR += ny-aspell
SUBDIR += ocaml-csv
SUBDIR += ocaml-expat
SUBDIR += ocaml-pxp
SUBDIR += ocaml-text
SUBDIR += ocaml-tyxml
SUBDIR += odt2txt
SUBDIR += openfts
SUBDIR += opengrm-ngram
SUBDIR += openjade
SUBDIR += opensched
SUBDIR += opensp
SUBDIR += opentoken
SUBDIR += openvanilla-framework
SUBDIR += or-aspell
SUBDIR += ots
SUBDIR += p5-AI-Categorizer
SUBDIR += p5-Algorithm-CheckDigits
SUBDIR += p5-Algorithm-RabinKarp
SUBDIR += p5-Apache-ParseLog
SUBDIR += p5-BibTeX-Parser
SUBDIR += p5-Bloom-Filter
SUBDIR += p5-CAM-PDF
SUBDIR += p5-CQL-Parser
SUBDIR += p5-CSS
SUBDIR += p5-CSS-Compressor
SUBDIR += p5-CSS-Croco
SUBDIR += p5-CSS-Minifier
SUBDIR += p5-CSS-Minifier-XS
SUBDIR += p5-CSS-Packer
SUBDIR += p5-CSS-SAC
SUBDIR += p5-CSS-Simple
SUBDIR += p5-CSS-Squish
SUBDIR += p5-CSS-Tiny
SUBDIR += p5-Chess-PGN-Parse
SUBDIR += p5-Class-CSV
SUBDIR += p5-Data-FormValidator
SUBDIR += p5-Data-FormValidator-Constraints-DateTime
SUBDIR += p5-Data-Phrasebook
SUBDIR += p5-Data-Phrasebook-Loader-YAML
SUBDIR += p5-Data-Report
SUBDIR += p5-Data-SpreadPagination
SUBDIR += p5-DelimMatch
SUBDIR += p5-Dev-Bollocks
SUBDIR += p5-Devel-TraceSAX
SUBDIR += p5-DocSet
SUBDIR += p5-EBook-Tools
SUBDIR += p5-Excel-Template
SUBDIR += p5-Excel-Writer-XLSX
SUBDIR += p5-File-Inplace
SUBDIR += p5-Filter-Simple
SUBDIR += p5-FormValidator-Lite
SUBDIR += p5-Games-Dissociate
SUBDIR += p5-Geo-Parse-OSM
SUBDIR += p5-Getopt-Lucid
SUBDIR += p5-Google-Data-JSON
SUBDIR += p5-Groonga-API
SUBDIR += p5-HTML-CTPP2
SUBDIR += p5-HTML-Copy
SUBDIR += p5-HTML-Entities-ImodePictogram
SUBDIR += p5-HTML-Entities-Interpolate
SUBDIR += p5-HTML-Entities-Numbered
SUBDIR += p5-HTML-EscapeEvil
SUBDIR += p5-HTML-Format
SUBDIR += p5-HTML-FormatExternal
SUBDIR += p5-HTML-FormatText-WithLinks
SUBDIR += p5-HTML-FormatText-WithLinks-AndTables
SUBDIR += p5-HTML-Fraction
SUBDIR += p5-HTML-HTML5-Entities
SUBDIR += p5-HTML-HTML5-Parser
SUBDIR += p5-HTML-HTMLDoc
SUBDIR += p5-HTML-Packer
SUBDIR += p5-HTML-QRCode
SUBDIR += p5-HTML-Quoted
SUBDIR += p5-HTML-RewriteAttributes
SUBDIR += p5-HTML-SBC
SUBDIR += p5-HTML-SuperForm
SUBDIR += p5-HTML-TagFilter
SUBDIR += p5-HTML-Tidy
SUBDIR += p5-HTML-Tiny
SUBDIR += p5-HTML-Truncate
SUBDIR += p5-Hailo
SUBDIR += p5-Hash-Merge
SUBDIR += p5-Hatena-Keyword
SUBDIR += p5-IDNA-Punycode
SUBDIR += p5-IO-CSVHeaderFile
SUBDIR += p5-JavaScript-Minifier
SUBDIR += p5-JavaScript-Minifier-XS
SUBDIR += p5-JavaScript-Packer
SUBDIR += p5-KinoSearch1
SUBDIR += p5-Kwalify
SUBDIR += p5-LaTeX-Driver
SUBDIR += p5-LaTeX-Encode
SUBDIR += p5-LaTeX-Pod
SUBDIR += p5-LaTeX-TOM
SUBDIR += p5-LaTeX-Table
SUBDIR += p5-LaTeX-ToUnicode
SUBDIR += p5-Lingua-Conjunction
SUBDIR += p5-Lingua-EN-AddressParse
SUBDIR += p5-Lingua-EN-Fathom
SUBDIR += p5-Lingua-EN-FindNumber
SUBDIR += p5-Lingua-EN-Gender
SUBDIR += p5-Lingua-EN-Infinitive
SUBDIR += p5-Lingua-EN-Inflect
SUBDIR += p5-Lingua-EN-Inflect-Number
SUBDIR += p5-Lingua-EN-Inflect-Phrase
SUBDIR += p5-Lingua-EN-MatchNames
SUBDIR += p5-Lingua-EN-NameCase
SUBDIR += p5-Lingua-EN-NameParse
SUBDIR += p5-Lingua-EN-NamedEntity
SUBDIR += p5-Lingua-EN-Nickname
SUBDIR += p5-Lingua-EN-Number-IsOrdinal
SUBDIR += p5-Lingua-EN-Numbers
SUBDIR += p5-Lingua-EN-Numbers-Easy
SUBDIR += p5-Lingua-EN-Numbers-Ordinate
SUBDIR += p5-Lingua-EN-PluralToSingular
SUBDIR += p5-Lingua-EN-Sentence
SUBDIR += p5-Lingua-EN-Squeeze
SUBDIR += p5-Lingua-EN-Summarize
SUBDIR += p5-Lingua-EN-Syllable
SUBDIR += p5-Lingua-EN-Tagger
SUBDIR += p5-Lingua-EN-Words2Nums
SUBDIR += p5-Lingua-Ident
SUBDIR += p5-Lingua-Identify
SUBDIR += p5-Lingua-Identify-CLD
SUBDIR += p5-Lingua-Ispell
SUBDIR += p5-Lingua-PT-Stemmer
SUBDIR += p5-Lingua-Preferred
SUBDIR += p5-Lingua-Stem
SUBDIR += p5-Lingua-Stem-Fr
SUBDIR += p5-Lingua-Stem-It
SUBDIR += p5-Lingua-Stem-Ru
SUBDIR += p5-Lingua-Stem-Snowball
SUBDIR += p5-Lingua-Stem-Snowball-Da
SUBDIR += p5-Lingua-Stem-Snowball-No
SUBDIR += p5-Lingua-Stem-Snowball-Se
SUBDIR += p5-Lingua-StopWords
SUBDIR += p5-Lingua-Treebank
SUBDIR += p5-MARC
SUBDIR += p5-MARC-Charset
SUBDIR += p5-MARC-Lint
SUBDIR += p5-MARC-Record
SUBDIR += p5-MARC-XML
SUBDIR += p5-MKDoc-XML
SUBDIR += p5-Makefile-DOM
SUBDIR += p5-Makefile-Parser
SUBDIR += p5-Markapl
SUBDIR += p5-Marpa-HTML
SUBDIR += p5-MathML-Entities
SUBDIR += p5-Net-Groonga-HTTP
SUBDIR += p5-Net-IDN-Encode
SUBDIR += p5-Net-Snort-Parser
SUBDIR += p5-Net-YASA
SUBDIR += p5-NetAddr-IP-Find
SUBDIR += p5-Number-Format
SUBDIR += p5-Number-Spell
SUBDIR += p5-ODF-lpOD
SUBDIR += p5-OpenOffice-OODoc
SUBDIR += p5-PDF-API2
SUBDIR += p5-PDF-API2-Simple
SUBDIR += p5-PDF-API3
SUBDIR += p5-PDF-Create
SUBDIR += p5-PDF-FromHTML
SUBDIR += p5-PDF-Table
SUBDIR += p5-PDF-WebKit
SUBDIR += p5-PDF-Writer
SUBDIR += p5-POD2-Base
SUBDIR += p5-POE-Filter-XML
SUBDIR += p5-POSIX-Regex
SUBDIR += p5-PPI
SUBDIR += p5-PPI-HTML
SUBDIR += p5-PPI-XS
SUBDIR += p5-PPIx-EditorTools
SUBDIR += p5-PPIx-Regexp
SUBDIR += p5-PPIx-Utilities
SUBDIR += p5-Parse-BooleanLogic
SUBDIR += p5-Parse-CSV
SUBDIR += p5-Parse-FixedLength
SUBDIR += p5-Parse-Flex
SUBDIR += p5-Parse-PhoneNumber
SUBDIR += p5-Parse-Syslog
SUBDIR += p5-Perl-Critic
SUBDIR += p5-Perl-Critic-Bangs
SUBDIR += p5-Perl-Critic-Itch
SUBDIR += p5-Perl-Critic-Moose
SUBDIR += p5-Perl-Critic-More
SUBDIR += p5-Perl-Critic-Pulp
SUBDIR += p5-Perl-Critic-Swift
SUBDIR += p5-Perl-Critic-Tics
SUBDIR += p5-Perl-Lint
SUBDIR += p5-Perl-MinimumVersion
SUBDIR += p5-PerlPoint-Converters
SUBDIR += p5-PerlPoint-Package
SUBDIR += p5-Petal
SUBDIR += p5-Petal-CodePerl
SUBDIR += p5-Petal-Mail
SUBDIR += p5-Petal-Utils
SUBDIR += p5-Plagger
SUBDIR += p5-Plucene
SUBDIR += p5-Plucene-Analysis-CJKAnalyzer
SUBDIR += p5-Plucene-Plugin-Analyzer-SnowballAnalyzer
SUBDIR += p5-Plucene-Simple
SUBDIR += p5-Pod-Abstract
SUBDIR += p5-Pod-Autopod
SUBDIR += p5-Pod-Constants
SUBDIR += p5-Pod-DocBook
SUBDIR += p5-Pod-Elemental
SUBDIR += p5-Pod-Escapes
SUBDIR += p5-Pod-Eventual
SUBDIR += p5-Pod-HtmlEasy
SUBDIR += p5-Pod-Markdown
SUBDIR += p5-Pod-POM
SUBDIR += p5-Pod-POM-View-HTML-Filter
SUBDIR += p5-Pod-Parser
SUBDIR += p5-Pod-Perldoc
SUBDIR += p5-Pod-ProjectDocs
SUBDIR += p5-Pod-Readme
SUBDIR += p5-Pod-Simple
SUBDIR += p5-Pod-Spell
SUBDIR += p5-Pod-Strip
SUBDIR += p5-Pod-Stripper
SUBDIR += p5-Pod-Tree
SUBDIR += p5-Pod-WSDL
SUBDIR += p5-Pod-WikiDoc
SUBDIR += p5-Pod-XML
SUBDIR += p5-Pod-Xhtml
SUBDIR += p5-RADIUS-UserFile
SUBDIR += p5-RDF-Core
SUBDIR += p5-RDF-Notation3
SUBDIR += p5-RDF-Simple
SUBDIR += p5-RDF-Trine
SUBDIR += p5-RDFStore
SUBDIR += p5-RTF-Parser
SUBDIR += p5-RTF-Tokenizer
SUBDIR += p5-RTF-Writer
SUBDIR += p5-Regex-PreSuf
SUBDIR += p5-Regexp-Common
SUBDIR += p5-Regexp-Common-Email-Address
SUBDIR += p5-Regexp-Common-net-CIDR
SUBDIR += p5-Regexp-Common-profanity_us
SUBDIR += p5-Regexp-Copy
SUBDIR += p5-Regexp-Debugger
SUBDIR += p5-Regexp-DefaultFlags
SUBDIR += p5-Regexp-IPv6
SUBDIR += p5-Regexp-Log
SUBDIR += p5-Regexp-Log-Common
SUBDIR += p5-SGML-DTDParse
SUBDIR += p5-SGML-Parser-OpenSP
SUBDIR += p5-SGMLSpm
SUBDIR += p5-SQL-Tokenizer
SUBDIR += p5-SVG
SUBDIR += p5-SVG-Parser
SUBDIR += p5-Search-Elasticsearch
SUBDIR += p5-Search-Estraier
SUBDIR += p5-Search-Odeum
SUBDIR += p5-Search-QueryParser
SUBDIR += p5-Search-QueryParser-SQL
SUBDIR += p5-Search-Saryer
SUBDIR += p5-Search-VectorSpace
SUBDIR += p5-Senna
SUBDIR += p5-Solr
SUBDIR += p5-Sort-ArbBiLex
SUBDIR += p5-Sort-Fields
SUBDIR += p5-Sort-Naturally
SUBDIR += p5-Sphinx-Config
SUBDIR += p5-Sphinx-Manager
SUBDIR += p5-Sphinx-Search
SUBDIR += p5-Spork
SUBDIR += p5-Spreadsheet-ParseExcel
SUBDIR += p5-Spreadsheet-Read
SUBDIR += p5-Spreadsheet-ReadSXC
SUBDIR += p5-Spreadsheet-WriteExcel
SUBDIR += p5-Spreadsheet-WriteExcel-FromXML
SUBDIR += p5-Spreadsheet-WriteExcel-Styler
SUBDIR += p5-Spreadsheet-WriteExcelXML
SUBDIR += p5-Spreadsheet-XLSX
SUBDIR += p5-String-BufferStack
SUBDIR += p5-String-CamelCase
SUBDIR += p5-String-Compare-ConstantTime
SUBDIR += p5-String-Divert
SUBDIR += p5-String-Escape
SUBDIR += p5-String-Flogger
SUBDIR += p5-String-Format
SUBDIR += p5-String-Fraction
SUBDIR += p5-String-HexConvert
SUBDIR += p5-String-Koremutake
SUBDIR += p5-String-Print
SUBDIR += p5-String-RewritePrefix
SUBDIR += p5-String-Scanf
SUBDIR += p5-String-ShellQuote
SUBDIR += p5-String-ShowDiff
SUBDIR += p5-String-Strip
SUBDIR += p5-String-ToIdentifier-EN
SUBDIR += p5-String-Tokenizer
SUBDIR += p5-String-Trim
SUBDIR += p5-String-Truncate
SUBDIR += p5-String-Urandom
SUBDIR += p5-String-Util
SUBDIR += p5-Syntax-Highlight-Engine-Kate
SUBDIR += p5-Syntax-Highlight-Perl-Improved
SUBDIR += p5-TOML
SUBDIR += p5-TeX-Encode
SUBDIR += p5-TeX-Hyphen
SUBDIR += p5-Template-Declare
SUBDIR += p5-Template-Extract
SUBDIR += p5-Template-Magic
SUBDIR += p5-Template-Plugin-Autoformat
SUBDIR += p5-Template-Plugin-CSV
SUBDIR += p5-Template-Plugin-Filter-Minify-CSS
SUBDIR += p5-Template-Plugin-Filter-Minify-CSS-XS
SUBDIR += p5-Template-Plugin-Filter-Minify-JavaScript
SUBDIR += p5-Template-Plugin-Filter-Minify-JavaScript-XS
SUBDIR += p5-Template-Plugin-HTML-SuperForm
SUBDIR += p5-Template-Plugin-Lingua-EN-Inflect
SUBDIR += p5-Template-Plugin-XML-Escape
SUBDIR += p5-Template-Semantic
SUBDIR += p5-Template-Tiny
SUBDIR += p5-Term-QRCode
SUBDIR += p5-Test-Groonga
SUBDIR += p5-Test-Perl-Critic
SUBDIR += p5-Text-ASCIIMathML
SUBDIR += p5-Text-ASCIITable
SUBDIR += p5-Text-Affixes
SUBDIR += p5-Text-Aligner
SUBDIR += p5-Text-Aspell
SUBDIR += p5-Text-Autoformat
SUBDIR += p5-Text-Balanced
SUBDIR += p5-Text-Bastardize
SUBDIR += p5-Text-BibTeX
SUBDIR += p5-Text-Bind
SUBDIR += p5-Text-Brew
SUBDIR += p5-Text-CSV
SUBDIR += p5-Text-CSV-Encoded
SUBDIR += p5-Text-CSV-Hashify
SUBDIR += p5-Text-CSV-Simple
SUBDIR += p5-Text-CSV_XS
SUBDIR += p5-Text-Capitalize
SUBDIR += p5-Text-CharWidth
SUBDIR += p5-Text-Chomp
SUBDIR += p5-Text-ClearSilver
SUBDIR += p5-Text-Colorizer
SUBDIR += p5-Text-Context
SUBDIR += p5-Text-Context-EitherSide
SUBDIR += p5-Text-DHCPLeases
SUBDIR += p5-Text-Decorator
SUBDIR += p5-Text-Delimited
SUBDIR += p5-Text-Diff
SUBDIR += p5-Text-Diff-HTML
SUBDIR += p5-Text-Diff-Parser
SUBDIR += p5-Text-Diff3
SUBDIR += p5-Text-DoubleMetaphone
SUBDIR += p5-Text-Emoticon
SUBDIR += p5-Text-Emoticon-GoogleTalk
SUBDIR += p5-Text-Emoticon-MSN
SUBDIR += p5-Text-EtText
SUBDIR += p5-Text-Extract-Word
SUBDIR += p5-Text-ExtractWords
SUBDIR += p5-Text-FillIn
SUBDIR += p5-Text-Filter
SUBDIR += p5-Text-Filter-Chain
SUBDIR += p5-Text-FindIndent
SUBDIR += p5-Text-FixEOL
SUBDIR += p5-Text-FixedLength
SUBDIR += p5-Text-FixedLength-Extra
SUBDIR += p5-Text-Flow
SUBDIR += p5-Text-Flowchart
SUBDIR += p5-Text-Flowed
SUBDIR += p5-Text-Format
SUBDIR += p5-Text-Format+NWrap
SUBDIR += p5-Text-FormatTable
SUBDIR += p5-Text-German
SUBDIR += p5-Text-Glob
SUBDIR += p5-Text-Graphics
SUBDIR += p5-Text-Greeking
SUBDIR += p5-Text-Haml
SUBDIR += p5-Text-Hatena
SUBDIR += p5-Text-Highlight
SUBDIR += p5-Text-HikiDoc
SUBDIR += p5-Text-Hyphen
SUBDIR += p5-Text-LTSV
SUBDIR += p5-Text-Language-Guess
SUBDIR += p5-Text-Lorem
SUBDIR += p5-Text-Markdown
SUBDIR += p5-Text-Match-FastAlternatives
SUBDIR += p5-Text-Metaphone
SUBDIR += p5-Text-MicroMason
SUBDIR += p5-Text-MicroTemplate
SUBDIR += p5-Text-MicroTemplate-Extended
SUBDIR += p5-Text-MultiMarkdown
SUBDIR += p5-Text-NSP
SUBDIR += p5-Text-NeatTemplate
SUBDIR += p5-Text-Netstring
SUBDIR += p5-Text-Ngram
SUBDIR += p5-Text-Ngrams
SUBDIR += p5-Text-Original
SUBDIR += p5-Text-Padding
SUBDIR += p5-Text-ParagraphDiff
SUBDIR += p5-Text-ParseWords
SUBDIR += p5-Text-Patch
SUBDIR += p5-Text-Pipe
SUBDIR += p5-Text-Prefix-XS
SUBDIR += p5-Text-QRCode
SUBDIR += p5-Text-Query
SUBDIR += p5-Text-Quote
SUBDIR += p5-Text-Quoted
SUBDIR += p5-Text-RecordParser
SUBDIR += p5-Text-Reflow
SUBDIR += p5-Text-Reform
SUBDIR += p5-Text-Report
SUBDIR += p5-Text-Repository
SUBDIR += p5-Text-Roman
SUBDIR += p5-Text-Sass
SUBDIR += p5-Text-Shellwords
SUBDIR += p5-Text-Similarity
SUBDIR += p5-Text-SimpleTable
SUBDIR += p5-Text-SimpleTable-AutoWidth
SUBDIR += p5-Text-SimpleTemplate
SUBDIR += p5-Text-Soundex
SUBDIR += p5-Text-SpellChecker
SUBDIR += p5-Text-SpellChecker-GUI
SUBDIR += p5-Text-Striphigh
SUBDIR += p5-Text-Table
SUBDIR += p5-Text-Tabs+Wrap
SUBDIR += p5-Text-TabularDisplay
SUBDIR += p5-Text-Tags
SUBDIR += p5-Text-Template
SUBDIR += p5-Text-TestBase
SUBDIR += p5-Text-Textile
SUBDIR += p5-Text-Tmpl
SUBDIR += p5-Text-Trac
SUBDIR += p5-Text-Trim
SUBDIR += p5-Text-Truncate
SUBDIR += p5-Text-Typography
SUBDIR += p5-Text-Unaccent
SUBDIR += p5-Text-VimColor
SUBDIR += p5-Text-VisualWidth
SUBDIR += p5-Text-WikiCreole
SUBDIR += p5-Text-WikiFormat
SUBDIR += p5-Text-WordDiff
SUBDIR += p5-Text-WrapI18N
SUBDIR += p5-Text-Wrapper
SUBDIR += p5-Text-Xslate
SUBDIR += p5-Text-Xslate-Bridge-TT2Like
SUBDIR += p5-Text-vCard
SUBDIR += p5-Tiffany
SUBDIR += p5-Time-Human
SUBDIR += p5-Tk-Pod
SUBDIR += p5-Tk-XMLViewer
SUBDIR += p5-Tree-Nary
SUBDIR += p5-Tree-Suffix
SUBDIR += p5-UML-Class-Simple
SUBDIR += p5-UML-Sequence
SUBDIR += p5-UML-State
SUBDIR += p5-URI-Find
SUBDIR += p5-Unicode-CaseFold
SUBDIR += p5-Unicode-CheckUTF8
SUBDIR += p5-Unicode-Collate
SUBDIR += p5-Unicode-EastAsianWidth
SUBDIR += p5-Unicode-Escape
SUBDIR += p5-Unicode-LineBreak
SUBDIR += p5-Unicode-Normalize
SUBDIR += p5-Unicode-Unihan
SUBDIR += p5-Validator-Custom
SUBDIR += p5-Version-Next
SUBDIR += p5-Vroom
SUBDIR += p5-WDDX
SUBDIR += p5-WWW-Google-SiteMap
SUBDIR += p5-WWW-Wordnik-API
SUBDIR += p5-WordNet-QueryData
SUBDIR += p5-WordNet-Similarity
SUBDIR += p5-XML-Atom
SUBDIR += p5-XML-Atom-Ext-OpenSearch
SUBDIR += p5-XML-Atom-Filter
SUBDIR += p5-XML-Atom-SimpleFeed
SUBDIR += p5-XML-Atom-Stream
SUBDIR += p5-XML-Atom-Syndication
SUBDIR += p5-XML-AutoWriter
SUBDIR += p5-XML-Bare
SUBDIR += p5-XML-Canonical
SUBDIR += p5-XML-CanonicalizeXML
SUBDIR += p5-XML-Catalog
SUBDIR += p5-XML-Clean
SUBDIR += p5-XML-Code
SUBDIR += p5-XML-CommonNS
SUBDIR += p5-XML-Compile
SUBDIR += p5-XML-Compile-Cache
SUBDIR += p5-XML-Compile-Dumper
SUBDIR += p5-XML-DBMS
SUBDIR += p5-XML-DOM
SUBDIR += p5-XML-DOM-Lite
SUBDIR += p5-XML-DOM-XPath
SUBDIR += p5-XML-DOM2
SUBDIR += p5-XML-DOMHandler
SUBDIR += p5-XML-DT
SUBDIR += p5-XML-DTDParser
SUBDIR += p5-XML-Declare
SUBDIR += p5-XML-Descent
SUBDIR += p5-XML-DifferenceMarkup
SUBDIR += p5-XML-Directory
SUBDIR += p5-XML-DoubleEncodedEntities
SUBDIR += p5-XML-Driver-HTML
SUBDIR += p5-XML-Dumper
SUBDIR += p5-XML-Elemental
SUBDIR += p5-XML-Encoding
SUBDIR += p5-XML-Entities
SUBDIR += p5-XML-FOAF
SUBDIR += p5-XML-Feed
SUBDIR += p5-XML-Feed-Deduper
SUBDIR += p5-XML-FeedPP
SUBDIR += p5-XML-Filter-BufferText
SUBDIR += p5-XML-Filter-DOMFilter-LibXML
SUBDIR += p5-XML-Filter-DetectWS
SUBDIR += p5-XML-Filter-GenericChunk
SUBDIR += p5-XML-Filter-Reindent
SUBDIR += p5-XML-Filter-SAX1toSAX2
SUBDIR += p5-XML-Filter-SAXT
SUBDIR += p5-XML-Filter-XInclude
SUBDIR += p5-XML-Filter-XSLT
SUBDIR += p5-XML-Flow
SUBDIR += p5-XML-GDOME
SUBDIR += p5-XML-Generator
SUBDIR += p5-XML-Generator-DBI
SUBDIR += p5-XML-Generator-PerlData
SUBDIR += p5-XML-Grove
SUBDIR += p5-XML-Handler-Dtd2DocBook
SUBDIR += p5-XML-Handler-Dtd2Html
SUBDIR += p5-XML-Handler-HTMLWriter
SUBDIR += p5-XML-Handler-Trees
SUBDIR += p5-XML-Handler-YAWriter
SUBDIR += p5-XML-Hash-LX
SUBDIR += p5-XML-LibXML
SUBDIR += p5-XML-LibXML-Cache
SUBDIR += p5-XML-LibXML-Iterator
SUBDIR += p5-XML-LibXML-PrettyPrint
SUBDIR += p5-XML-LibXML-SAX-ChunkParser
SUBDIR += p5-XML-LibXML-Simple
SUBDIR += p5-XML-LibXSLT
SUBDIR += p5-XML-Liberal
SUBDIR += p5-XML-Literal
SUBDIR += p5-XML-Mini
SUBDIR += p5-XML-MyXML
SUBDIR += p5-XML-Namespace
SUBDIR += p5-XML-NamespaceFactory
SUBDIR += p5-XML-NamespaceSupport
SUBDIR += p5-XML-Node
SUBDIR += p5-XML-NodeFilter
SUBDIR += p5-XML-OPML
SUBDIR += p5-XML-OPML-LibXML
SUBDIR += p5-XML-Parsepp
SUBDIR += p5-XML-Parser
SUBDIR += p5-XML-Parser-EasyTree
SUBDIR += p5-XML-Parser-Lite
SUBDIR += p5-XML-Parser-Lite-Tree
SUBDIR += p5-XML-Parser-Style-EasyTree
SUBDIR += p5-XML-Parser-Style-Elemental
SUBDIR += p5-XML-Quote
SUBDIR += p5-XML-RAI
SUBDIR += p5-XML-RSS
SUBDIR += p5-XML-RSS-Feed
SUBDIR += p5-XML-RSS-JavaScript
SUBDIR += p5-XML-RSS-LibXML
SUBDIR += p5-XML-RSS-Liberal
SUBDIR += p5-XML-RSS-Parser
SUBDIR += p5-XML-RSS-SimpleGen
SUBDIR += p5-XML-RSSLite
SUBDIR += p5-XML-Reader
SUBDIR += p5-XML-RegExp
SUBDIR += p5-XML-Rewrite
SUBDIR += p5-XML-Rules
SUBDIR += p5-XML-SAX
SUBDIR += p5-XML-SAX-Base
SUBDIR += p5-XML-SAX-Expat
SUBDIR += p5-XML-SAX-Expat-Incremental
SUBDIR += p5-XML-SAX-ExpatXS
SUBDIR += p5-XML-SAX-Machines
SUBDIR += p5-XML-SAX-Simple
SUBDIR += p5-XML-SAX-Writer
SUBDIR += p5-XML-SAXDriver-CSV
SUBDIR += p5-XML-SAXDriver-Excel
SUBDIR += p5-XML-STX
SUBDIR += p5-XML-Schematron
SUBDIR += p5-XML-SemanticDiff
SUBDIR += p5-XML-Simple
SUBDIR += p5-XML-SimpleObject
SUBDIR += p5-XML-SimpleObject-LibXML
SUBDIR += p5-XML-Smart
SUBDIR += p5-XML-Stream
SUBDIR += p5-XML-Tiny
SUBDIR += p5-XML-TinyXML
SUBDIR += p5-XML-TokeParser
SUBDIR += p5-XML-Toolkit
SUBDIR += p5-XML-TreeBuilder
SUBDIR += p5-XML-TreePP
SUBDIR += p5-XML-Twig
SUBDIR += p5-XML-Validate
SUBDIR += p5-XML-Validator-Schema
SUBDIR += p5-XML-Writer
SUBDIR += p5-XML-XBEL
SUBDIR += p5-XML-XML2JSON
SUBDIR += p5-XML-XPath
SUBDIR += p5-XML-XPathEngine
SUBDIR += p5-XML-XQL
SUBDIR += p5-XML-XSH
SUBDIR += p5-XML-XSLT
SUBDIR += p5-XML-XUpdate-LibXML
SUBDIR += p5-YAML
SUBDIR += p5-YAML-LibYAML
SUBDIR += p5-YAML-Shell
SUBDIR += p5-YAML-Syck
SUBDIR += p5-YAML-Tiny
SUBDIR += p5-YAML-Tiny-Color
SUBDIR += p5-YAPE-HTML
SUBDIR += p5-YAPE-Regex
SUBDIR += p5-YAPE-Regex-Explain
SUBDIR += p5-dTemplate
SUBDIR += p5-libsoldout
SUBDIR += p5-libxml
SUBDIR += p5-pod2pdf
SUBDIR += p5-podlators
SUBDIR += p5-texcount
SUBDIR += p5-xmltv
SUBDIR += pa-aspell
SUBDIR += par
SUBDIR += pcrs
SUBDIR += pdfgrep
SUBDIR += pdfoutline
SUBDIR += pdftohtml
SUBDIR += pear-File_Fortune
SUBDIR += pear-File_MARC
SUBDIR += pear-Horde_CssMinify
SUBDIR += pear-Horde_JavascriptMinify
SUBDIR += pear-Horde_Kolab_Format
SUBDIR += pear-Horde_Pdf
SUBDIR += pear-Horde_SpellChecker
SUBDIR += pear-Horde_Text_Diff
SUBDIR += pear-Horde_Text_Filter
SUBDIR += pear-Horde_Text_Filter_Csstidy
SUBDIR += pear-Horde_Text_Flowed
SUBDIR += pear-Horde_Xml_Element
SUBDIR += pear-Horde_Xml_Wbxml
SUBDIR += pear-Numbers_Roman
SUBDIR += pear-Numbers_Words
SUBDIR += pear-Spreadsheet_Excel_Writer
SUBDIR += pear-Structures_DataGrid_DataSource_RSS
SUBDIR += pear-Structures_DataGrid_DataSource_XML
SUBDIR += pear-Structures_DataGrid_Renderer_CSV
SUBDIR += pear-Structures_DataGrid_Renderer_XLS
SUBDIR += pear-Structures_DataGrid_Renderer_XML
SUBDIR += pear-Symfony_Component_Yaml
SUBDIR += pear-Text_Highlighter
SUBDIR += pear-Text_Template
SUBDIR += pear-XML_Beautifier
SUBDIR += pear-XML_DTD
SUBDIR += pear-XML_Feed_Parser
SUBDIR += pear-XML_HTMLSax
SUBDIR += pear-XML_Wddx
SUBDIR += pear-YAML
SUBDIR += pecl-cld
SUBDIR += pecl-ctemplate
SUBDIR += pecl-doublemetaphone
SUBDIR += pecl-enchant
SUBDIR += pecl-html_parse
SUBDIR += pecl-stem
SUBDIR += pecl-syck
SUBDIR += pecl-wbxml
SUBDIR += pecl-xdiff
SUBDIR += pecl-xslcache
SUBDIR += pecl-yaml
SUBDIR += peco
SUBDIR += perl2html
SUBDIR += permute
SUBDIR += php-mecab
SUBDIR += php55-ctype
SUBDIR += php55-dom
SUBDIR += php55-pspell
SUBDIR += php55-simplexml
SUBDIR += php55-wddx
SUBDIR += php55-xml
SUBDIR += php55-xmlreader
SUBDIR += php55-xmlwriter
SUBDIR += php55-xsl
SUBDIR += php56-ctype
SUBDIR += php56-dom
SUBDIR += php56-pspell
SUBDIR += php56-simplexml
SUBDIR += php56-wddx
SUBDIR += php56-xml
SUBDIR += php56-xmlreader
SUBDIR += php56-xmlwriter
SUBDIR += php56-xsl
SUBDIR += php70-ctype
SUBDIR += php70-dom
SUBDIR += php70-pspell
SUBDIR += php70-simplexml
SUBDIR += php70-wddx
SUBDIR += php70-xml
SUBDIR += php70-xmlreader
SUBDIR += php70-xmlwriter
SUBDIR += php70-xsl
SUBDIR += plover
SUBDIR += po4a
SUBDIR += pocketreader
SUBDIR += pod2mdoc
SUBDIR += pootle
SUBDIR += popup
SUBDIR += popup-stacks
SUBDIR += ppower4
SUBDIR += print-n-times
SUBDIR += pugixml
SUBDIR += pure-csv
SUBDIR += pure-xml
SUBDIR += py-Chameleon
SUBDIR += py-MarkupSafe
SUBDIR += py-Tempita
SUBDIR += py-acora
SUBDIR += py-alabaster
SUBDIR += py-asv
SUBDIR += py-bugzillatools
SUBDIR += py-chardet
SUBDIR += py-cloud_sptheme
SUBDIR += py-creole
SUBDIR += py-curator
SUBDIR += py-dbfread
SUBDIR += py-diff-match-patch
SUBDIR += py-docutils
SUBDIR += py-dsv
SUBDIR += py-elasticsearch-dsl-py
SUBDIR += py-elasticsearch-py
SUBDIR += py-elib.intl
SUBDIR += py-empy
SUBDIR += py-enchant
SUBDIR += py-errorhandler
SUBDIR += py-et_xmlfile
SUBDIR += py-excelerator
SUBDIR += py-feedparser
SUBDIR += py-genshi
SUBDIR += py-hexdump
SUBDIR += py-html2text
SUBDIR += py-hyperestraier-python
SUBDIR += py-hypua2jamo
SUBDIR += py-jaxml
SUBDIR += py-junit-xml
SUBDIR += py-libtre
SUBDIR += py-libxml2
SUBDIR += py-libxslt
SUBDIR += py-ltxml
SUBDIR += py-mako
SUBDIR += py-markdown
SUBDIR += py-markdown2
SUBDIR += py-mistune
SUBDIR += py-mwparserfromhell
SUBDIR += py-nltk
SUBDIR += py-openpyxl
SUBDIR += py-paragrep
SUBDIR += py-pdfminer
SUBDIR += py-pss
SUBDIR += py-pyctpp2
SUBDIR += py-pyelasticsearch
SUBDIR += py-pyes
SUBDIR += py-pygments
SUBDIR += py-pygtail
SUBDIR += py-pyhwp
SUBDIR += py-pyphen
SUBDIR += py-pyscss
SUBDIR += py-pysrt
SUBDIR += py-pystache
SUBDIR += py-pystemmer
SUBDIR += py-python-augeas
SUBDIR += py-python-docx
SUBDIR += py-python-gettext
SUBDIR += py-pytidylib
SUBDIR += py-pyx12
SUBDIR += py-qrcode
SUBDIR += py-qt4-xml
SUBDIR += py-qt4-xmlpatterns
SUBDIR += py-qt5-xml
SUBDIR += py-qt5-xmlpatterns
SUBDIR += py-rdflib
SUBDIR += py-regex
SUBDIR += py-reverend
SUBDIR += py-rss2gen
SUBDIR += py-rst2html5
SUBDIR += py-rstyoutube
SUBDIR += py-rxp
SUBDIR += py-sgrep
SUBDIR += py-snowballstemmer
SUBDIR += py-sparqlwrapper
SUBDIR += py-sphinx
SUBDIR += py-sphinx-intl
SUBDIR += py-sphinx-me
SUBDIR += py-sphinx_numfig
SUBDIR += py-sphinx_rtd_theme
SUBDIR += py-sphinx_wikipedia
SUBDIR += py-sphinxcontrib-adadomain
SUBDIR += py-sphinxcontrib-bitbucket
SUBDIR += py-sphinxcontrib-httpdomain
SUBDIR += py-sphinxcontrib-programoutput
SUBDIR += py-syck
SUBDIR += py-texttable
SUBDIR += py-tinycss
SUBDIR += py-toronado
SUBDIR += py-trans
SUBDIR += py-transifex-client
SUBDIR += py-translationstring
SUBDIR += py-tvgrab
SUBDIR += py-twistedLore
SUBDIR += py-whoosh
SUBDIR += py-wicked
SUBDIR += py-wordnet
SUBDIR += py-wstools
SUBDIR += py-wtforms
SUBDIR += py-xlrd
SUBDIR += py-xlsxwriter
SUBDIR += py-xlutils
SUBDIR += py-xlwriter
SUBDIR += py-xlwt
SUBDIR += py-xmltv
SUBDIR += py-zope.app.i18n
SUBDIR += py-zope.app.locales
SUBDIR += py-zope.i18nmessageid
SUBDIR += py-zope.structuredtext
SUBDIR += py-zope.tal
SUBDIR += py-zpt
SUBDIR += py2html
SUBDIR += py3-MarkupSafe
SUBDIR += py3-chardet
SUBDIR += py3-libxml2
SUBDIR += pychm
SUBDIR += qprint
SUBDIR += qstardict
SUBDIR += qt4-xml
SUBDIR += qt4-xmlpatterns
SUBDIR += qt4-xmlpatterns-tool
SUBDIR += qt5-xml
SUBDIR += qt5-xmlpatterns
SUBDIR += qu-aspell
SUBDIR += queequeg
SUBDIR += rand
SUBDIR += randlm
SUBDIR += rapidxml
SUBDIR += raptor
SUBDIR += raptor2
SUBDIR += rarian
SUBDIR += rasqal
SUBDIR += re_graph
SUBDIR += redet
SUBDIR += redland
SUBDIR += redland-bindings
SUBDIR += refdb
SUBDIR += reflex
SUBDIR += replaceit
SUBDIR += resume
SUBDIR += resume-extensions
SUBDIR += rfcdiff
SUBDIR += ripole
SUBDIR += rl
SUBDIR += rman
SUBDIR += rnv
SUBDIR += ro-aspell
SUBDIR += ro-hunspell
SUBDIR += ro-hyphen
SUBDIR += ro-mythes
SUBDIR += rot
SUBDIR += rss2html
SUBDIR += rtf2html
SUBDIR += rtfreader
SUBDIR += rtfx
SUBDIR += rubber
SUBDIR += ruby-deplate
SUBDIR += ruby-escape
SUBDIR += ruby-format
SUBDIR += ruby-htmlrepair
SUBDIR += ruby-htmlsplit
SUBDIR += ruby-htree
SUBDIR += ruby-rd-mode.el
SUBDIR += ruby-rdtool
SUBDIR += ruby-rss
SUBDIR += ruby-rss.alt
SUBDIR += ruby-rttool
SUBDIR += ruby-sary
SUBDIR += ruby-xml-configfile
SUBDIR += ruby-xmlparser
SUBDIR += ruby-xmlscan
SUBDIR += rubygem-actionpack-xml_parser
SUBDIR += rubygem-albino
SUBDIR += rubygem-amatch
SUBDIR += rubygem-asciidoctor
SUBDIR += rubygem-autoprefixer-rails
SUBDIR += rubygem-babosa
SUBDIR += rubygem-charlock_holmes
SUBDIR += rubygem-coderay
SUBDIR += rubygem-colorator
SUBDIR += rubygem-colored
SUBDIR += rubygem-compass
SUBDIR += rubygem-compass-core
SUBDIR += rubygem-compass-import-once
SUBDIR += rubygem-compass-rails
SUBDIR += rubygem-creole
SUBDIR += rubygem-css_parser
SUBDIR += rubygem-cssmin
SUBDIR += rubygem-diff-lcs
SUBDIR += rubygem-diffy
SUBDIR += rubygem-elasticsearch
SUBDIR += rubygem-elasticsearch-api
SUBDIR += rubygem-elasticsearch-transport
SUBDIR += rubygem-emot
SUBDIR += rubygem-escape_utils
SUBDIR += rubygem-escape_utils-rails4
SUBDIR += rubygem-ezamar
SUBDIR += rubygem-fast_xs
SUBDIR += rubygem-fast_xs073
SUBDIR += rubygem-ferret
SUBDIR += rubygem-fog-xml
SUBDIR += rubygem-gemoji
SUBDIR += rubygem-gherkin
SUBDIR += rubygem-github-linguist
SUBDIR += rubygem-github-markdown
SUBDIR += rubygem-github-markup
SUBDIR += rubygem-gitlab-grit
SUBDIR += rubygem-gitlab-linguist
SUBDIR += rubygem-heredoc_unindent
SUBDIR += rubygem-hikidoc
SUBDIR += rubygem-html-pipeline
SUBDIR += rubygem-html-pipeline-gitlab
SUBDIR += rubygem-html-pipeline1
SUBDIR += rubygem-htmlentities
SUBDIR += rubygem-ini
SUBDIR += rubygem-itextomml
SUBDIR += rubygem-jekyll-assets
SUBDIR += rubygem-jekyll-feed
SUBDIR += rubygem-jekyll-gist
SUBDIR += rubygem-jekyll-mentions
SUBDIR += rubygem-jekyll-paginate
SUBDIR += rubygem-jekyll-redirect-from
SUBDIR += rubygem-jekyll-sass-converter
SUBDIR += rubygem-jekyll-sitemap
SUBDIR += rubygem-jemoji
SUBDIR += rubygem-jsmin
SUBDIR += rubygem-kramdown
SUBDIR += rubygem-kwalify
SUBDIR += rubygem-libxml-ruby
SUBDIR += rubygem-linguistics
SUBDIR += rubygem-liquid
SUBDIR += rubygem-liquid2
SUBDIR += rubygem-loggability
SUBDIR += rubygem-loofah
SUBDIR += rubygem-ltsv
SUBDIR += rubygem-markaby
SUBDIR += rubygem-multi_xml
SUBDIR += rubygem-nokogiri
SUBDIR += rubygem-nokogiri-diff
SUBDIR += rubygem-nokogiri14
SUBDIR += rubygem-nokogumbo
SUBDIR += rubygem-octopress-escape-code
SUBDIR += rubygem-opml
SUBDIR += rubygem-org-ruby
SUBDIR += rubygem-parslet
SUBDIR += rubygem-phone
SUBDIR += rubygem-pretty-xml
SUBDIR += rubygem-rails-dom-testing
SUBDIR += rubygem-rails-html-sanitizer
SUBDIR += rubygem-rak
SUBDIR += rubygem-rchardet
SUBDIR += rubygem-rdiscount
SUBDIR += rubygem-rdtool
SUBDIR += rubygem-redcarpet
SUBDIR += rubygem-reverse_markdown
SUBDIR += rubygem-ri_cal
SUBDIR += rubygem-rich
SUBDIR += rubygem-rmmseg-cpp
SUBDIR += rubygem-rouge
SUBDIR += rubygem-rttool
SUBDIR += rubygem-ruby-augeas
SUBDIR += rubygem-ruby-xslt
SUBDIR += rubygem-rubypants
SUBDIR += rubygem-rugments
SUBDIR += rubygem-sanitize
SUBDIR += rubygem-sass
SUBDIR += rubygem-sass-rails
SUBDIR += rubygem-sass-rails4
SUBDIR += rubygem-sass-rails5
SUBDIR += rubygem-sass32
SUBDIR += rubygem-sax-machine
SUBDIR += rubygem-scss_lint
SUBDIR += rubygem-shell2html
SUBDIR += rubygem-simplecov-html
SUBDIR += rubygem-spreadsheet
SUBDIR += rubygem-stamp
SUBDIR += rubygem-string-scrub
SUBDIR += rubygem-syntax
SUBDIR += rubygem-termcolor
SUBDIR += rubygem-terminal-table
SUBDIR += rubygem-text
SUBDIR += rubygem-tidy
SUBDIR += rubygem-twitter-text
SUBDIR += rubygem-unf
SUBDIR += rubygem-unf_ext
SUBDIR += rubygem-version_sorter
SUBDIR += rubygem-wikicloth
SUBDIR += rubygem-xml-simple
SUBDIR += rubygem-ya2yaml
SUBDIR += rubygem-yard
SUBDIR += rubygem-yard-chef
SUBDIR += rubygem-zmq
SUBDIR += rw-aspell
SUBDIR += rxp
SUBDIR += s5
SUBDIR += sablotron
SUBDIR += sagasu
SUBDIR += sansi
SUBDIR += sarep
SUBDIR += sary
SUBDIR += sassc
SUBDIR += saxon
SUBDIR += saxon-devel
SUBDIR += saxon-he
SUBDIR += sc-aspell
SUBDIR += scew
SUBDIR += scim
SUBDIR += scim-bridge
SUBDIR += scim-bridge-qt4
SUBDIR += scim-input-pad
SUBDIR += scim-kmfl-imengine
SUBDIR += scim-m17n
SUBDIR += scim-openvanilla
SUBDIR += scim-table-imengine
SUBDIR += scr2txt
SUBDIR += scrollkeeper
SUBDIR += scss
SUBDIR += sdcv
SUBDIR += sdf
SUBDIR += sdocbook-xml
SUBDIR += sdom
SUBDIR += senna
SUBDIR += sgmlformat
SUBDIR += sgmls
SUBDIR += sgrep
SUBDIR += sgrep2
SUBDIR += sigil
SUBDIR += silvercity
SUBDIR += simplexml
SUBDIR += sk-aspell
SUBDIR += sk-hunspell
SUBDIR += sk-hyphen
SUBDIR += sk-mythes
SUBDIR += sl-aspell
SUBDIR += sl-hyphen
SUBDIR += sl-mythes
SUBDIR += slides
SUBDIR += smi
SUBDIR += smu
SUBDIR += so-hunspell
SUBDIR += soothsayer
SUBDIR += soprano
SUBDIR += source-highlight
SUBDIR += sowing
SUBDIR += spellutils
SUBDIR += sphinxsearch
SUBDIR += sphinxsearch-devel
SUBDIR += spiff
SUBDIR += sq-hunspell
SUBDIR += sr-aspell
SUBDIR += sr-hunspell
SUBDIR += srilm
SUBDIR += ss-hunspell
SUBDIR += ssddiff
SUBDIR += stardict-dict-fa_IR
SUBDIR += stardict-dictd_mova
SUBDIR += stardict-quick
SUBDIR += stardict-rptts
SUBDIR += stardict3
SUBDIR += supercat
SUBDIR += sv-aspell
SUBDIR += sv-hunspell
SUBDIR += sv-hyphen
SUBDIR += sv-mythes
SUBDIR += svn2cl
SUBDIR += sw-aspell
SUBDIR += sxml
SUBDIR += syck
SUBDIR += ta-aspell
SUBDIR += tagsoup
SUBDIR += tclExpat
SUBDIR += tdhkit
SUBDIR += te-aspell
SUBDIR += te-hunspell
SUBDIR += teckit
SUBDIR += templates_parser
SUBDIR += tet-aspell
SUBDIR += tex2im
SUBDIR += texi2db
SUBDIR += texi2html
SUBDIR += texi2mdoc
SUBDIR += textogif
SUBDIR += the_silver_searcher
SUBDIR += ti-hunspell
SUBDIR += tidyp
SUBDIR += tinyxml
SUBDIR += tinyxml2
SUBDIR += tk-aspell
SUBDIR += tk-hunspell
SUBDIR += tkdiff
SUBDIR += tkxmlive
SUBDIR += tl-aspell
SUBDIR += tn-aspell
SUBDIR += tn-hunspell
SUBDIR += tnef2txt
SUBDIR += tokyodystopia
SUBDIR += topic
SUBDIR += tr-aspell
SUBDIR += tralics
SUBDIR += trang
SUBDIR += translate-toolkit
SUBDIR += ts-hunspell
SUBDIR += tth
SUBDIR += turboxsl
SUBDIR += txt2html
SUBDIR += txt2man
SUBDIR += txt2tags
SUBDIR += uchardet
SUBDIR += uim
SUBDIR += uim-el
SUBDIR += uim-gtk
SUBDIR += uim-gtk3
SUBDIR += uim-kde4
SUBDIR += uim-m17nlib
SUBDIR += uim-qt4
SUBDIR += uml2svg
SUBDIR += uncrustify
SUBDIR += uni2ascii
SUBDIR += unoconv
SUBDIR += unroff
SUBDIR += unrtf
SUBDIR += urlview
SUBDIR += utf8proc
SUBDIR += uz-aspell
SUBDIR += uz-hunspell
SUBDIR += vbindiff
SUBDIR += ve-hunspell
SUBDIR += wa-aspell
SUBDIR += wa-hunspell
SUBDIR += wbxml2
SUBDIR += wdiff
SUBDIR += webcpp
SUBDIR += website
SUBDIR += weka
SUBDIR += wiggle
SUBDIR += word2x
SUBDIR += wordnet
SUBDIR += words
SUBDIR += wv
SUBDIR += wv2
SUBDIR += xalan-c
SUBDIR += xalan-j
SUBDIR += xerces-c3
SUBDIR += xerces-j
SUBDIR += xfce4-dict-plugin
SUBDIR += xh-hunspell
SUBDIR += xhtml
SUBDIR += xhtml-11
SUBDIR += xhtml-basic
SUBDIR += xhtml-modularization
SUBDIR += xhtml1-xsd
SUBDIR += xincluder
SUBDIR += xlhtml
SUBDIR += xlreader
SUBDIR += xml-commons
SUBDIR += xml-format
SUBDIR += xml-i18n-tools
SUBDIR += xml-lite.el
SUBDIR += xml-parse.el
SUBDIR += xml2
SUBDIR += xml2rfc
SUBDIR += xml_ez_out
SUBDIR += xmlada
SUBDIR += xmlcatmgr
SUBDIR += xmlcharent
SUBDIR += xmldiff
SUBDIR += xmlenc
SUBDIR += xmlformat
SUBDIR += xmlgen
SUBDIR += xmlindent
SUBDIR += xmlppm
SUBDIR += xmlprpr
SUBDIR += xmlroff
SUBDIR += xmlstarlet
SUBDIR += xmlto
SUBDIR += xmlwrapp
SUBDIR += xom
SUBDIR += xorg-sgml-doctools
SUBDIR += xp
SUBDIR += xqilla
SUBDIR += xslide.el
SUBDIR += xslint
SUBDIR += xstream
SUBDIR += xsv
SUBDIR += xt
SUBDIR += xwindiff
SUBDIR += xxdiff
SUBDIR += xxdiff-scripts
SUBDIR += y2l
SUBDIR += yali
SUBDIR += yamcha
SUBDIR += yaml-mode.el
SUBDIR += yelp-tools
SUBDIR += yelp-xsl
SUBDIR += yi-aspell
SUBDIR += yi-hunspell
SUBDIR += yodl
SUBDIR += yould
SUBDIR += zenxml
SUBDIR += zorba
SUBDIR += zsh-syntax-highlighting
SUBDIR += zu-aspell
SUBDIR += zu-hunspell
.include <bsd.port.subdir.mk>
|