summaryrefslogtreecommitdiffstats
path: root/academic
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2011-03-14 15:26:59 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-03-14 15:26:59 -0500
commit0b4a05ae9159e3a939f455ebc3835a421f54794e (patch)
treecd4100fa9ed73414117e582e0e05a17d7924b3df /academic
parenta632c51e49f2a9e36e86337cc28ddb4ed183aea7 (diff)
downloadslackbuilds-0b4a05ae9159e3a939f455ebc3835a421f54794e.tar.gz
slackbuilds-0b4a05ae9159e3a939f455ebc3835a421f54794e.tar.xz
academic/R: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2009-December/004989.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'academic')
-rw-r--r--academic/R/R.SlackBuild86
-rw-r--r--academic/R/R.info10
-rw-r--r--academic/R/README8
-rw-r--r--academic/R/slack-desc19
4 files changed, 0 insertions, 123 deletions
diff --git a/academic/R/R.SlackBuild b/academic/R/R.SlackBuild
deleted file mode 100644
index 248c87efbc..0000000000
--- a/academic/R/R.SlackBuild
+++ /dev/null
@@ -1,86 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for R
-# Written by Joel J. Adamson
-# Modified by SlackBuilds.org
-
-PRGNAM=R
-VERSION=2.9.0
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) 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=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-rm -rf $TMP/$PRGNAM-$VERSION
-cd $TMP
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-# Adjust the path variable; you need pdflatex to build the LaTeX documentation
-PATH="$PATH:/usr/share/texmf/bin"
-
-CFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --with-perl=/usr/bin/perl \
- --enable-R-shlib \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc
-mv $PKG/usr/lib${LIBDIRSUFFIX}/R/doc $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a INSTALL README $CWD/$PRGNAM.SlackBuild $PKG/usr/doc/$PRGNAM-$VERSION
-find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
-chown -R root:root $PKG/usr/doc
-( cd $PKG/usr/lib${LIBDIRSUFFIX}/R ; ln -s /usr/doc/$PRGNAM-$VERSION doc )
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/academic/R/R.info b/academic/R/R.info
deleted file mode 100644
index 0a1e0b316b..0000000000
--- a/academic/R/R.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="R"
-VERSION="2.9.0"
-HOMEPAGE="http://www.r-project.org"
-DOWNLOAD="http://mirrors.ibiblio.org/pub/mirrors/CRAN/src/base/R-2/R-2.9.0.tar.gz"
-MD5SUM="a5b79a2bc1372136cda4674b5f46d146"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Joel J. Adamson"
-EMAIL="adamsonj@email.unc.edu"
-APPROVED="dsomero"
diff --git a/academic/R/README b/academic/R/README
deleted file mode 100644
index fa37fc6c1a..0000000000
--- a/academic/R/README
+++ /dev/null
@@ -1,8 +0,0 @@
-R Statistical Programming Language <www.r-project.org>
-
-R is a language and environment for statistical computing and graphics. It
-is a GNU project which is similar to the S language and environment which
-was developed at Bell Laboratories (formerly AT&T, now Lucent Technologies)
-by John Chambers and colleagues. R can be considered as a different
-implementation of S. There are some important differences, but much code
-written for S runs unaltered under R.
diff --git a/academic/R/slack-desc b/academic/R/slack-desc
deleted file mode 100644
index 91511ffa6c..0000000000
--- a/academic/R/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-R: R Statistical Programming Language <www.r-project.org>
-R:
-R: R is a language and environment for statistical computing and
-R: graphics. It is a GNU project which is similar to the S language
-R: and environment which was developed at Bell Laboratories (formerly
-R: AT&T, now Lucent Technologies) by John Chambers and colleagues. R
-R: can be considered as a different implementation of S. There are
-R: some important differences, but much code written for S runs
-R: unaltered under R.
-R:
-R: