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-macos-shared-Makefile.diff \ |
---|
34 | patch-src-hpgsimage.c.diff \ |
---|
35 | patch-src-include.mak.diff |
---|
36 | |
---|
37 | use_configure no |
---|
38 | |
---|
39 | use_parallel_build no |
---|
40 | |
---|
41 | variant universal {} |
---|
42 | |
---|
43 | build.dir ${worksrcpath}/build/macos-shared |
---|
44 | |
---|
45 | build.args prefix=${prefix} \ |
---|
46 | CCDEP="${configure.cc}" \ |
---|
47 | CC="${configure.cc} [get_canonical_archflags cc]" \ |
---|
48 | SLD="${configure.cc} [get_canonical_archflags ld]" \ |
---|
49 | COPT="${configure.optflags}" \ |
---|
50 | LDFLAGS="${configure.ldflags} [get_canonical_archflags ld]" |
---|
51 | |
---|
52 | destroot.args prefix=${prefix} |
---|