Ticket #11222: Portfile

File Portfile, 1.3 KB (added by master@…, 17 years ago)
Line 
1PortSystem 1.0
2name            lcdf-typetools
3version         2.48
4categories      print
5maintainers     master@iaas.msu.ru
6description     Tools for manipulating fonts
7
8long_description \
9                The LCDF Typetools package contains several programs for manipulating fonts. \
10                For PostScript-flavored OpenType fonts: \
11                        cfftot1 translates into PostScript Type 1 format, \
12                        otfinfo reports information, \
13                        otftotfm creates TeX font metrics and encodings. \
14                For Type 1 multiple master fonts: \
15                        mmafm creates an AFM file (font metrics), \
16                        mmpfb creates a normal, single-master font program. \
17                For PostScript Type 1 fonts: \
18                        t1dotlessj creates a new font whose only character is a dotless j, \
19                        t1lint checks Type 1 fonts for correctness, \
20                        t1reencode reencodes a font. \
21                For TrueType-flavored OpenType fonts: \
22                        ttftotype42 creates a Type 42 wrapper. \
23                 \
24                Variant kpathsea is to be used if TeX is installed.
25
26platforms       darwin
27
28homepage        http://www.lcdf.org/type/
29master_sites    http://www.lcdf.org/type
30
31checksums       md5 fe1a7553ed42d9d4a58a77ffe26393bc
32
33configure.env   CPPFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib"
34
35configure.args  --without-kpathsea
36
37variant kpathsea {
38        configure.args-delete --without-kpathsea
39        configure.args-append --with-kpathsea
40        depends_lib-append lib:libkpathsea:teTeX
41}