| 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 | |
|---|
| 4 | PortSystem 1.0 |
|---|
| 5 | |
|---|
| 6 | name ncbi-blastplus |
|---|
| 7 | version 2.2.27 |
|---|
| 8 | categories science |
|---|
| 9 | platforms darwin |
|---|
| 10 | depends_lib port:boost |
|---|
| 11 | license public-domain |
|---|
| 12 | |
|---|
| 13 | homepage http://blast.ncbi.nlm.nih.gov |
|---|
| 14 | description The Basic Local Alignment Search Tool (BLAST) finds regions of local similarity between sequences. |
|---|
| 15 | long_description The Basic Local Alignment Search Tool (BLAST) finds regions \ |
|---|
| 16 | of local similarity between sequences. The program compares \ |
|---|
| 17 | nucleotide or protein sequences to sequence databases and \ |
|---|
| 18 | calculates the statistical significance of matches. BLAST \ |
|---|
| 19 | can be used to infer functional and evolutionary relationships \ |
|---|
| 20 | between sequences as well as help identify members of gene families. |
|---|
| 21 | maintainers node99.org:sean openmaintainer |
|---|
| 22 | |
|---|
| 23 | master_sites ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ |
|---|
| 24 | distname ncbi-blast-${version}+-src |
|---|
| 25 | checksums rmd160 d17ea505b26a1535a8433a57ea9c0c8714e5ea5f \ |
|---|
| 26 | sha256 2e01d2d3cb7eacea21229c28d6e4e3df4a8d18f465350a22391b13092ba6c685 |
|---|
| 27 | worksrcdir ${distname}/c++ |
|---|
| 28 | |
|---|
| 29 | configure.args-append --with-boost=${prefix} --without-debug --with-optimization --with-mt --with-dll |
|---|
| 30 | |
|---|
| 31 | destroot { |
|---|
| 32 | eval xinstall -m 755 [glob ${worksrcpath}/GCC*/bin/*] ${destroot}${prefix}/bin |
|---|
| 33 | eval xinstall -m 644 [glob ${worksrcpath}/GCC*/lib/*] ${destroot}${prefix}/lib |
|---|
| 34 | } |
|---|