├── .gitignore ├── 7t.enc ├── COPYING ├── INSTALL ├── Makefile.am ├── NEWS.md ├── ONEWS ├── README.md ├── bootstrap.sh ├── cfftot1 ├── Makefile.am ├── cfftot1.1 ├── cfftot1.cc ├── maket1font.cc └── maket1font.hh ├── configure.ac ├── glyphlist.txt ├── include ├── config.h ├── efont │ ├── afm.hh │ ├── afmparse.hh │ ├── afmw.hh │ ├── amfm.hh │ ├── cff.hh │ ├── encoding.hh │ ├── findmet.hh │ ├── metrics.hh │ ├── otf.hh │ ├── otfcmap.hh │ ├── otfdata.hh │ ├── otffvar.hh │ ├── otfgpos.hh │ ├── otfgsub.hh │ ├── otfname.hh │ ├── otfos2.hh │ ├── otfpost.hh │ ├── pairop.hh │ ├── psres.hh │ ├── t1bounds.hh │ ├── t1cs.hh │ ├── t1csgen.hh │ ├── t1font.hh │ ├── t1interp.hh │ ├── t1item.hh │ ├── t1mm.hh │ ├── t1rw.hh │ ├── t1unparser.hh │ ├── ttfcs.hh │ ├── ttfhead.hh │ └── ttfkern.hh └── lcdf │ ├── bezier.hh │ ├── clp.h │ ├── error.hh │ ├── filename.hh │ ├── globmatch.hh │ ├── hashcode.hh │ ├── hashmap.cc │ ├── hashmap.hh │ ├── inttypes.h │ ├── landmark.hh │ ├── md5.h │ ├── permstr.hh │ ├── point.hh │ ├── slurper.hh │ ├── straccum.hh │ ├── string.hh │ ├── strtonum.h │ ├── transform.hh │ ├── vector.cc │ └── vector.hh ├── lcdf-typetools.spec ├── libefont ├── Makefile.am ├── afm.cc ├── afmparse.cc ├── afmw.cc ├── amfm.cc ├── cff.cc ├── encoding.cc ├── findmet.cc ├── metrics.cc ├── otf.cc ├── otfcmap.cc ├── otfdata.cc ├── otfdescrip.cc ├── otffvar.cc ├── otfgpos.cc ├── otfgsub.cc ├── otfname.cc ├── otfos2.cc ├── otfpost.cc ├── pairop.cc ├── psres.cc ├── t1bounds.cc ├── t1cs.cc ├── t1csgen.cc ├── t1font.cc ├── t1fontskel.cc ├── t1interp.cc ├── t1item.cc ├── t1mm.cc ├── t1rw.cc ├── t1unparser.cc ├── ttfcs.cc ├── ttfhead.cc └── ttfkern.cc ├── liblcdf ├── Makefile.am ├── bezier.cc ├── clp.c ├── error.cc ├── filename.cc ├── fixlibc.c ├── globmatch.cc ├── landmark.cc ├── md5.c ├── permstr.cc ├── point.cc ├── slurper.cc ├── straccum.cc ├── string.cc ├── strtonum.c ├── transform.cc └── vectorv.cc ├── m4 └── lcdf-typetools.m4 ├── make-glyphtounicode.pl ├── mkuniprop.pl ├── mmafm ├── Makefile.am ├── main.cc └── mmafm.1 ├── mmpfb ├── Makefile.am ├── main.cc ├── mmpfb.1 ├── myfont.cc ├── myfont.hh ├── t1minimize.cc ├── t1minimize.hh ├── t1rewrit.cc └── t1rewrit.hh ├── otf.com ├── otfinfo ├── Makefile.am ├── otfinfo.1 └── otfinfo.cc ├── otftotfm ├── Makefile.am ├── automatic.cc ├── automatic.hh ├── dvipsencoding.cc ├── dvipsencoding.hh ├── glyphfilter.cc ├── glyphfilter.hh ├── kpseinterface.c ├── kpseinterface.h ├── metrics.cc ├── metrics.hh ├── otftotfm.1 ├── otftotfm.cc ├── otftotfm.hh ├── secondary.cc ├── secondary.hh ├── setting.hh ├── uniprop.cc ├── uniprop.hh ├── util.cc └── util.hh ├── showings ├── .gitignore ├── Makefile ├── MinionPro-It-features.tex ├── MinionPro-Regular-features.tex ├── WarnockPro-It-features.tex ├── WarnockPro-Regular-features.tex ├── features.tex └── install.sh ├── t1dotlessj ├── Makefile.am ├── t1dotlessj.1 └── t1dotlessj.cc ├── t1lint ├── Makefile.am ├── cscheck.cc ├── cscheck.hh ├── t1lint.1 └── t1lint.cc ├── t1rawafm ├── Makefile.am ├── t1rawafm.1 └── t1rawafm.cc ├── t1reencode ├── Makefile.am ├── checkencs.pl ├── t1reencode.1 ├── t1reencode.cc ├── util.cc └── util.hh ├── t1testpage ├── Makefile.am ├── t1testpage.1 └── t1testpage.cc ├── texglyphlist-g2u.txt ├── texglyphlist.txt └── ttftotype42 ├── Makefile.am ├── ttftotype42.1 └── ttftotype42.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/.gitignore -------------------------------------------------------------------------------- /7t.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/7t.enc -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/NEWS.md -------------------------------------------------------------------------------- /ONEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/ONEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | autoreconf -i 4 | -------------------------------------------------------------------------------- /cfftot1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/cfftot1/Makefile.am -------------------------------------------------------------------------------- /cfftot1/cfftot1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/cfftot1/cfftot1.1 -------------------------------------------------------------------------------- /cfftot1/cfftot1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/cfftot1/cfftot1.cc -------------------------------------------------------------------------------- /cfftot1/maket1font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/cfftot1/maket1font.cc -------------------------------------------------------------------------------- /cfftot1/maket1font.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/cfftot1/maket1font.hh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/configure.ac -------------------------------------------------------------------------------- /glyphlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/glyphlist.txt -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/config.h -------------------------------------------------------------------------------- /include/efont/afm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/afm.hh -------------------------------------------------------------------------------- /include/efont/afmparse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/afmparse.hh -------------------------------------------------------------------------------- /include/efont/afmw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/afmw.hh -------------------------------------------------------------------------------- /include/efont/amfm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/amfm.hh -------------------------------------------------------------------------------- /include/efont/cff.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/cff.hh -------------------------------------------------------------------------------- /include/efont/encoding.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/encoding.hh -------------------------------------------------------------------------------- /include/efont/findmet.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/findmet.hh -------------------------------------------------------------------------------- /include/efont/metrics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/metrics.hh -------------------------------------------------------------------------------- /include/efont/otf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otf.hh -------------------------------------------------------------------------------- /include/efont/otfcmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfcmap.hh -------------------------------------------------------------------------------- /include/efont/otfdata.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfdata.hh -------------------------------------------------------------------------------- /include/efont/otffvar.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otffvar.hh -------------------------------------------------------------------------------- /include/efont/otfgpos.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfgpos.hh -------------------------------------------------------------------------------- /include/efont/otfgsub.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfgsub.hh -------------------------------------------------------------------------------- /include/efont/otfname.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfname.hh -------------------------------------------------------------------------------- /include/efont/otfos2.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfos2.hh -------------------------------------------------------------------------------- /include/efont/otfpost.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/otfpost.hh -------------------------------------------------------------------------------- /include/efont/pairop.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/pairop.hh -------------------------------------------------------------------------------- /include/efont/psres.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/psres.hh -------------------------------------------------------------------------------- /include/efont/t1bounds.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1bounds.hh -------------------------------------------------------------------------------- /include/efont/t1cs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1cs.hh -------------------------------------------------------------------------------- /include/efont/t1csgen.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1csgen.hh -------------------------------------------------------------------------------- /include/efont/t1font.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1font.hh -------------------------------------------------------------------------------- /include/efont/t1interp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1interp.hh -------------------------------------------------------------------------------- /include/efont/t1item.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1item.hh -------------------------------------------------------------------------------- /include/efont/t1mm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1mm.hh -------------------------------------------------------------------------------- /include/efont/t1rw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1rw.hh -------------------------------------------------------------------------------- /include/efont/t1unparser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/t1unparser.hh -------------------------------------------------------------------------------- /include/efont/ttfcs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/ttfcs.hh -------------------------------------------------------------------------------- /include/efont/ttfhead.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/ttfhead.hh -------------------------------------------------------------------------------- /include/efont/ttfkern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/efont/ttfkern.hh -------------------------------------------------------------------------------- /include/lcdf/bezier.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/bezier.hh -------------------------------------------------------------------------------- /include/lcdf/clp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/clp.h -------------------------------------------------------------------------------- /include/lcdf/error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/error.hh -------------------------------------------------------------------------------- /include/lcdf/filename.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/filename.hh -------------------------------------------------------------------------------- /include/lcdf/globmatch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/globmatch.hh -------------------------------------------------------------------------------- /include/lcdf/hashcode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/hashcode.hh -------------------------------------------------------------------------------- /include/lcdf/hashmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/hashmap.cc -------------------------------------------------------------------------------- /include/lcdf/hashmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/hashmap.hh -------------------------------------------------------------------------------- /include/lcdf/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/inttypes.h -------------------------------------------------------------------------------- /include/lcdf/landmark.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/landmark.hh -------------------------------------------------------------------------------- /include/lcdf/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/md5.h -------------------------------------------------------------------------------- /include/lcdf/permstr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/permstr.hh -------------------------------------------------------------------------------- /include/lcdf/point.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/point.hh -------------------------------------------------------------------------------- /include/lcdf/slurper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/slurper.hh -------------------------------------------------------------------------------- /include/lcdf/straccum.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/straccum.hh -------------------------------------------------------------------------------- /include/lcdf/string.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/string.hh -------------------------------------------------------------------------------- /include/lcdf/strtonum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/strtonum.h -------------------------------------------------------------------------------- /include/lcdf/transform.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/transform.hh -------------------------------------------------------------------------------- /include/lcdf/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/vector.cc -------------------------------------------------------------------------------- /include/lcdf/vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/include/lcdf/vector.hh -------------------------------------------------------------------------------- /lcdf-typetools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/lcdf-typetools.spec -------------------------------------------------------------------------------- /libefont/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/Makefile.am -------------------------------------------------------------------------------- /libefont/afm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/afm.cc -------------------------------------------------------------------------------- /libefont/afmparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/afmparse.cc -------------------------------------------------------------------------------- /libefont/afmw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/afmw.cc -------------------------------------------------------------------------------- /libefont/amfm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/amfm.cc -------------------------------------------------------------------------------- /libefont/cff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/cff.cc -------------------------------------------------------------------------------- /libefont/encoding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/encoding.cc -------------------------------------------------------------------------------- /libefont/findmet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/findmet.cc -------------------------------------------------------------------------------- /libefont/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/metrics.cc -------------------------------------------------------------------------------- /libefont/otf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otf.cc -------------------------------------------------------------------------------- /libefont/otfcmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfcmap.cc -------------------------------------------------------------------------------- /libefont/otfdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfdata.cc -------------------------------------------------------------------------------- /libefont/otfdescrip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfdescrip.cc -------------------------------------------------------------------------------- /libefont/otffvar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otffvar.cc -------------------------------------------------------------------------------- /libefont/otfgpos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfgpos.cc -------------------------------------------------------------------------------- /libefont/otfgsub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfgsub.cc -------------------------------------------------------------------------------- /libefont/otfname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfname.cc -------------------------------------------------------------------------------- /libefont/otfos2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfos2.cc -------------------------------------------------------------------------------- /libefont/otfpost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/otfpost.cc -------------------------------------------------------------------------------- /libefont/pairop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/pairop.cc -------------------------------------------------------------------------------- /libefont/psres.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/psres.cc -------------------------------------------------------------------------------- /libefont/t1bounds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1bounds.cc -------------------------------------------------------------------------------- /libefont/t1cs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1cs.cc -------------------------------------------------------------------------------- /libefont/t1csgen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1csgen.cc -------------------------------------------------------------------------------- /libefont/t1font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1font.cc -------------------------------------------------------------------------------- /libefont/t1fontskel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1fontskel.cc -------------------------------------------------------------------------------- /libefont/t1interp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1interp.cc -------------------------------------------------------------------------------- /libefont/t1item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1item.cc -------------------------------------------------------------------------------- /libefont/t1mm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1mm.cc -------------------------------------------------------------------------------- /libefont/t1rw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1rw.cc -------------------------------------------------------------------------------- /libefont/t1unparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/t1unparser.cc -------------------------------------------------------------------------------- /libefont/ttfcs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/ttfcs.cc -------------------------------------------------------------------------------- /libefont/ttfhead.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/ttfhead.cc -------------------------------------------------------------------------------- /libefont/ttfkern.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/libefont/ttfkern.cc -------------------------------------------------------------------------------- /liblcdf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/Makefile.am -------------------------------------------------------------------------------- /liblcdf/bezier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/bezier.cc -------------------------------------------------------------------------------- /liblcdf/clp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/clp.c -------------------------------------------------------------------------------- /liblcdf/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/error.cc -------------------------------------------------------------------------------- /liblcdf/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/filename.cc -------------------------------------------------------------------------------- /liblcdf/fixlibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/fixlibc.c -------------------------------------------------------------------------------- /liblcdf/globmatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/globmatch.cc -------------------------------------------------------------------------------- /liblcdf/landmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/landmark.cc -------------------------------------------------------------------------------- /liblcdf/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/md5.c -------------------------------------------------------------------------------- /liblcdf/permstr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/permstr.cc -------------------------------------------------------------------------------- /liblcdf/point.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/point.cc -------------------------------------------------------------------------------- /liblcdf/slurper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/slurper.cc -------------------------------------------------------------------------------- /liblcdf/straccum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/straccum.cc -------------------------------------------------------------------------------- /liblcdf/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/string.cc -------------------------------------------------------------------------------- /liblcdf/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/strtonum.c -------------------------------------------------------------------------------- /liblcdf/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/transform.cc -------------------------------------------------------------------------------- /liblcdf/vectorv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/liblcdf/vectorv.cc -------------------------------------------------------------------------------- /m4/lcdf-typetools.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/m4/lcdf-typetools.m4 -------------------------------------------------------------------------------- /make-glyphtounicode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/make-glyphtounicode.pl -------------------------------------------------------------------------------- /mkuniprop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mkuniprop.pl -------------------------------------------------------------------------------- /mmafm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmafm/Makefile.am -------------------------------------------------------------------------------- /mmafm/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmafm/main.cc -------------------------------------------------------------------------------- /mmafm/mmafm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmafm/mmafm.1 -------------------------------------------------------------------------------- /mmpfb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/Makefile.am -------------------------------------------------------------------------------- /mmpfb/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/main.cc -------------------------------------------------------------------------------- /mmpfb/mmpfb.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/mmpfb.1 -------------------------------------------------------------------------------- /mmpfb/myfont.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/myfont.cc -------------------------------------------------------------------------------- /mmpfb/myfont.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/myfont.hh -------------------------------------------------------------------------------- /mmpfb/t1minimize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/t1minimize.cc -------------------------------------------------------------------------------- /mmpfb/t1minimize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/t1minimize.hh -------------------------------------------------------------------------------- /mmpfb/t1rewrit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/t1rewrit.cc -------------------------------------------------------------------------------- /mmpfb/t1rewrit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/mmpfb/t1rewrit.hh -------------------------------------------------------------------------------- /otf.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otf.com -------------------------------------------------------------------------------- /otfinfo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otfinfo/Makefile.am -------------------------------------------------------------------------------- /otfinfo/otfinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otfinfo/otfinfo.1 -------------------------------------------------------------------------------- /otfinfo/otfinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otfinfo/otfinfo.cc -------------------------------------------------------------------------------- /otftotfm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/Makefile.am -------------------------------------------------------------------------------- /otftotfm/automatic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/automatic.cc -------------------------------------------------------------------------------- /otftotfm/automatic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/automatic.hh -------------------------------------------------------------------------------- /otftotfm/dvipsencoding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/dvipsencoding.cc -------------------------------------------------------------------------------- /otftotfm/dvipsencoding.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/dvipsencoding.hh -------------------------------------------------------------------------------- /otftotfm/glyphfilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/glyphfilter.cc -------------------------------------------------------------------------------- /otftotfm/glyphfilter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/glyphfilter.hh -------------------------------------------------------------------------------- /otftotfm/kpseinterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/kpseinterface.c -------------------------------------------------------------------------------- /otftotfm/kpseinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/kpseinterface.h -------------------------------------------------------------------------------- /otftotfm/metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/metrics.cc -------------------------------------------------------------------------------- /otftotfm/metrics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/metrics.hh -------------------------------------------------------------------------------- /otftotfm/otftotfm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/otftotfm.1 -------------------------------------------------------------------------------- /otftotfm/otftotfm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/otftotfm.cc -------------------------------------------------------------------------------- /otftotfm/otftotfm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/otftotfm.hh -------------------------------------------------------------------------------- /otftotfm/secondary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/secondary.cc -------------------------------------------------------------------------------- /otftotfm/secondary.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/secondary.hh -------------------------------------------------------------------------------- /otftotfm/setting.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/setting.hh -------------------------------------------------------------------------------- /otftotfm/uniprop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/uniprop.cc -------------------------------------------------------------------------------- /otftotfm/uniprop.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/uniprop.hh -------------------------------------------------------------------------------- /otftotfm/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/util.cc -------------------------------------------------------------------------------- /otftotfm/util.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/otftotfm/util.hh -------------------------------------------------------------------------------- /showings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/.gitignore -------------------------------------------------------------------------------- /showings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/Makefile -------------------------------------------------------------------------------- /showings/MinionPro-It-features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/MinionPro-It-features.tex -------------------------------------------------------------------------------- /showings/MinionPro-Regular-features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/MinionPro-Regular-features.tex -------------------------------------------------------------------------------- /showings/WarnockPro-It-features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/WarnockPro-It-features.tex -------------------------------------------------------------------------------- /showings/WarnockPro-Regular-features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/WarnockPro-Regular-features.tex -------------------------------------------------------------------------------- /showings/features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/features.tex -------------------------------------------------------------------------------- /showings/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/showings/install.sh -------------------------------------------------------------------------------- /t1dotlessj/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1dotlessj/Makefile.am -------------------------------------------------------------------------------- /t1dotlessj/t1dotlessj.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1dotlessj/t1dotlessj.1 -------------------------------------------------------------------------------- /t1dotlessj/t1dotlessj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1dotlessj/t1dotlessj.cc -------------------------------------------------------------------------------- /t1lint/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1lint/Makefile.am -------------------------------------------------------------------------------- /t1lint/cscheck.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1lint/cscheck.cc -------------------------------------------------------------------------------- /t1lint/cscheck.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1lint/cscheck.hh -------------------------------------------------------------------------------- /t1lint/t1lint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1lint/t1lint.1 -------------------------------------------------------------------------------- /t1lint/t1lint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1lint/t1lint.cc -------------------------------------------------------------------------------- /t1rawafm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1rawafm/Makefile.am -------------------------------------------------------------------------------- /t1rawafm/t1rawafm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1rawafm/t1rawafm.1 -------------------------------------------------------------------------------- /t1rawafm/t1rawafm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1rawafm/t1rawafm.cc -------------------------------------------------------------------------------- /t1reencode/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1reencode/Makefile.am -------------------------------------------------------------------------------- /t1reencode/checkencs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1reencode/checkencs.pl -------------------------------------------------------------------------------- /t1reencode/t1reencode.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1reencode/t1reencode.1 -------------------------------------------------------------------------------- /t1reencode/t1reencode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1reencode/t1reencode.cc -------------------------------------------------------------------------------- /t1reencode/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1reencode/util.cc -------------------------------------------------------------------------------- /t1reencode/util.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1reencode/util.hh -------------------------------------------------------------------------------- /t1testpage/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1testpage/Makefile.am -------------------------------------------------------------------------------- /t1testpage/t1testpage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1testpage/t1testpage.1 -------------------------------------------------------------------------------- /t1testpage/t1testpage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/t1testpage/t1testpage.cc -------------------------------------------------------------------------------- /texglyphlist-g2u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/texglyphlist-g2u.txt -------------------------------------------------------------------------------- /texglyphlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/texglyphlist.txt -------------------------------------------------------------------------------- /ttftotype42/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/ttftotype42/Makefile.am -------------------------------------------------------------------------------- /ttftotype42/ttftotype42.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/ttftotype42/ttftotype42.1 -------------------------------------------------------------------------------- /ttftotype42/ttftotype42.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohler/lcdf-typetools/HEAD/ttftotype42/ttftotype42.cc --------------------------------------------------------------------------------