system/star: Removed from 13.0 repository

This commit is contained in:
Heinz Wiesinger 2010-05-13 00:09:29 +02:00
parent 477cb0202c
commit b4692a993f
4 changed files with 0 additions and 124 deletions

View file

@ -1,18 +0,0 @@
star - unique standard tape archiver
star is a very fast tar(1) like tape archiver with improved functionality.
star includes the first free implementation of POSIX.1-2001 extended tar
headers, is built on top of libfind, includes a sophisticated diff command,
and has no limitation on filename length.
star automatically recognizes standard archive formats and non-standard
formats, such as gnu, by their deviations from the standard. Star is able
to archive and restore Access Control Lists for files using POSIX.1-2001
extended headers.
It is recommended to build star using smake
(http://cdrecord.berlios.de/private/smake.html)
star installs under /opt/schily/ with other schily applications. Symlinks will
be created for gnutar, suntar, tar, and several others, so those can be used at
the command-line in favour of their GNU counterparts by modifying the order of
of PATH entries.

View file

@ -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-------------------------------------------------------|
star: star (unique standard tape archiver)
star:
star: star is a very fast tar(1) like tape archiver with improved
star: functionality. star includes the first free implementation of
star: POSIX.1-2001 extended tar headers, is build on top of libfind,
star: includes a sophisticated diff command, has no limitation on
star: filename length. star automatically recognizes standard archive
star: formats and non-standard formats by their deviations from the
star: standard. Star is able to archive and restore ACLs for files
star: using POSIX.1-2001 extended headers.
star:

View file

@ -1,79 +0,0 @@
#!/bin/sh
# Slackware build script for star
# Written by jpipkin <jpipkin@dawnrazor.org>
# Licensed under the WTFPL
# http://sam.zoy.org/wtfpl/COPYING
PRGNAM=star
VERSION=1.5a89
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-1.5
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-1.5
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 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
if [ -x /opt/schily/bin/smake ]; then
/opt/schily/bin/smake
/opt/schily/bin/smake install DESTDIR=$PKG
else
./Gmake.linux
./Gmake.linux install DESTDIR=$PKG
fi
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
mkdir - p $PKG/usr ; mv $PKG/opt/schily/man $PKG/usr
( 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/$PRGNAM-$VERSION
cp -a BUILD CDDL*txt CONTRIBUTING COPYING Changelog GPL-2.0.txt LGPL-2.1.txt \
PORTING README.* STATUS.alpha TODO $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
# Fix up some ridiculous ownership/permissions
chown -R root:root .
find . -type f -exec chmod u+w {} \;
find . -type d -exec chmod 0755 {} \;
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -1,8 +0,0 @@
PRGNAM="star"
VERSION="1.5a89"
HOMEPAGE="http://cdrecord.berlios.de/private/star.html"
DOWNLOAD="ftp://ftp.berlios.de/pub/star/alpha/star-1.5a89.tar.bz2"
MD5SUM="b75a14385aeaa7b8213d481c758f766d"
MAINTAINER="jpipkin"
EMAIL="jpipkin@dawnrazor.org"
APPROVED="rworkman"