diff options
author | Edinaldo P. Silva <edps.mundognu@gmail.com> | 2017-03-12 10:28:13 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-03-18 06:58:15 +0700 |
commit | 6ed12e7d4253bc2d0db844b497a70c2b87f80b9b (patch) | |
tree | 4bfb1e48331a9322c016d1ed40574817df018731 /perl/perl-gtk2/perl-gtk2.SlackBuild | |
parent | d351e5fe22c5fa99866cd055981dd665b5564a95 (diff) | |
download | slackbuilds-6ed12e7d4253bc2d0db844b497a70c2b87f80b9b.tar.gz |
perl/perl-gtk2: Updated for version 1.24991 + new maintainer.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-gtk2/perl-gtk2.SlackBuild')
-rw-r--r-- | perl/perl-gtk2/perl-gtk2.SlackBuild | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/perl/perl-gtk2/perl-gtk2.SlackBuild b/perl/perl-gtk2/perl-gtk2.SlackBuild index 8816466ed7..f8dc1f28a0 100644 --- a/perl/perl-gtk2/perl-gtk2.SlackBuild +++ b/perl/perl-gtk2/perl-gtk2.SlackBuild @@ -1,11 +1,13 @@ #!/bin/sh - -# Slackware build script for perl-gtk2 - +# +# Slackware build script for perl-gtk2. +# # (C) 2007 Michael Wagner <lapinours@web.de> # Copyright 2010, 2012 Binh Nguyen <binhvng@gmail.com> +# Copyright 2014-2017 Glenn Becker <glenn.becker@gmail.com> +# Copyright 2017 Edinaldo P. Silva, Rio de Janeiro, Brazil. +# # All rights reserved. -# Copyright 2014-5 Glenn Becker <glenn.becker@gmail.com> # # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: @@ -25,15 +27,13 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=perl-gtk2 -VERSION=${VERSION:-1.2495} +VERSION=${VERSION:-1.24991} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -SRCNAM=Gtk2 - if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -44,8 +44,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -58,6 +58,8 @@ else LIBDIRSUFFIX="" fi +SRCNAM="Gtk2" + set -e rm -rf $PKG @@ -68,10 +70,10 @@ tar xvf $CWD/$SRCNAM-$VERSION.tar.gz cd $SRCNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; perl Makefile.PL \ OPTIMIZE="$SLKCFLAGS" \ @@ -79,7 +81,6 @@ perl Makefile.PL \ INSTALLDIRS=vendor \ INSTALLVENDORMAN3DIR=/usr/man/man3 make -#make test make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ @@ -87,8 +88,6 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ find $PKG/usr/man -type f -exec gzip -9 {} \; -# Remove perllocal.pod and other special files that don't need to be installed, -# as they will overwrite what's already on the system find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true # Remove empty directories |