Ticket #49593: root6.diff

File root6.diff, 1.9 KB (added by cjones051073 (Chris Jones), 9 years ago)
  • Portfile

     
    1111
    1212# don't forget to update both the git tag and the version
    1313#github.setup       root-mirror root <sha>
    14 github.setup        root-mirror root 6-04-06 v
    15 version             6.04.06
     14github.setup        root-mirror root 6-04-08 v
     15version             6.04.08
    1616
    1717# this could be a better way to set the version (unless we use a sha sum for the git tag ;)
    1818# version           [string map {- .} $version]
    1919set version_major   [lindex [split ${version} .] 0]
    2020
    21 checksums           rmd160  bf78aa28a2a8ae623c72b6028d9f1a5199143940 \
    22                     sha256  67f723fa96c1ed470e4adb759444c8be441b7bc752874df7fef72808bb9a86c6
     21checksums           rmd160  bef6a61d89299219eba9a145c3bee58f511c412d \
     22                    sha256  8260db0667b554e3e8f72adacc08b7c68993ad3bcefe21cf8a0b2d1278a00e42
    2323
    2424name                root${version_major}
    2525categories          science
     
    9595                    -Dpython=OFF \
    9696                    -Dfitsio=OFF \
    9797                    -Dgsl_shared=OFF \
     98                    -Dbuiltin_gsl=OFF \
    9899                    -Dpgsql=OFF \
    99100                    -Ddcache=OFF \
    100101                    -Dchirp=OFF \
     
    294295}
    295296
    296297variant gsl description {Build with gsl support} {
    297     configure.args-replace  -Dgsl_shared=OFF -Dgsl_shared=ON
    298     configure.args-append   -DGSL_CONFIG_EXECUTABLE="${prefix}/bin/gsl-config"
    299     depends_lib-append      port:gsl
     298    # Builtin GSL library
     299    configure.args-replace  -Dbuiltin_gsl=OFF -Dbuiltin_gsl=ON
     300    # External GSL library
     301    #configure.args-replace  -Dgsl_shared=OFF -Dgsl_shared=ON
     302    #configure.args-append   -DGSL_CONFIG_EXECUTABLE="${prefix}/bin/gsl-config"
     303    #depends_lib-append      port:gsl
    300304}
    301305
    302306variant fitsio description {Build with fitsio support} {