summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-10-15 22:47:02 -0500
committer Robby Workman <rworkman@slackbuilds.org>2013-10-29 23:31:42 -0500
commit50305917b6ad4cd872958b704e0248f472e33e0c (patch)
treead14b9614e6f0afe1a6f3594f0f530f73a8d9ea8
parent83bdd172bac4ec3e35663185ec367fc83a6d304c (diff)
downloadslackbuilds-50305917b6ad4cd872958b704e0248f472e33e0c.tar.gz
slackbuilds-50305917b6ad4cd872958b704e0248f472e33e0c.tar.xz
development/gc: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--development/gc/README14
-rw-r--r--development/gc/gc.SlackBuild98
-rw-r--r--development/gc/gc.info10
-rw-r--r--development/gc/slack-desc19
4 files changed, 0 insertions, 141 deletions
diff --git a/development/gc/README b/development/gc/README
deleted file mode 100644
index fc5ab50a46..0000000000
--- a/development/gc/README
+++ /dev/null
@@ -1,14 +0,0 @@
-The Boehm-Demers-Weiser conservative garbage collector can be used as a
-garbage collecting replacement for C malloc or C++ new. It allows you to
-allocate memory basically as you normally would, without explicitly
-deallocating memory that is no longer useful. The collector automatically
-recycles memory when it determines that it can no longer be otherwise
-accessed.
-
-The collector is also used by a number of programming language
-implementations that either use C as intermediate code, want to
-facilitate easier interoperation with C libraries, or just prefer
-the simple collector interface.
-
-libatomic_ops is an optional dependency, but gc will use an internal copy
-if it's not already installed on the system.
diff --git a/development/gc/gc.SlackBuild b/development/gc/gc.SlackBuild
deleted file mode 100644
index ae3e7b4262..0000000000
--- a/development/gc/gc.SlackBuild
+++ /dev/null
@@ -1,98 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for gc
-
-# Copyright 2006-2012 Robby Workman, Northport, Alabama, USA
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# 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.
-
-PRGNAM=gc
-VERSION=${VERSION:-7.2d}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-TARVERS=7.2
-
-# 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=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$TARVERS
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$TARVERS
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --mandir=/usr/man \
- --enable-static=no \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-mkdir -p $PKG/usr/man/man1
-mv $PKG/usr/share/gc/gc.man $PKG/usr/man/man1/gc.1
-gzip -9 $PKG/usr/man/man1/gc.1
-
-mkdir -p $PKG/usr/doc
-mv $PKG/usr/share/gc $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-find $PKG/usr/doc -type f -exec chmod 644 {} \;
-( cd $PKG/usr/share ; ln -s /usr/doc/$PRGNAM-$VERSION gc )
-
-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/development/gc/gc.info b/development/gc/gc.info
deleted file mode 100644
index 63894ac07e..0000000000
--- a/development/gc/gc.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="gc"
-VERSION="7.2d"
-HOMEPAGE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
-DOWNLOAD="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2d.tar.gz"
-MD5SUM="91340b28c61753a789eb6077675d87d2"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Robby Workman"
-EMAIL="rworkman@slackbuilds.org"
diff --git a/development/gc/slack-desc b/development/gc/slack-desc
deleted file mode 100644
index c537eb960a..0000000000
--- a/development/gc/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------------------------------------------------------|
-gc: gc (Boehm-Demers-Weiser garbage collector)
-gc:
-gc: The Boehm-Demers-Weiser conservative garbage collector can be used
-gc: as a garbage collecting replacement for C malloc or C++ new. It
-gc: allows you to allocate memory basically as you normally would,
-gc: without explicitly deallocating memory that is no longer useful. The
-gc: collector automatically recycles memory when it determines that it
-gc: can no longer be otherwise accessed.
-gc:
-gc: Homepage: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
-gc: