# -*- 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.15 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 27b2f9875414e6c787e320aac1b69caf000ebbb8 \ sha256 0504c733bbfe96688b66c107b6df3fa05263defabb23858e42c44ba554586e6b \ size 231448 patchfiles dont-force-stdlib.diff compiler.cxx_standard 2017 # 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+)*)"