1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name ttfautohint |
---|
6 | version 1.7 |
---|
7 | description A library to autohint TrueType fonts |
---|
8 | long_description \ |
---|
9 | ttfautohint provides a 99% automated hinting process and a platform for \ |
---|
10 | finely hand-hinting the last 1%. It is ideal for web fonts and supports \ |
---|
11 | many scripts: Latin, Greek, Arabic, Devanagari, Hebrew, Khmer, Myanmar, \ |
---|
12 | Thai, and many more. |
---|
13 | |
---|
14 | homepage https://www.freetype.org/ttfautohint/ |
---|
15 | categories graphics fonts |
---|
16 | platforms darwin |
---|
17 | maintainers @tuffnatty |
---|
18 | license {freetype GPL-2} |
---|
19 | master_sites sourceforge:project/freetype/ttfautohint/${version} |
---|
20 | |
---|
21 | checksums rmd160 73f74ddab855cbe3b82d27216eabc410b07c4d9b \ |
---|
22 | sha256 3db94821e4edb3900b6533733d06731eb667f1e9c144bb70d1339de7ef4007f2 |
---|
23 | |
---|
24 | depends_build \ |
---|
25 | port:pkgconfig |
---|
26 | |
---|
27 | depends_lib \ |
---|
28 | port:freetype \ |
---|
29 | port:harfbuzz |
---|
30 | |
---|
31 | configure.args --with-doc=no --with-qt=no |
---|
32 | |
---|
33 | variant qt4 conflicts qt5 description {Enable GUI based on QT 4} { |
---|
34 | PortGroup qt4 1.0 |
---|
35 | configure.args-replace --with-qt=no --with-qt=${qt_bins_dir} |
---|
36 | } |
---|
37 | |
---|
38 | variant qt5 conflicts qt4 description {Enable GUI based on QT 5} { |
---|
39 | PortGroup qt5 1.0 |
---|
40 | configure.args-replace --with-qt=no --with-qt=${qt_bins_dir} |
---|
41 | qt5.depends_component qtbase |
---|
42 | } |
---|