diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2013-04-23 20:47:39 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2013-04-28 12:28:47 -0300 |
commit | 9ba290b047c18a49f6bf7a43ea4af27cb01435df (patch) | |
tree | 8a94c9df9dd75e8c82fc75d44f1a700b524502f0 /libraries/libnfs/libnfs.SlackBuild | |
parent | 1dfe91d6031b297671cf4eec8e60cd7eb741c0e2 (diff) |
libraries/libnfs: Updated for version 1.5.0.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/libnfs/libnfs.SlackBuild')
-rw-r--r-- | libraries/libnfs/libnfs.SlackBuild | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/libraries/libnfs/libnfs.SlackBuild b/libraries/libnfs/libnfs.SlackBuild index 50cd4078ff67..24bab68ebf0b 100644 --- a/libraries/libnfs/libnfs.SlackBuild +++ b/libraries/libnfs/libnfs.SlackBuild @@ -2,10 +2,28 @@ # Slackware build script for libnfs -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2012-2013 Larry Hajali <larryhaja[at]gmail[dot]com> +# 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=libnfs -VERSION=${VERSION:-1.3.0} +VERSION=${VERSION:-1.5.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -38,21 +56,12 @@ fi set -e -# In $CWD -if [ ! -r sahlberg-$PRGNAM-$PRGNAM-$VERSION-0-g47e5a2c.tar.gz ]; then - if [ -r $PRGNAM-$VERSION ]; then - mv $PRGNAM-$VERSION sahlberg-$PRGNAM-$PRGNAM-$VERSION-0-g47e5a2c.tar.gz - fi -fi - -DIRNAME=$(tar -tf $CWD/sahlberg-$PRGNAM-$PRGNAM-$VERSION-0-g47e5a2c.tar.gz | head -1) - rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $DIRNAME -tar xvf $CWD/sahlberg-$PRGNAM-$PRGNAM-$VERSION-0-g47e5a2c.tar.gz -cd $DIRNAME +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -60,14 +69,21 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -./bootstrap +# Make libtirpc optional. Default is not to build w/libtirpc. +if [ "${LIBTIRPC:-no}" == "yes" ]; then + OPT_DEPS="--enable-tirpc" +else + unset OPT_DEPS +fi CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ + --disable-dependency-tracking \ --enable-static=no \ + $OPT_DEPS \ --build=$ARCH-slackware-linux make |