development/gc: Updated for version 7.2d.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2012-09-07 22:29:23 -05:00
parent f72fd46a67
commit 975eb18fb9
3 changed files with 13 additions and 8 deletions

View file

@ -9,3 +9,6 @@ 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.

View file

@ -2,7 +2,7 @@
# Slackware build script for gc
# Copyright 2006,2007,2008,2009,2010 Robby Workman, Northport, Alabama, USA
# Copyright 2006-2012 Robby Workman, Northport, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,10 +23,12 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=gc
VERSION=${VERSION:-7.1}
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
@ -61,9 +63,9 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
rm -rf $PRGNAM-$TARVERS
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
cd $PRGNAM-$TARVERS
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
@ -85,7 +87,7 @@ gzip -9 $PKG/usr/man/man1/gc.1
mkdir -p $PKG/usr/doc
mv $PKG/usr/share/gc $PKG/usr/doc/$PRGNAM-$VERSION
cp $CWD/$PRGNAM.SlackBuild $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 )

View file

@ -1,8 +1,8 @@
PRGNAM="gc"
VERSION="7.1"
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.1.tar.gz"
MD5SUM="2ff9924c7249ef7f736ecfe6f08f3f9b"
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=""