Ticket #35125: Portfile

File Portfile, 1.1 KB (added by brandon@…, 12 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
5name                gecode
6version             3.7.3
7categories          devel math
8platforms           darwin
9maintainers         brandonvalentine.com:brandon
10description         Generic Constraint Development Environment
11long_description    Gecode is a toolkit for developing constraint-based systems and applications.\
12                    Gecode provides a constraint solver with state-of-the-art \
13                    performance while being modular and extensible.
14homepage            http://www.gecode.org/
15license             MIT
16master_sites        http://www.gecode.org/download/
17checksums           rmd160 ba7ab9a545dab5b4ff3feaa90e617be561614822 \
18                    sha256 e7cc8bcc18b49195fef0544061bdd2e484a1240923e4e85fa39e8d6bb492854c
19depends_lib         port:boost
20configure.args      --disable-examples
21
22variant qt description {Add QT support} {
23    depends_lib-append      port:qt4-mac
24    configure.args-append   --enable-qt
25}