1 | # $Id: Portfile,v 1.5 2003/03/03 07:12:26 mij Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name freetype |
---|
5 | version 1.3.1 |
---|
6 | categories print |
---|
7 | maintainers ole_guldberg@mail.dk |
---|
8 | description Free and portable render engine for TrueType fonts |
---|
9 | long_description The FreeType engine is a free and portable TrueType font rendering \ |
---|
10 | engine. It has been developed to provide TT support to a great \ |
---|
11 | variety of platforms and environments. \ |
---|
12 | Notice that FreeType is a *library*. It is *not* a font server \ |
---|
13 | for your preferred environment, even though it was designed to \ |
---|
14 | allow the design of many font servers. |
---|
15 | platforms darwin |
---|
16 | master_sites http://switch.dl.sourceforge.net/freetype/ \ |
---|
17 | http://prdownloads.sourceforge.net/freetype/ |
---|
18 | checksums md5 9a9e7ad00c1ef6dfbf8f8e19ceefb300 |
---|
19 | |
---|
20 | configure.args --host=mac --prefix=${destroot}${prefix} |
---|
21 | |
---|
22 | install { |
---|
23 | system "cd ${workpath}/${name}-${version}/lib \ |
---|
24 | && make -f arch/unix/Makefile install" |
---|
25 | |
---|
26 | system "cd $workpath/${name}-${version}/test \ |
---|
27 | && make -f arch/unix/Makefile install" |
---|
28 | |
---|
29 | system "cd ${workpath}/${name}-${version}/po \ |
---|
30 | && make install" |
---|
31 | } |
---|