libraries/perl-Text-Autoformat: Updated for version 1.669002.

Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
Šime Ramov 2010-06-24 23:47:36 -04:00 committed by dsomero
parent 3ec304add2
commit bbd86b1b80
3 changed files with 24 additions and 37 deletions

View file

@ -1,14 +1,15 @@
perl-Text-Autoformat (Automatic text wrapping and reformatting)
Text::Autoformat provides intelligent formatting of plaintext
without the need for any kind of embedded mark-up. The module
recognizes Internet quoting conventions, a wide range of bulleting
and number schemes, centred text, and block quotations, and
reformats each appropriately. Other options allow the user to adjust
inter-word and inter-paragraph spacing, justify text, and impose
various capitalization schemes.
Text::Autoformat provides intelligent formatting of plaintext without
the need for any kind of embedded mark-up. The module recognizes
Internet quoting conventions, a wide range of bulleting and number
schemes, centred text, and block quotations, and reformats each
appropriately. Other options allow the user to adjust inter-word and
inter-paragraph spacing, justify text, and impose various
capitalization schemes.
The module also supplies a re-entrant, highly configurable replacement
for the built-in Perl format() mechanism.
Requires perl-Text-Reform.

View file

@ -1,11 +1,11 @@
#!/bin/sh
# Slackware build script for perl-Text-Reform
# Slackware build script for perl-Text-Autoformat
# Written by Šime Ramov <s@ramov.com>
PRGNAM=perl-Text-Autoformat
SRCNAM=Text-Autoformat
VERSION=${VERSION:-1.668001}
PRGNAM=perl-$SRCNAM
VERSION=${VERSION:-1.669002}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -24,20 +24,6 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
rm -rf $PKG
@ -53,21 +39,21 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
perl Makefile.PL OPTIMIZE="$SLKCFLAGS" INSTALLDIRS=vendor
perl Makefile.PL \
PREFIX=/usr \
INSTALLDIRS=vendor \
INSTALLVENDORMAN3DIR=/usr/man/man3
make
make test
make install DESTDIR=$PKG
mv $PKG/usr/share/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
)
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
( cd $PKG
find . -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f
find . -depth -type d -empty -delete
)
find $PKG -name "perllocal.pod" -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true
find $PKG -depth -type d -empty -delete || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README Changes config.vim config.emacs $PKG/usr/doc/$PRGNAM-$VERSION

View file

@ -1,8 +1,8 @@
PRGNAM="perl-Text-Autoformat"
VERSION="1.668001"
VERSION="1.669002"
HOMEPAGE="http://search.cpan.org/dist/Text-Autoformat/"
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/Text-Autoformat-1.668001.tar.gz"
MD5SUM="beb168ee1c2e7051b92c37b518751cc3"
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/Text-Autoformat-1.669002.tar.gz"
MD5SUM="c2c400207f49a769e32b5b1b660b07f7"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Šime Ramov"