# -*- 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 PortGroup compiler_blacklist_versions 1.0 name astyle version 3.6.7 set branch [join [lrange [split ${version} .] 0 1] .] revision 0 categories devel license MIT 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 75816da727ccf85349e843be79c1d62106d48446 \ sha256 ac30a043ece5920e521c2560055877251bfeb8e102c589c65c50550f1eb25cef \ size 219524 patchfiles dont-force-stdlib.diff compiler.cxx_standard 2017 # The header is only provided by Xcode 11 and later. compiler.blacklist-append {clang < 1100} # This build system can only build one thing at a time. Since we want several # things, we have to do each one separately. Docs will be installed with the # exectuable. set builds { executable {-DINSTALL_DOC=ON} 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+)*)"