# -*- 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 PortSystem 1.0 PortGroup cmake 1.1 PortGroup java 1.0 name astyle version 3.4.13 set branch [join [lrange [split ${version} .] 0 1] .] revision 0 categories devel license MIT platforms darwin maintainers nomaintainer description source code beautifier for the C, C++, C# and Java programming languages long_description Artistic Style is a source code indenter, source code formatter, \ and source code beautifier for the C, C++, C# and Java \ programming languages. homepage https://astyle.sourceforge.net master_sites sourceforge:project/astyle/astyle/astyle%20${branch} use_bzip2 yes checksums rmd160 ddd9e044402dff71508d05cdff03dd3372f512b8 \ sha256 78a610abd39e94e0f913e9ee5cda1e85bb62cd633553decb9e00d3d9201019ce \ size 230971 patchfiles dont-force-stdlib.diff compiler.cxx_standard 2011 # This build system can only build one thing at a time. Since we want several # things, we have to do each one separately. set builds { executable {} shared {-DBUILD_SHARED_LIBS=ON} static {-DBUILD_STATIC_LIBS=ON} } configure { foreach {build_type configure_args} ${builds} { cmake.build_dir ${workpath}/build-${build_type} configure.args-append {*}${configure_args} portconfigure::configure_main configure.args-delete {*}${configure_args} } } build { foreach {build_type configure_args} ${builds} { cmake.build_dir ${workpath}/build-${build_type} portbuild::build_main } } destroot { foreach {build_type configure_args} ${builds} { cmake.build_dir ${workpath}/build-${build_type} portdestroot::destroot_main } } variant java description {Build and install the JNI library} { global builds lappend builds java {-DBUILD_JAVA_LIBS=ON} } livecheck.regex "[quotemeta $name]-(\\d+(\\.\\d+)*)"