1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name gtamacfonts |
---|
5 | version 1.0 |
---|
6 | categories tex |
---|
7 | maintainers tristan@cs.dartmouth.edu |
---|
8 | description Support for native Mac fonts in TeX |
---|
9 | long_description \ |
---|
10 | gtamacfonts provides definitions for some of the common Mac \ |
---|
11 | fonts in TeX: Gill Sans, Optima, Hoefler, Didot, Baskerville, \ |
---|
12 | American Typewriter, Futura, Lucida Grande, Verdana, Georgia \ |
---|
13 | and Helvetica Neue. |
---|
14 | |
---|
15 | platforms darwin |
---|
16 | |
---|
17 | homepage http://ii2.sourceforge.net/tex-index.html |
---|
18 | master_sites http://ftp.nluug.nl/comp/macosx/ |
---|
19 | |
---|
20 | distfiles ${name}.tar.bz2 |
---|
21 | |
---|
22 | checksums md5 cc2cc9def8cbda07e87a120c08438687 |
---|
23 | |
---|
24 | depends_lib port:teTeX port:fondu |
---|
25 | |
---|
26 | use_configure no |
---|
27 | |
---|
28 | extract.cmd bunzip2 |
---|
29 | |
---|
30 | set texfonts [list \ |
---|
31 | gillsans \ |
---|
32 | optima \ |
---|
33 | hoefler \ |
---|
34 | didot \ |
---|
35 | baskerville \ |
---|
36 | americantypewriter \ |
---|
37 | futura \ |
---|
38 | lucidagrande \ |
---|
39 | verdana \ |
---|
40 | georgia \ |
---|
41 | helveticaneue] |
---|
42 | |
---|
43 | set fontfiles [list \ |
---|
44 | "/Library/Fonts/GillSans.dfont" \ |
---|
45 | "/Library/Fonts/Optima.dfont" \ |
---|
46 | "/Library/Fonts/Hoefler Text.dfont" \ |
---|
47 | "/Library/Fonts/Didot.dfont" \ |
---|
48 | "/Library/Fonts/Baskerville.dfont" \ |
---|
49 | "/Library/Fonts/AmericanTypewriter.dfont" \ |
---|
50 | "/Library/Fonts/Futura.dfont" \ |
---|
51 | "/System/Library/Fonts/LucidaGrande.dfont" \ |
---|
52 | "/Library/Fonts/Verdana" \ |
---|
53 | "/Library/Fonts/Georgia" \ |
---|
54 | "/Library/Fonts/HelveticaNeue.dfont" ] |
---|
55 | |
---|
56 | build { |
---|
57 | set i 0 |
---|
58 | while {$i < [llength $texfonts]} { |
---|
59 | set font [lindex $texfonts $i] |
---|
60 | set fontfile [lindex $fontfiles $i] |
---|
61 | file mkdir ${workpath}/fonts/truetype/${name}/${font} |
---|
62 | cd ${workpath}/fonts/truetype/${name}/${font} |
---|
63 | system "${prefix}/bin/fondu \"${fontfile}\"" |
---|
64 | incr i 1 |
---|
65 | } |
---|
66 | } |
---|
67 | |
---|
68 | destroot { |
---|
69 | file mkdir ${destroot}/${prefix}/share/texmf-dist |
---|
70 | system "mv ${workpath}/{doc,fonts,tex} ${destroot}/${prefix}/share/texmf-dist" |
---|
71 | } |
---|
72 | |
---|
73 | post-activate { |
---|
74 | system "${prefix}/bin/fmtutil-sys --all" |
---|
75 | system "${prefix}/bin/mktexlsr" |
---|
76 | system "${prefix}/bin/updmap-sys --enable Map gtamacfonts.map" |
---|
77 | } |
---|
78 | |
---|
79 | |
---|