Ticket #51627: Portfile

File Portfile, 1.4 KB (added by emaros, 8 years ago)
Line 
1# $Id: Portfile 126610 2014-10-12 20:22:46Z ram@macports.org $
2
3PortSystem    1.0
4PortGroup     compiler_blacklist_versions 1.0
5
6name          ldas-tools-filters
7version       2.5.0
8categories    science
9platforms     darwin
10maintainers   ligo.org:ed.maros
11
12description   Filters library used by ldas-tools
13long_description ${description}
14
15homepage      https://wiki.ligo.org/DASWG/LDASTools
16master_sites  http://software.ligo.org/lscsoft/source/
17
18checksums     rmd160 831db77d6bca6d9dff48b1ff21ba4aeed4337e83 \
19              sha256 33956f3cc7468a5a31fb56ccdfdec25ed2166d589b0bb8bb4d5ee0bd36eb2cc6
20
21conflicts      port:ldas-tools
22depends_lib    port:ldas-tools-al
23
24configure.args --disable-silent-rules \
25               --with-optimization=high \
26               --disable-tcl \
27               --without-doxygen \
28               --without-dot \
29               --disable-latex
30
31if {${os.major} < 13} {
32    configure.args-append --disable-cxx11
33}
34
35# requires clang from Xcode5 or higher to build
36compiler.blacklist-append {clang < 500.2.75} llvm-gcc-4.2 gcc-4.2
37
38use_parallel_build yes
39
40#variant docs description {build documentation} {
41#  configure.args-delete --disable-latex \
42#                        --disable-dot \
43#                        --disable-ldas-documentation \
44#  configure.args-append --docdir=${prefix}/share/doc/ldas-tools
45#}
46
47livecheck.type   regex
48livecheck.url    ${master_sites}
49livecheck.regex  {ldas-tools-filters-(\d+(?:\.\d+)*).tar.gz}