summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Ozan Türkyılmaz2012-07-01 06:19:34 +0200
committer Robby Workman2012-07-01 06:19:34 +0200
commit5edc59e188abcd1d2c3be9058c2c336f0763c5a9 (patch)
treef4530e8b541c9034b2e473a0ac310aadd6b0db9c
parentb2f56df52566d96e3683e9e33932a0c4441d91f4 (diff)
downloadslackbuilds-5edc59e188abcd1d2c3be9058c2c336f0763c5a9.tar.gz
libraries/libtbb: Removed (use libraries/tbb instead)
From: Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> To: "SlackBuilds.org Users List" <slackbuilds-users@slackbuilds.org> Subject: [Slackbuilds-users] tbb and libtbb Date: Sun, 29 Apr 2012 19:52:53 +0500 Reply-To: "SlackBuilds.org Users List" <slackbuilds-users@slackbuilds.org> Sender: slackbuilds-users-bounces@slackbuilds.org Hello Everyone, I noticed that there are tbb and libtbb in the repo. They are same thing expect that tbb is better maintained so I propose that admins delete my script (libtbb) from the repo, make a note in the checngelog about migrating to tbb and be done with it. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--libraries/libtbb/README10
-rw-r--r--libraries/libtbb/libtbb.SlackBuild87
-rw-r--r--libraries/libtbb/libtbb.info10
-rw-r--r--libraries/libtbb/slack-desc19
4 files changed, 0 insertions, 126 deletions
diff --git a/libraries/libtbb/README b/libraries/libtbb/README
deleted file mode 100644
index 4c36faf37a..0000000000
--- a/libraries/libtbb/README
+++ /dev/null
@@ -1,10 +0,0 @@
-Intel® Threading Building Blocks (TBB) offers a rich and complete
-approach to expressing parallelism in a C++ program. It is a library
-that helps you take advantage of multi-core processor performance
-without having to be a threading expert. Threading Building Blocks is
-not just a threads-replacement library. It represents a higher-level,
-task-based parallelism that abstracts platform details and threading
-mechanisms for scalability and performance.
-
-Note: This library is only supported on Intel(R) Pentium(R) 4, Itanium(R),
-Non Intel(R) processors compatible with the above processors.
diff --git a/libraries/libtbb/libtbb.SlackBuild b/libraries/libtbb/libtbb.SlackBuild
deleted file mode 100644
index b4b1cbd154..0000000000
--- a/libraries/libtbb/libtbb.SlackBuild
+++ /dev/null
@@ -1,87 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for libtbb
-
-# Written by João Felipe Santos (joao.eel@gmail.com)
-# Copyright (c) 2010 João Felipe Santos
-# Copyright (c) 2011 Ozan Türkyılmaz
-# Maintained by Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com>
-
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in
-# all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-# THE SOFTWARE.
-
-PRGNAM=libtbb
-VERSION=3.0_20110315oss
-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}
-
-# We'll let the Makefiles handle CFLAGS - they look correct, but they're a
-# bit convoluted anyway...
-if [ "$ARCH" = "i486" ]; then
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- LIBDIRSUFFIX="64"
-else
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf tbb$(echo $VERSION | sed 's/\.//')oss
-tar xvf $CWD/tbb$(echo $VERSION | sed 's/\.//')_src.tgz
-cd tbb$(echo $VERSION | sed 's/\.//')
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-make
-
-mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}
-install -m 0755 build/linux_*/*.so* $PKG/usr/lib${LIBDIRSUFFIX}
-
-mkdir -p $PKG/usr/include
-cp -a include/tbb $PKG/usr/include
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- CHANGES COPYING README doc/* \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-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/libraries/libtbb/libtbb.info b/libraries/libtbb/libtbb.info
deleted file mode 100644
index a36758d758..0000000000
--- a/libraries/libtbb/libtbb.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="libtbb"
-VERSION="3.0_20110315oss"
-HOMEPAGE="http://www.threadingbuildingblocks.org/"
-DOWNLOAD="http://threadingbuildingblocks.org/uploads/77/167/3.0%20update%206/tbb30_20110315oss_src.tgz"
-MD5SUM="1e749c76e19673a05f96e70c41f18ff8"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Ozan Türkyılmaz"
-EMAIL="ozan.turkyilmaz@gmail.com"
-APPROVED="rworkman,Niels Horn"
diff --git a/libraries/libtbb/slack-desc b/libraries/libtbb/slack-desc
deleted file mode 100644
index a09f5fde6a..0000000000
--- a/libraries/libtbb/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------------------------------------------------------|
-libtbb: libtbb (Intel Threading Building Blocks)
-libtbb:
-libtbb: Intel® Threading Building Blocks (TBB) offers a rich and
-libtbb: complete approach to expressing parallelism in a C++ program.
-libtbb:
-libtbb: Homepage: http://www.threadingbuildingblocks.org/
-libtbb:
-libtbb:
-libtbb:
-libtbb:
-libtbb: