Ticket #15953: Portfile

File Portfile, 1.5 KB (added by BSeppke (Benjamin Seppke), 16 years ago)

The Portfile of the new port for vigra

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                vigra
6version             1.5.0
7categories          graphics
8maintainers         nomaintainer
9description         Generic Image Processing Library for C++
10long_description    VIGRA stands for "Vision with Generic Algorithms". \
11                                        It's a novel computer vision library that puts its \
12                                        main emphasize on customizable algorithms and data \
13                                        structures. By using template techniques similar to \
14                                        those in the C++ Standard Template Library, you can \
15                                        easily adapt any VIGRA component to the needs of your \
16                                        application, without thereby giving up execution speed.
17homepage            http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/
18platforms           darwin
19master_sites        http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/
20distname                        vigra${version}
21
22checksums           md5 5713de4ebfe29e1b5fa9689af76b8a90 \
23                    sha1 26fca97f1b3b97d9f4d3b4e775c841894e492143 \
24                    rmd160 8d8cadc7f20586ec3336d0f6581ddfafc93fff73
25
26depends_lib         port:tiff   \
27                    port:jpeg   \
28                    port:libpng \
29                    port:zlib   \
30                    port:fftw-3 \
31                    port:doxygen
32
33configure.args    --prefix=${prefix} --exec-prefix=${prefix}  \
34                  --with-jpeg=${prefix} \
35                  --with-tiff=${prefix} \
36                  --with-png=${prefix}  \
37                  --with-zlib=${prefix} \
38                  --with-fftw=${prefix}