Ticket #42120: cufflinks-2.2.1.diff

File cufflinks-2.2.1.diff, 2.3 KB (added by ryandesign (Ryan Carsten Schmidt), 7 years ago)
  • science/cufflinks/Portfile

    diff --git a/science/cufflinks/Portfile b/science/cufflinks/Portfile
    index 3d604d4350..2f4810ee8f 100644
    a b  
     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
    13PortSystem          1.0
     4PortGroup           github 1.0
    25
    3 name                cufflinks
    4 version             0.9.3
     6github.setup        cole-trapnell-lab cufflinks 2.2.1 v
    57categories          science biology
    68platforms           darwin
    79maintainers         gmail.com:haroldpimentel
    8 license             Boost
     10license             Boost-1
    911
    1012description         Cufflinks assembles transcripts, estimates their abundances,\
    1113                    and tests for differential expression and regulation in RNA-Seq samples.
    long_description Cufflinks assembles transcripts, estimates their abundances, 
    1719                    Cufflinks then estimates the relative abundances of these \
    1820                    transcripts based on how many reads support each one.
    1921
    20 homepage            http://cufflinks.cbcb.umd.edu/
    21 master_sites        ${homepage}downloads
     22homepage            http://cole-trapnell-lab.github.io/cufflinks/
     23master_sites        ${homepage}assets/downloads/
    2224
    23 checksums           sha1        f6c28d8f98569f8d1eae72ff050ce7d2d06bfba4\
    24                     rmd160      b9b3b8ec322e79e0e6f2b4b2f23de27b58ec44f4
     25checksums           rmd160  6378571ecb06971d1dff5b6ef81a55b36a8be498 \
     26                    sha256  e8316b66177914f14b3a0c317e436d386a46c4c212ca1b2326f89f8a2e08d5ae
    2527
    26 depends_lib         port:zlib \
     28depends_lib         port:boost \
     29                    port:eigen3 \
    2730                    port:samtools \
    28                     port:boost
     31                    port:zlib
     32
     33configure.args      --with-bam=${prefix} \
     34                    --with-boost=${prefix} \
     35                    --with-eigen=${prefix} \
     36                    --with-zlib=${prefix}
    2937
    30 # samtools is not universal
    31 universal_variant   no
     38configure.cppflags-append -isystem${prefix}/include/eigen3
    3239
    3340post-destroot {
    34     xinstall -d ${destroot}${prefix}/share/doc/${name}
     41    xinstall -d ${destroot}${prefix}/share/doc/${subport}
    3542    xinstall -m 644 -W ${worksrcpath} \
    3643        AUTHORS \
    3744        LICENSE \