Ticket #55365: Portfile

File Portfile, 1.4 KB (added by tuffnatty (Phil Krylov), 6 years ago)

Portfile with the latest fixes.

Line 
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
3PortSystem      1.0
4
5name    ttfautohint
6version 1.7
7description     A library to autohint TrueType fonts
8long_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
14homepage        https://www.freetype.org/ttfautohint/
15categories      graphics fonts
16platforms       darwin
17maintainers     @tuffnatty
18license         {freetype GPL-2}
19master_sites    sourceforge:project/freetype/ttfautohint/${version}
20
21checksums       rmd160 73f74ddab855cbe3b82d27216eabc410b07c4d9b \
22                sha256 3db94821e4edb3900b6533733d06731eb667f1e9c144bb70d1339de7ef4007f2
23
24depends_build \
25    port:pkgconfig
26
27depends_lib \
28    port:freetype \
29    port:harfbuzz
30
31configure.args  --with-doc=no --with-qt=no
32
33variant 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
38variant 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}