Ticket #32206: Portfile

File Portfile, 1.6 KB (added by z@…, 12 years ago)

Maintainers field updated.

Line 
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:s
2# $Id$
3
4PortSystem          1.0
5
6name                olena
7version             2.0
8categories          devel framework graphics science
9platforms           darwin
10license             GPL-2
11maintainers         lrde.epita.fr:olena
12description         Software platform for efficient and generic image processing
13long_description    It is composed of a Generic and efficient C++ image \
14                            processing library, a framework for Document Image \
15                            Analysis and Python bindings.
16homepage            http://olena.lrde.epita.fr
17master_sites        http://www.lrde.epita.fr/dload/olena/
18
19checksums           md5     b5c28d5f9e184bbefb50757115fa6551 \
20                    sha1    d3a829fa56bff4edbca58af0c9a39c9569820c60 \
21                    rmd160  276abd7a2af6e7627aa1ab91df0ea7fd11a713ef
22
23depends_lib         port:GraphicsMagick \
24                    port:tiff
25
26supported_archs     i386 x86_64
27
28configure.args-append --with-imagemagickxx=no
29
30variant scribo description {Add a DIA framework} {
31    depends_lib-append port:tesseract \
32                       port:qt4-mac   \
33                       port:libxslt
34
35    depends_run-append port:fop
36
37    configure.args-append --enable-scribo
38}
39
40variant swilena description {Add Python bindings} {
41    configure.args-append --enable-swilena
42}
43
44# Temporary workaround because of a Apple's GCC bug.
45platform darwin 11 {
46    configure.env-append CXXFLAGS=-fno-strict-aliasing
47}
48
49default_variants    +scribo