Ticket #50011: root.3.diff

File root.3.diff, 11.7 KB (added by cjones051073 (Chris Jones), 8 years ago)
  • science/root5/Portfile

     
    1010
    1111github.setup        root-mirror root 5-34-34 v
    1212version             5.34.34
    13 revision            1
     13revision            2
    1414
    1515set version_major   [lindex [split ${version} .] 0]
    1616
  • science/root5/files/root5

     
    2828libexec/root5/bin/thisroot.sh
    2929libexec/root5/bin/xpdtest
    3030-
     31-
     32-
     33-
     34-
     35-
     36-
     37-
     38-
    3139libexec/root5/share/man/man1/cint.1.gz
    3240libexec/root5/share/man/man1/g2root.1.gz
    3341libexec/root5/share/man/man1/g2rootold.1.gz
  • science/root6/Portfile

     
    88PortGroup           compiler_blacklist_versions 1.0
    99PortGroup           github 1.0
    1010PortGroup           select 1.0
     11PortGroup           xcodeversion 1.0
    1112
    1213# don't forget to update both the git tag and the version
    1314#github.setup       root-mirror root <sha>
    14 github.setup        root-mirror root 6-04-12 v
    15 version             6.04.12
     15github.setup        root-mirror root 6-06-00 v
     16version             6.06.00
    1617
    1718# this could be a better way to set the version (unless we use a sha sum for the git tag ;)
    1819# version           [string map {- .} $version]
    1920set version_major   [lindex [split ${version} .] 0]
    2021
    21 checksums           rmd160  a607eb11c3e84c8e61c1c7dcdad5de7daa0c998c \
    22                     sha256  140de60f190970453dd0c53aa27b33fa73fe1c8a6e863620a4c6fb9ac9a975a2
     22checksums           rmd160  84ce0e3b637e2cc81cc4d6c598118e50d5f18125 \
     23                    sha256  90416cd4d836b8ca48c2e31cc7774a5e35ee21f0748596487e39fa0af2cf2324
    2324
    2425name                root${version_major}
    2526categories          science
     
    6061select.file         ${filespath}/${name}
    6162
    6263# Force a compatible compiler
     64#compiler.blacklist-append *gcc* {clang < 602}  macports-clang-3.4 macports-clang-3.3
     65#compiler.fallback-append  macports-clang-3.7 macports-clang-3.6 macports-clang-3.5
    6366compiler.blacklist-append *gcc* {clang < 500} macports-clang-3.3
    64 compiler.fallback-append  macports-clang-3.7 macports-clang-3.6 macports-clang-3.5 \
    65                           macports-clang-3.4
     67compiler.fallback-append  macports-clang-3.7 macports-clang-3.6 macports-clang-3.5 macports-clang-3.4
    6668
    6769# port specific location
    6870set install_prefix ${prefix}/libexec/root${version_major}
     
    124126                    -Dvc=OFF \
    125127                    -Dastiff=ON \
    126128                    -Dgeocad=OFF \
     129                    -Dr=OFF \
    127130                    -DPNG_LIBRARY=${prefix}/lib/libpng.dylib \
    128131                    -DPNG_PNG_INCLUDE_DIR=${prefix}/include
    129132
     
    169172}
    170173
    171174post-destroot {
    172     # create versioned symlinks for the content of libexec
    173     # bin dir
     175    # Temporary - Set execute flag on binaries (broken in 6.06.00)
    174176    foreach f [glob -directory ${destroot}${install_prefix}/bin *] {
     177        system "chmod +x $f"
     178    }
     179    # create versioned symlinks for the content of libexec bin dir
     180    foreach f [glob -directory ${destroot}${install_prefix}/bin *] {
    175181        set filename  [file tail $f]
    176182        set extension [file extension $filename]
    177183        set base      [file rootname $filename]
     
    222228  ui_msg "======================================================================================"
    223229}
    224230
    225 universal_variant   no
     231universal_variant no
    226232
    227 default_variants    +ssl +xml +gsl +minuit2 +tmva +roofit +graphviz +opengl +soversion +http
     233default_variants  +cocoa +ssl +xml +gsl +minuit2 +tmva +roofit +graphviz +opengl +soversion +http
    228234
    229 # Since ROOT 5.34.15 the cocoa backend is default on OSX 10.8 or newer
    230 # We also make it default on 10.7
    231 if {${os.major} > 10} {
    232     set default_gui_variant +cocoa
    233 } else {
    234     set default_gui_variant +x11
     235# Enable C++14 by default when Xcode allows (Xcode 6.3 onwards)
     236if { [vercmp $xcodeversion "6.3"] >= 0 } {
     237    default_variants-append +cxx14
    235238}
    236239
    237 # variant geocad description {Enable CAD Interface} {
    238 #     configure.args-replace  -Dgeocad=OFF -Dgeocad=ON
    239 #     depends_lib-append      port:oce
    240 #     configure.args-append   -DOCC_INCLUDE_DIR="${prefix}/include/oce"
    241 # }
    242 
    243240variant qt4 description {Enable QT4 support} {
    244241    configure.args-replace  -Dqt=OFF -Dqt=ON
    245242    PortGroup qt4 1.0
     
    247244
    248245variant cxx14 description {Enable c++14 compiler support} {
    249246    configure.args-replace  -Dcxx14=OFF -Dcxx14=ON
     247    # Update compiler blacklist to force use of MP's Clang 3.7 when required
     248    compiler.blacklist-append {clang < 602} macports-clang-3.4
    250249}
    251250
    252251variant valgrind description {Build internal LLVM library with valgrind support} {
     
    423422            foreach f [ exec find ${destroot}${install_prefix} -type f -and -name "*.py" ] {
    424423                reinplace "s|${pystringtoreplace}|${prefix}/bin/python${active_python_version}|g" $f
    425424            }
     425            foreach f [ exec find ${destroot}${install_prefix}/bin -type f | xargs grep -Il ${pystringtoreplace} ] {
     426                reinplace "s|${pystringtoreplace}|${prefix}/bin/python${active_python_version}|g" $f
     427            }
    426428        }
    427429
    428430    }
     
    487489variant postgresql90 conflicts postgresql92 description {Build with PostgreSQL 9.0 support} {
    488490    configure.args-replace -Dpgsql=OFF -Dpgsql=ON
    489491    configure.args-append  -DPOSTGRESQL_INCLUDE_DIR="${prefix}/include/postgresql90"\
    490                            -DPOSTGRESQL_LIBRARIES="${prefix}/lib/postgresql90/libpq.dylib"
     492                           -DPOSTGRESQL_LIBRARY="${prefix}/lib/postgresql90/libpq.dylib"
    491493    depends_lib-append      port:libpqxx port:postgresql90
    492494}
    493495
     
    494496variant postgresql92 conflicts postgresql90 description {Build with PostgreSQL 9.2 support} {
    495497    configure.args-replace -Dpgsql=OFF -Dpgsql=ON
    496498    configure.args-append  -DPOSTGRESQL_INCLUDE_DIR="${prefix}/include/postgresql92" \
    497                            -DPOSTGRESQL_LIBRARIES="${prefix}/lib/postgresql92/libpq.dylib"
     499                           -DPOSTGRESQL_LIBRARY="${prefix}/lib/postgresql92/libpq.dylib"
    498500    depends_lib-append      port:libpqxx port:postgresql92
    499501}
    500502
     
    540542                            -DOPENGL_glu_LIBRARY=${prefix}/lib/libGLU.dylib
    541543}
    542544
    543 # If neither graphical variant is set, use default
    544 if { ![variant_isset cocoa] && ![variant_isset x11] } {
    545     default_variants-append ${default_gui_variant}
    546 }
    547 
    548545# ========================================================================================
    549546# Setup various clang variants, to provide alternative C++ compilers that support cocoa
    550547# ========================================================================================
    551548
    552549# List of possible clang versions that work
    553 set clang_versions { 3.4 3.5 3.6 3.7 }
     550set clang_versions { 3.5 3.6 3.7 3.8 }
    554551
    555552# Define the available variants
    556553foreach clang_ver ${clang_versions} {
     
    567564
    568565# make sure that the proper variant is automatically selected
    569566# (ROOT crashes if the compiler it was built with doesn't exist)
    570 if { ![variant_isset clang33] && ![variant_isset clang34] &&
    571      ![variant_isset clang35] && ![variant_isset clang36] &&
    572      ![variant_isset clang37] } {
    573     if       { ${configure.compiler} eq "macports-clang-3.3" } {
    574         default_variants-append +clang33
    575     } elseif { ${configure.compiler} eq "macports-clang-3.4" } {
    576         default_variants-append +clang34
    577     } elseif { ${configure.compiler} eq "macports-clang-3.5" } {
     567if { ![variant_isset clang35] &&
     568     ![variant_isset clang36] &&
     569     ![variant_isset clang37] &&
     570     ![variant_isset clang38] } {
     571    if       { ${configure.compiler} eq "macports-clang-3.5" } {
    578572        default_variants-append +clang35
    579573    } elseif { ${configure.compiler} eq "macports-clang-3.6" } {
    580574        default_variants-append +clang36
    581575    } elseif { ${configure.compiler} eq "macports-clang-3.7" } {
    582576        default_variants-append +clang37
     577    } elseif { ${configure.compiler} eq "macports-clang-3.8" } {
     578        default_variants-append +clang38
    583579    }
    584580}
    585581
     
    655651
    656652# ========================================================================================
    657653
    658 # Problems finding includes ...
     654# Various variants etc. with problems. Work in progress...
     655
    659656# variant ruby description {Build with ruby support} {
    660657#     configure.args-replace  -Druby=OFF -Druby=ON
    661658#     depends_lib-append      port:ruby
     
    665662# livecheck.type              regex
    666663# livecheck.url               http://root.cern.ch/svn/root/trunk
    667664# livecheck.regex             ${name}_v(\[0-9a-z.\]+)\\.source
     665
     666# variant geocad description {Enable CAD Interface} {
     667#     configure.args-replace  -Dgeocad=OFF -Dgeocad=ON
     668#     depends_lib-append      port:oce
     669#     configure.args-append   -DOCC_INCLUDE_DIR="${prefix}/include/oce"
     670# }
     671
     672# variant r description {Enable R support} {
     673#     configure.args-replace  -Dr=OFF -Dr=ON
     674#     depends_lib-append  port:R
     675# }
  • science/root6/files/root6

     
    2828libexec/root6/bin/thisroot.sh
    2929-
    3030libexec/root6/bin/rootcling
     31libexec/root6/bin/rootbrowse
     32libexec/root6/bin/rootcp
     33libexec/root6/bin/rooteventselector
     34libexec/root6/bin/rootls
     35libexec/root6/bin/rootmkdir
     36libexec/root6/bin/rootmv
     37libexec/root6/bin/rootprint
     38libexec/root6/bin/rootrm
    3139-
    3240libexec/root6/share/man/man1/g2root.1.gz
    3341libexec/root6/share/man/man1/g2rootold.1.gz
    3442libexec/root6/share/man/man1/genmap.1.gz
    35 libexec/root6/share/man/man1/genreflex-rootcint.1.gz
    36 libexec/root6/share/man/man1/genreflex.1.gz
     43-
     44-
    3745libexec/root6/share/man/man1/h2root.1.gz
    3846libexec/root6/share/man/man1/hadd.1.gz
    3947libexec/root6/share/man/man1/hist2workspace.1.gz
     
    5462libexec/root6/share/man/man1/proofd.1.gz
    5563libexec/root6/share/man/man1/proofserv.1.gz
    5664libexec/root6/share/man/man1/proofserva.1.gz
    57 libexec/root6/share/man/man1/rlibmap.1.gz
     65-
    5866libexec/root6/share/man/man1/rmkdepend.1.gz
    5967libexec/root6/share/man/man1/root-config.1.gz
    6068libexec/root6/share/man/man1/root.1.gz
     
    6977libexec/root6/share/man/man1/system.rootdaemonrc.1.gz
    7078libexec/root6/share/man/man1/xpdtest.1.gz
    7179libexec/root6/share/man/man1/xproofd.1.gz
    72 libexec/root6/share/man/man1/rootcling.1.gz
     80-
    7381libexec/root6/etc/root
    7482libexec/root6/include/root
    7583libexec/root6/share
  • sysutils/root_select/Portfile

     
    55PortGroup           select 1.0
    66
    77name                root_select
    8 version             1.1
     8version             1.2
    99
    1010categories          sysutils science
    1111platforms           darwin
  • sysutils/root_select/files/base

     
    2828bin/thisroot.sh
    2929bin/xpdtest
    3030bin/rootcling
     31bin/rootbrowse
     32bin/rootcp
     33bin/rooteventselector
     34bin/rootls
     35bin/rootmkdir
     36bin/rootmv
     37bin/rootprint
     38bin/rootrm
    3139share/man/man1/cint.1.gz
    3240share/man/man1/g2root.1.gz
    3341share/man/man1/g2rootold.1.gz
  • sysutils/root_select/files/none

     
    7373-
    7474-
    7575-
     76-
     77-
     78-
     79-
     80-
     81-
     82-
     83-