1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name hpgs |
---|
7 | version 1.1.8 |
---|
8 | categories graphics |
---|
9 | platforms darwin |
---|
10 | maintainers actrix.co.nz:fmw |
---|
11 | license LGPL-2.1+ |
---|
12 | |
---|
13 | description HPGl Script - a HPGL/2 interpreter/renderer |
---|
14 | |
---|
15 | long_description HPGS is an HPGL plotter language converter. Features include: \ |
---|
16 | \n* Interpretation of all modern HPGL/2 features. \ |
---|
17 | \n* Handling of all paper formats. \ |
---|
18 | \n* Processing of vector data through a PostScript-like API. \ |
---|
19 | \n* Output to native vector graphics formats such as EPS. \ |
---|
20 | \n* State-of-the-art rendering to pixmaps including anti-aliasing. \ |
---|
21 | \n* Processing of inlined PCL images. |
---|
22 | |
---|
23 | homepage http://hpgs.berlios.de/ |
---|
24 | master_sites sourceforge:hpgs.berlios |
---|
25 | |
---|
26 | checksums rmd160 14a7f9b6b5a8d01d873fce2552e85e6c118610cf \ |
---|
27 | sha256 0c2d673cf0a79e02b3dcf066984ec24e321667c374be87aeb994985568e68cfb |
---|
28 | |
---|
29 | depends_lib port:libpng \ |
---|
30 | port:gettext \ |
---|
31 | port:libiconv |
---|
32 | |
---|
33 | patchfiles patch-build-macosx-Makefile.diff \ |
---|
34 | patch-src-hpgsimage.c.diff |
---|
35 | |
---|
36 | use_configure no |
---|
37 | |
---|
38 | use_parallel_build no |
---|
39 | |
---|
40 | build.dir ${worksrcpath}/build/macos-shared |
---|
41 | |
---|
42 | build.args prefix=${prefix} \ |
---|
43 | CC="${configure.cc} [get_canonical_archflags cc]" \ |
---|
44 | SLD="${configure.cc}" \ |
---|
45 | COPT="${configure.optflags}" \ |
---|
46 | LDFLAGS="${configure.ldflags} [get_canonical_archflags ld]" |
---|
47 | |
---|
48 | destroot.args prefix=${prefix} |
---|