diff --git a/academic/root/README b/academic/root/README new file mode 100644 index 0000000000..fd6cfdc83d --- /dev/null +++ b/academic/root/README @@ -0,0 +1,35 @@ +ROOT - A data analysis framework. + +ROOT is a data analysis framework used mostly, but not limited to, +high energy physics. It was written in C++ by the techs at CERN to +explore the benefits of object oriented programming in physics data +analysis. It consists of libraries, CINT or cling interpreter for +C/C++, plotting interface and powerful parellel processing support. +It is the preferred choice in many laboratories. + +It comes with A LOT of different options for compilation. And it +seems impossible to stress all of them in this one script. Therefore +the potential user is strongly advised to check the configure +script. + +The script was written to suit basic offline data analysis with +possible GSL and FFTW support with full documentation and tutorials. +It should be more than enough for normal user. + +It has 2 optional dependencies: GSL (accessible from SlackBuilds) +and fftw (part of the official Slackware packages). + +Script has also mathmore support, for which one needs to GSL. + +Compilation takes quite a while. + +To steer the SlackBuild script, run it with these variables: + +GSL=yes(no) MATHMORE=yes(no) FFTW=yes(no) QT=yes(no) ./root.SlackBuild + +where the values in brackets are the default values that will +be used unless specified otherwise. + +Note that by default this script will install things in /usr/ROOT: +it will add /usr/ROOT/lib$LIBDIRSUFFIX to /etc/ld.so.conf and a +profile.d script to set the correct PATHs. diff --git a/academic/root/doinst.sh b/academic/root/doinst.sh new file mode 100644 index 0000000000..7a4c9ed06a --- /dev/null +++ b/academic/root/doinst.sh @@ -0,0 +1,4 @@ +if [ ! "$(grep @PREFIX@/lib@LIBDIRSUFFIX@ etc/ld.so.conf)" ]; then + echo "@PREFIX@/lib@LIBDIRSUFFIX@" >> etc/ld.so.conf + /sbin/ldconfig +fi diff --git a/academic/root/root.SlackBuild b/academic/root/root.SlackBuild new file mode 100644 index 0000000000..b9cbeb776a --- /dev/null +++ b/academic/root/root.SlackBuild @@ -0,0 +1,165 @@ +#!/bin/bash + +# Slackware build script for ROOT + +# written by Jože Zobec + +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY +# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Modified by the slackbuilds.org project + +PRGNAM=root +VERSION=${VERSION:-5.34.03} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +# GSL support +if [[ ${GSL:-no} = "no" ]]; then + GSL_FLAGS="--disable-gsl-shared" +else + GSL_FLAGS="--enable-gsl-shared \ + --with-gsl-incdir=/usr/include \ + --with-gsl-libdir=/usr/lib${LIBDIRSUFFIX}" + if [ "$MATHMORE" = "yes" ]; then + GSL_FLAGS="$GSL_FLAGS --enable-mathmore" + fi +fi + +# FFTW3 support +if [[ ${FFTW:-no} = "no" ]]; then + FFTW_FLAGS="--disable-fftw3" +else + FFTW_FLAGS="--enable-fftw3 \ + --with-fftw3-incdir=/usr/include \ + --with-fftw3-libdir=/usr/lib${LIBDIRSUFFIX}" +fi + +if [[ ${QT:-no} = "no" ]]; then + QT_FLAGS="--disable-qt" +else + QT_FLAGS="--enable-qt" +fi + +# The place where our python modules are installed +PYTHONDIR=$(python -c "import sys, os; print os.path.join('/usr/lib${LIBDIRSUFFIX}', 'python%s' % sys.version[:3], 'site-packages')") + +# Get the job number to use from the MAKEFLAGS +NUMJOBS=$(expr "$(echo $MAKEFLAGS)" : '\(-j[0-9]*\)' | sed "s|-j||" ) + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvzf $CWD/$PRGNAM\_v$VERSION.source.tar.gz +mv $PRGNAM $PRGNAM-$VERSION +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Make sure we use system libs and headers +rm -r graf3d/ftgl/{inc,src} || die +rm -r graf2d/freetype/src || die +rm -r graf3d/glew/{inc,src} || die +rm -r core/pcre/src || die +LANG=C LC_ALL=C find core/zip -type f -name "[a-z]*" -print0 | xargs -0 rm -f || die +rm -r core/lzma/src/*.tar.gz || die + +# prefix where to install stuff +PREFIX=/usr/ROOT + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=$PREFIX \ + --libdir=$PREFIX/lib${LIBDIRSUFFIX} \ + --incdir=$PREFIX/include \ + --mandir=$PREFIX/man/man1 \ + --etcdir=$PREFIX/etc/root \ + --docdir=$PREFIX/doc/$PRGNAM-$VERSION \ + --enable-roofit \ + --enable-unuran \ + --disable-builtin-freetype \ + --disable-builtin-ftgl \ + --disable-builtin-glew \ + --disable-builtin-pcre \ + --disable-builtin-zlib \ + --disable-builtin-lzma \ + $GSL_FLAGS \ + $FFTW_FLAGS \ + $QT_FLAGS \ + --enable-shared \ + --build=$ARCH-slackware-linux + +make -j $NUMJOBS +make install DESTDIR=$PKG + +# Move some python stuff in the proper place +mkdir -p $PKG$PYTHONDIR +mv $PKG$PREFIX/lib$LIBDIRSUFFIX/*.py* $PKG$PREFIX/lib$LIBDIRSUFFIX/python/genreflex \ + $PKG$PYTHONDIR/ +rm -fr $PKG$PREFIX/lib$LIBDIRSUFFIX/python + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneded 2> /dev/null || true + +find $PKG$PREFIX/man -type f -exec gzip -9 {} \; + +# Install some profile.d scripts to use the right paths +mkdir -p $PKG/etc/profile.d +echo "set path = ( \$path $PREFIX/bin )" > $PKG/etc/profile.d/root.csh +echo "setenv MANPATH \${MANPATH}:$PREFIX/man" >> $PKG/etc/profile.d/root.csh +echo "PATH=\$PATH:$PREFIX/bin" > $PKG/etc/profile.d/root.sh +echo "MANPATH=\$MANPATH:$PREFIX/man" >> $PKG/etc/profile.d/root.sh +chmod +x $PKG/etc/profile.d/root.* + +cat $CWD/$PRGNAM.SlackBuild > $PKG$PREFIX/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +sed -e "s|@LIBDIRSUFFIX@|$LIBDIRSUFFIX|" -e "s|@PREFIX@|$PREFIX|" \ + $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/academic/root/root.info b/academic/root/root.info new file mode 100644 index 0000000000..205841822b --- /dev/null +++ b/academic/root/root.info @@ -0,0 +1,10 @@ +PRGNAM="root" +VERSION="5.34.03" +HOMEPAGE="http://root.cern.ch/drupal/" +DOWNLOAD="ftp://root.cern.ch/root/root_v5.34.03.source.tar.gz" +MD5SUM="b732dab3abab6d2a223d278041b3e1fe" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="%README% ftgl" +MAINTAINER="Jože Zobec" +EMAIL="jozze.zepl@gmail.com" diff --git a/academic/root/slack-desc b/academic/root/slack-desc new file mode 100644 index 0000000000..f5ecc64dd3 --- /dev/null +++ b/academic/root/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +root: ROOT - A data analysis framework. +root: +root: ROOT is a data analysis framework used mostly, but not limited to, +root: high energy physics. It was written in C++ by the techs at CERN to +root: explore the benefits of object oriented programming in physics data +root: analysis. It consists of libraries, CINT or cling interpreter for +root: C/C++, plotting interface and powerful parellel processing support. +root: It is the preferred choice in many laboratories. +root: +root: Homepage: http://root.cern.ch/drupal/ +root: