Ticket #31079: Portfile.diff

File Portfile.diff, 1.5 KB (added by raphael-st (Raphael Straub), 13 years ago)
  • Portfile

    old new  
    44PortSystem      1.0
    55
    66name            asymptote
    7 version         2.08
    8 revision    3
     7version         2.13
    98categories      graphics
    109maintainers     gmail.com:loshea
    1110description     a vector graphics language
     
    1514                 Labels and equations are typeset with LaTeX, for \
    1615                 high-quality PostScript output.
    1716homepage        http://asymptote.sourceforge.net
     17license         LGPL-3+
    1818platforms       darwin
    1919configure.args  --with-latex=${prefix}/share/texmf-local/tex/latex \
    2020                --mandir=${prefix}/share/man
    2121master_sites    sourceforge
    2222extract.suffix  .src.tgz
    23 checksums       md5     ab7bc11c8110b6eb459285b9c206cfe6 \
    24                 sha1    6b81336727458f7fdcc3db972f1e63b3bfc1a93b \
    25                 rmd160  a9a2c80410eb9a7f9371a7a1a1634fed0e0be6ab
     23checksums       sha1    b4f2b72c0a4e7a02b716bfd0ad64bab45c567bbd \
     24                rmd160  c38a9224da74bb97a7b63e5ac56ba326b49625d9
    2625depends_build   port:texinfo
    2726depends_lib     port:readline \
    2827                port:texlive \
     
    3332                port:ncurses \
    3433                port:boehmgc
    3534
     35# asy binary fails to compile examples if it is compiled with llvm-gcc-4.2
     36# clang fails to compile asymptote
     37if {${configure.compiler} == "clang" ||
     38    ${configure.compiler} == "llvm-gcc-4.2"} {
     39    configure.compiler gcc-4.2
     40    if {![file executable ${configure.cc}]} {
     41        depends_build-append port:apple-gcc42
     42        configure.compiler apple-gcc-4.2
     43    }
     44}
     45
    3646post-destroot {
    3747    set python.bin ""
    3848    if {[variant_isset python27]} {