Ticket #43101: Portfile

File Portfile, 1.4 KB (added by tre@…, 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
5
6name                coinor-liblemon
7version             1.3
8categories          science
9platforms           darwin
10universal_variant   no
11
12license             Boost-1.0
13maintainers         fu-berlin.de:david.weese \
14                    cs.elte.hu:alpar
15
16description         Library of Efficient Models and Optimization in Networks
17
18long_description    A C++ template library providing easy-to-use implementations \
19                    of common graph and network related data structures and \
20                    algorithms.
21
22homepage            http://lemon.cs.elte.hu
23
24
25depends_build       port:cmake port:python27
26depends_lib
27
28master_sites        http://lemon.cs.elte.hu/pub/sources/
29distname            lemon-${version}
30checksums           rmd160  25a19a53166531f5794b5f6aa85e78e491e9d9bc \
31                    sha256  6c190dbb1e17bdb71597e79c409b2e798ffcbdb7d764ea45d6299339b12d3e05
32
33configure.compiler  macports-gcc-4.7
34configure.ccache    no
35configure.cmd       cmake
36configure.pre_args  -DCMAKE_INSTALL_PREFIX=${prefix} \
37                    -DCMAKE_VERBOSE_MAKEFILE=ON \
38                    -DDCMAKE_BUILD_TYPE=Release \
39                    -DLEMON_ENABLE_GLPK=NO \
40                    -DLEMON_ENABLE_COIN=NO \
41                    -DLEMON_ENABLE_ILOG=NO
42