Ticket #15101: Portfile

File Portfile, 1.1 KB (added by shreevatsa.public@…, 16 years ago)

Portfile for Surf

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                surf
7version             1.0.5
8categories          math
9maintainers         gmail.com:shreevatsa.public\
10                    openmaintainer
11description         Visualization of real algebraic geometry.
12long_description \
13    surf is a tool to visualize some real algebraic geometry: \
14    plane algebraic curves, algebraic surfaces and hyperplane sections of surfaces. \
15    surf is script driven and has (optionally) a nifty GUI using the Gtk widget set.
16
17homepage            http://surf.sourceforge.net/
18platforms           darwin
19
20master_sites        sourceforge
21
22checksums           md5     e19fbfdeffd60e8b178be89aeb43f7b1 \
23                    sha1    b40e3813fb0339ce4d7716d5e77206882df25d5f \
24                    rmd160  aa48172bb938831b20c19f16596e37182de44802
25
26depends_lib         port:gmp \
27                    port:flex \
28                    port:gtk1
29
30variant nox11 description "Build without a GUI" {
31    depends_lib-delete port:gtk1
32    configure.args-append --disable-gui
33}
34