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