#!/bin/sh
# Set initial variables:
CWD=`pwd`
TMP=/tmp
PKG=$TMP/package-coreutils
VERSION=5.97
ARCH=alpha
BUILD=1
TARGET=$ARCH-alphaslack-linux

rm -rf $PKG
mkdir -p $PKG
( cd $TMP
rm -rf coreutils-$VERSION
tar xjf $CWD/coreutils-$VERSION.tar.bz2
cd coreutils-$VERSION
chown -R root:root .
find . -perm 666 -exec chmod 644 {} \;
find . -perm 664 -exec chmod 644 {} \;
find . -perm 600 -exec chmod 644 {} \;
find . -perm 444 -exec chmod 644 {} \;
find . -perm 400 -exec chmod 644 {} \;
find . -perm 440 -exec chmod 644 {} \;
find . -perm 777 -exec chmod 755 {} \;
find . -perm 775 -exec chmod 755 {} \;
find . -perm 511 -exec chmod 755 {} \;
find . -perm 711 -exec chmod 755 {} \;
find . -perm 555 -exec chmod 755 {} \;
# Compilation with glibc version later than 2.3.2 needs the environment
# variable DEFAULT_POSIX2_VERSION set to 199209.
# Without the next line, the coreutils will start complaining about 'obsolete'
# command switches, like "tail -20" will be considered obsolete.
# This behaviour breaks many other packages... the 'obsolete' parameters are
# too commonly used to disregard them.  Better to stick with the older more
# widely accepted standards until things begin to demand the new way.
DEFAULT_POSIX2_VERSION=199209 \
CFLAGS=-O2 ./configure \
 --prefix=/usr \
 --bindir=/bin \
 --sysconfdir=/etc \
 --mandir=/usr/man \
 --infodir=/usr/info \
 $TARGET || exit
make || exit
make install DESTDIR=$PKG || exit
mkdir -p $PKG/usr/doc/coreutils-$VERSION $PKG/usr/sbin
cp -a ABOUT-NLS AUTHORS COPYING NEWS README THANKS THANKS-to-translators TODO $PKG/usr/doc/coreutils-$VERSION
cd $PKG
# These are important enough that they should probably all go into /bin at this
# point...   Having some of them unavailable when /usr isn't mounted is just a
# source of unending bug reports for various third party applications.
# Time to end those reports.  :-)
mkdir -p $PKG/bin $PKG/usr/bin
( cd $PKG/usr/bin
  for file in ../../bin/* ; do
    ln  --verbose -sf $file .
  done
)
rm -rf usr/info/dir
gzip -9 usr/info/*
gzip -9 usr/man/man?/*.?
mkdir -p etc
# Add some defaults, although a very slack-like set of default options are built
# into /bin/ls now anyway:
zcat $CWD/DIR_COLORS.gz > etc/DIR_COLORS.new
# Since dircolors no longer provides any default aliases these scripts
# will be needed for ls to act as expected:
mkdir -p etc/profile.d
zcat $CWD/coreutils-dircolors.csh.gz > etc/profile.d/coreutils-dircolors.csh
zcat $CWD/coreutils-dircolors.sh.gz > etc/profile.d/coreutils-dircolors.sh
chmod 755 etc/profile.d/*
# Strip binaries:
( cd $PKG
  find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
  find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
# Remove things that are provided by other Slackware packages:
for dupe in hostname kill su uptime ; do
  rm -f bin/${dupe} usr/bin/${dupe} usr/sbin/${dupe} usr/man/man?/${dupe}.*
done
# Add ginstall links (there's still a lot of stuff that needs this to compile):
( cd bin ; ln -sf install ginstall )
( cd usr/bin ; ln -sf ../../bin/ginstall ginstall )
( cd usr/man/man1 ; ln -sf install.1.gz ginstall.1.gz )
mkdir -p install
zcat $CWD/doinst.sh.gz > install/doinst.sh
cat $CWD/slack-desc > install/slack-desc
# Build the package:
cd $PKG
makepkg -l y -c n $TMP/coreutils-$VERSION-$ARCH-$BUILD.tgz
) 2>&1 | tee $TMP/coreutils.build.log
