From f3c1559f6816b3de1108ee1fe1368009d57016e4 Mon Sep 17 00:00:00 2001 From: Niki Kovacs Date: Tue, 11 May 2010 20:01:09 +0200 Subject: misc/recode: Added to 12.0 repository --- misc/recode/recode.SlackBuild | 80 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 misc/recode/recode.SlackBuild (limited to 'misc/recode/recode.SlackBuild') diff --git a/misc/recode/recode.SlackBuild b/misc/recode/recode.SlackBuild new file mode 100644 index 000000000000..7c5cafa4c4b5 --- /dev/null +++ b/misc/recode/recode.SlackBuild @@ -0,0 +1,80 @@ +#!/bin/sh + +# Copyright (c) 2007 Niki Kovacs +# +# By: Niki Kovacs +# For: recode +# URL: ftp://ftp.gnu.org/pub/gnu/recode/ + +# Modified by Robby Workman +# Further small mods by Richard Hoyle + +PRGNAM=recode +VERSION=3.6 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +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" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R a-s,u+w,go+r-w . + +# Some important fixes from debian and ubuntu. +# We normally don't like this idea, as it puts us maintaining the upstream +# sources, but in this case, we'll make an exception. +# I *really* don't like the non-bugfix parts of the debian patch, but I +# guess I'll let it slide --rworkman +for patch in $CWD/patches/* ; do + bzcat $patch | patch -p1 --verbose --backup || exit 1 +done + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --enable-static=no + +make +make install DESTDIR=$PKG + +( 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 +) + +( 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 +) + +rm -f $PKG/usr/info/dir +gzip -9 $PKG/usr/info/*.info* + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ABOUT-NLS AUTHORS BACKLOG COPYING* NEWS PATCHES-AC README THANKS 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 +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz -- cgit v1.2.3