summaryrefslogtreecommitdiffstats
path: root/academic/root
diff options
context:
space:
mode:
Diffstat (limited to 'academic/root')
-rw-r--r--academic/root/README20
-rw-r--r--academic/root/root.SlackBuild7
-rw-r--r--academic/root/root.info8
3 files changed, 27 insertions, 8 deletions
diff --git a/academic/root/README b/academic/root/README
index ca62905ea0..3f7a5201e2 100644
--- a/academic/root/README
+++ b/academic/root/README
@@ -15,6 +15,22 @@ arguments.
Compilation takes quite a while, thus consider to build ROOT like that:
# MAKEFLAGS=-j5 ./root.SlackBuild
-REQUIREMENTS: gl2ps libAfterImage numpy3 tbb ftgl
+REQUIREMENTS: gl2ps libAfterImage python3-numpy tbb ftgl
-NOTE: ROOT's python TMVA requires numpy3 built over blas.
+NOTES:
+ - ROOT's python TMVA requires python3-numpy being built over blas.
+
+ - This SlackBuild sets the root7 build option to ON in order to
+ prepare the migration to the new ROOT 7 release. More on the ROOT 7
+ features you can find here:
+ https://root.cern/for_developers/root7
+
+ - Starting from ROOT version 6.26/00 it uses the web-based version for
+ the TBrowser if it is build with the root7 option being ON. You can
+ switch back to the Win95-looking TBrowser by adding the following
+ line to your $HOME/.rootrc file:
+ Browser.Name: TRootBrowser
+
+ - Starting from ROOT 6.28/00 version, one can use rootssh script for
+ automatic configuration of ssh tunnel, necessary for web widgets:
+ rootssh username@remotenode
diff --git a/academic/root/root.SlackBuild b/academic/root/root.SlackBuild
index 9725527197..1dc6bb4194 100644
--- a/academic/root/root.SlackBuild
+++ b/academic/root/root.SlackBuild
@@ -20,7 +20,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=root
-VERSION=${VERSION:-6.24.06}
+VERSION=${VERSION:-6.28.08}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -90,6 +90,7 @@ cmake ../src \
-Dbuiltin_davix=OFF \
-Dbuiltin_fftw3=OFF \
-Dbuiltin_gsl=OFF \
+ -Dbuiltin_gtest=OFF \
-Dbuiltin_openssl=OFF \
-Dbuiltin_tbb=OFF \
-Dbuiltin_vc=OFF \
@@ -215,7 +216,9 @@ cp -a README/ README.md LICENSE LGPL2_1.txt ../src/CONTRIBUTING.md \
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
cp -a README/ LICENSE \
$PKG$PREFIX
-chmod -R 644 $PKG$PREFIX/README
+# README is a directory
+find $PKG$PREFIX/README -type d -exec chmod 755 {} \;
+find $PKG$PREFIX/README -type f -exec chmod 644 {} \;
chmod -R 644 $PKG$PREFIX/LICENSE
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
diff --git a/academic/root/root.info b/academic/root/root.info
index de20662e7e..9343758408 100644
--- a/academic/root/root.info
+++ b/academic/root/root.info
@@ -1,10 +1,10 @@
PRGNAM="root"
-VERSION="6.24.06"
+VERSION="6.28.08"
HOMEPAGE="https://root.cern"
-DOWNLOAD="https://root.cern/download/root_v6.24.06.source.tar.gz"
-MD5SUM="267e08ba9bf957e82b4236f3c50f0219"
+DOWNLOAD="https://root.cern/download/root_v6.28.08.source.tar.gz"
+MD5SUM="3eca7fadb7867232fa74a7262644b05d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="gl2ps libAfterImage numpy3 tbb ftgl"
+REQUIRES="gl2ps libAfterImage python3-numpy tbb ftgl"
MAINTAINER="Andrei Rabusov"
EMAIL="arabusov@gmail.com"