Ticket #44433: Portfile

File Portfile, 1.4 KB (added by akimd (Akim Demaille), 10 years ago)
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:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           compiler_blacklist_versions 1.0
6
7name                vaucanson
8version             2.0
9categories          devel
10platforms           darwin
11maintainers         lrde.epita.fr:akim
12license             GPL-3+
13
14description         C++ generic automata/transducers platform
15
16long_description    Vaucanson is a finite state machine manipulation platform, \
17                    consisting of a library, Python/IPython bindings, and
18                    shell tools implemented on top of them.
19
20homepage            http://vaucanson.lrde.epita.fr
21master_sites        http://www.lrde.epita.fr/dload/vaucanson/2.0
22use_xz              yes
23
24checksums           rmd160 90d6d5eb5b8e664a527238c9a8b4df4834d5d9b9 \
25                    sha256 01cee2ae49388f92e3b47b932830b49f84089b345337c4ea7b128ae3c616ac60
26
27depends_build       port:doxygen
28depends_lib         port:boost
29depends_run         port:graphviz
30
31configure.optflags  -O3
32
33test.run            yes
34test.target         check
35
36# We need C++11 support, provided by G++ 4.8+ and Clang++ 3.3+.
37compiler.blacklist  cc \
38                    *dragonegg* \
39                    {clang < 500} \
40                    *clang-2.* \
41                    {*clang-3.[012]} \
42                    *gcc \
43                    *gcc-3.* \
44                    {*gcc-4.[0-7]}