# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup legacysupport 1.1 PortGroup compiler_blacklist_versions 1.0 # wcsdup function is not available in Snow Leopard legacysupport.newest_darwin_requires_legacy 10 name unrar set my_name ${name}src version 7.0.7 categories archivers maintainers nomaintainer license Restrictive/Distributable description Extract, view & test RAR archives long_description The unRAR utility is a minor part of the RAR archiver \ and contains RAR uncompression algorithm. unRAR \ requires very small volume of memory to operate. homepage https://www.rarlab.com/ master_sites ${homepage}rar/ distname ${my_name}-${version} checksums rmd160 4d6d1582d363c95bbf43838566ef0ea18349f7a3 \ sha256 da95829c7e66fe461c06eb4bea8145e58d88d76909432d0875cd1ff86669f728 \ size 258219 patchfiles patch-makefile.unix.diff worksrcdir ${name} use_configure no variant universal {} if {[tbool configure.ccache]} { configure.cxx "ccache ${configure.cxx}" } # error: unknown type name 'constexpr' compiler.cxx_standard \ 2011 configure.cxxflags-append \ -std=c++11 # error: invalid cpu feature string for builtin # uses newer intrinsic functions compiler.blacklist {clang < 900} set cxx_stdlibflags {} if {[string match *clang* ${configure.cxx}] && ${configure.cxx_stdlib} ne ""} { set cxx_stdlibflags -stdlib=${configure.cxx_stdlib} } build.args -f makefile \ CXX="[join ${configure.cxx}]" # The makefile misuses the DESTDIR variable as if it were PREFIX. We need it at # build time so the library gets the correct install_name. build.args-append DESTDIR=${prefix} pre-build { build.args-append CXXFLAGS="${configure.cxxflags} [get_canonical_archflags cxx] ${cxx_stdlibflags}" \ LDFLAGS="${configure.ldflags} [get_canonical_archflags ld] ${cxx_stdlibflags}" } post-destroot { set docdir ${prefix}/share/doc/${subport} xinstall -d ${destroot}${docdir} xinstall -m 644 -W ${worksrcpath} license.txt readme.txt ${destroot}${docdir} } platform darwin { patchfiles-append patch-dylib.diff } if {${name} == ${subport}} { installs_libs no destroot { xinstall ${worksrcpath}/${name} ${destroot}${prefix}/bin } livecheck.type regex livecheck.url ${homepage}rar_add.htm livecheck.regex ${my_name}-(\\d+(?:\\.\\d+)*) } else { livecheck.type none } subport libunrar { description unrar library long_description ${description} # Copied from standalone libunrar port. Why do we need these? configure.cxxflags-append -DSILENT # The makefile adds -fPIC to the CXXFLAGS when building the library, but we # override the CXXFLAGS with our own, so we have to manually add this again. configure.cxxflags-append -fPIC build.target lib destroot { xinstall -d ${destroot}${prefix}/include/unrar xinstall -m 644 ${worksrcpath}/dll.hpp ${destroot}${prefix}/include/unrar if {${os.platform} eq "darwin"} { xinstall ${worksrcpath}/libunrar.dylib ${destroot}${prefix}/lib xinstall ${worksrcpath}/libunrar.a ${destroot}${prefix}/lib } else { xinstall ${worksrcpath}/libunrar.so ${destroot}${prefix}/lib } } }