From daf09edc843d7d52814ae2ca4ea9d3e0523d9379 Mon Sep 17 00:00:00 2001 From: Andrzej Telszewski Date: Wed, 12 May 2010 23:28:35 +0200 Subject: development/autogen: Added to 12.2 repository --- development/autogen/README | 4 ++ development/autogen/autogen.SlackBuild | 93 ++++++++++++++++++++++++++++++++++ development/autogen/autogen.info | 8 +++ development/autogen/slack-desc | 19 +++++++ 4 files changed, 124 insertions(+) create mode 100644 development/autogen/README create mode 100644 development/autogen/autogen.SlackBuild create mode 100644 development/autogen/autogen.info create mode 100644 development/autogen/slack-desc (limited to 'development/autogen') diff --git a/development/autogen/README b/development/autogen/README new file mode 100644 index 0000000000..9c2b089c9f --- /dev/null +++ b/development/autogen/README @@ -0,0 +1,4 @@ +AutoGen is a tool designed to simplify the creation and maintenance +of programs that contain large amounts of repetitious text. It is +especially valuable in programs that have several blocks of text +that must be kept synchronized. diff --git a/development/autogen/autogen.SlackBuild b/development/autogen/autogen.SlackBuild new file mode 100644 index 0000000000..65b8886f13 --- /dev/null +++ b/development/autogen/autogen.SlackBuild @@ -0,0 +1,93 @@ +#!/bin/sh + +# Slackware build script for autogen + +# Copyright 2009 Andrzej Telszewski +# 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=autogen +VERSION=5.9.7 +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-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R a-s,u+w,go+r-w . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --disable-static \ + --build=$ARCH-slackware-linux + +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 || exit 1 + 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/* + +DOCS="README AUTHORS ChangeLog COPYING INSTALL NEWS NOTES THANKS TODO VERSION" +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $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 diff --git a/development/autogen/autogen.info b/development/autogen/autogen.info new file mode 100644 index 0000000000..0b79b86e25 --- /dev/null +++ b/development/autogen/autogen.info @@ -0,0 +1,8 @@ +PRGNAM="autogen" +VERSION="5.9.7" +HOMEPAGE="http://autogen.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/autogen/autogen-5.9.7.tar.bz2" +MD5SUM="71ed6e1104803b99cb962c0dca357014" +MAINTAINER="Andrzej Telszewski" +EMAIL="atelszewski@gmail.com" +APPROVED="rworkman" diff --git a/development/autogen/slack-desc b/development/autogen/slack-desc new file mode 100644 index 0000000000..cabaea1f2f --- /dev/null +++ b/development/autogen/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +autogen: autogen (repetitious text tool) +autogen: +autogen: AutoGen is a tool designed to simplify the creation and maintenance +autogen: of programs that contain large amounts of repetitious text. It is +autogen: especially valuable in programs that have several blocks of text that +autogen: must be kept synchronized. +autogen: +autogen: Homepage: http://autogen.sourceforge.net/ +autogen: +autogen: +autogen: -- cgit v1.2.3