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 | PortSystem 1.0 |
---|
4 | |
---|
5 | name yorick-z |
---|
6 | cvs.date 20100504 |
---|
7 | version 1.2.0.cvs${cvs.date} |
---|
8 | categories science |
---|
9 | maintainers users.sourceforge.net:paumard |
---|
10 | description zlib, jpeg and png support for the Yorick language |
---|
11 | long_description This is a compiled add-on for yorick (an interpreted \ |
---|
12 | computer language specialized for numerical and \ |
---|
13 | scientific problems). Yorick-z adds support for zlib \ |
---|
14 | (the data compression system used by gzip), png (a \ |
---|
15 | lossless image compression format), and jpeg (a lossy \ |
---|
16 | image compression format). |
---|
17 | homepage http://maumae.net/yorick/doc/plugins.php |
---|
18 | platforms darwin |
---|
19 | |
---|
20 | depends_lib port:yorick port:zlib port:jpeg port:libpng |
---|
21 | |
---|
22 | fetch.type cvs |
---|
23 | cvs.root :pserver:anonymous@yorick.cvs.sourceforge.net:/cvsroot/yorick |
---|
24 | cvs.module ${name} |
---|
25 | |
---|
26 | worksrcdir ${name} |
---|
27 | |
---|
28 | configure.pre_args "" |
---|
29 | configure.args --yorick=${prefix}/bin/yorick \ |
---|
30 | --zlib=${prefix}/lib \ |
---|
31 | --png=${prefix}/lib \ |
---|
32 | --jpeg=${prefix}/lib \ |
---|
33 | --no-avcodec |
---|