diff --git a/devel/vcsn/Portfile b/devel/vcsn/Portfile
index a8fdbc3a451..92483acec43 100644
a
|
b
|
|
1 | 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 | 2 | |
3 | 3 | PortSystem 1.0 |
4 | | PortGroup active_variants 1.1 |
| 4 | PortGroup boost 1.0 |
| 5 | |
5 | 6 | |
6 | 7 | name vcsn |
7 | 8 | version 2.8 |
| 9 | revision 1 |
8 | 10 | categories devel |
9 | 11 | platforms darwin |
10 | 12 | maintainers {lrde.epita.fr:akim @akimd} openmaintainer |
… |
… |
checksums rmd160 bfa67e399a25473a2c449905c19464f4167dc2cf \ |
28 | 30 | compiler.cxx_standard 2011 |
29 | 31 | |
30 | 32 | # python3.x is required - force dependencies to use it as well |
31 | | set python_branch 3.6 |
| 33 | set python_branch 3.10 |
32 | 34 | set python_version [join [split ${python_branch} "."] ""] |
33 | 35 | |
34 | 36 | depends_build-append port:doxygen \ |
35 | 37 | port:flex \ |
36 | 38 | port:libtool |
37 | 39 | |
38 | | depends_lib-append port:boost \ |
39 | | path:bin/ccache:ccache \ |
| 40 | depends_lib-append path:bin/ccache:ccache \ |
40 | 41 | port:gmp \ |
41 | 42 | port:python${python_version} \ |
42 | 43 | port:yaml-cpp |
… |
… |
depends_lib-append port:boost \ |
44 | 45 | depends_run path:bin/dot:graphviz \ |
45 | 46 | port:py${python_version}-ipython |
46 | 47 | |
47 | | require_active_variants boost python${python_version} |
48 | | |
49 | 48 | configure.args --disable-silent-rules |
50 | 49 | configure.optflags -O3 -DNDEBUG |
51 | 50 | configure.python ${prefix}/bin/python${python_branch} |