diff options
author | Petar Petrov <ppetrov@paju.oulu.fi> | 2011-12-21 23:48:59 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-12-21 23:48:59 -0600 |
commit | d74ce3a23f591fdd59d28a475ff59d87852a7647 (patch) | |
tree | 02dc47d4e75de0697e9c5ea0bc4af5a188ece331 /academic/seaview/seaview.SlackBuild | |
parent | 27e77182ffa0e4b5f59236e1a95fdb3b371522f9 (diff) | |
download | slackbuilds-d74ce3a23f591fdd59d28a475ff59d87852a7647.tar.gz |
academic/seaview: Updated for version 4.3.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'academic/seaview/seaview.SlackBuild')
-rw-r--r-- | academic/seaview/seaview.SlackBuild | 43 |
1 files changed, 32 insertions, 11 deletions
diff --git a/academic/seaview/seaview.SlackBuild b/academic/seaview/seaview.SlackBuild index 6e8967e0da..238764fd43 100644 --- a/academic/seaview/seaview.SlackBuild +++ b/academic/seaview/seaview.SlackBuild @@ -1,17 +1,33 @@ #!/bin/sh # Slackware build script for seaview -# Written by Petar Petrov, <ppetrov@paju.oulu.fi> and -# hereby submitted to the public domain -# THIS SLACKBUILD IS DISTRIBUTETD IN THE HOPE OF BEING -# USEFUL BUT WITHOUT ANY WARRANTY. THE AUTHOR IS _NOT_ -# RESPONSIBLE FOR ANY DAMAGE OR DATA LOSS CAUSED BY IT. +# Copyright 2011 Petar Petrov, ppetrov@paju.oulu.fi +# 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. + +# Thanks to Niels Horn for correcting the CFLAGS. PRGNAM=seaview -VERSION=${VERSION:-4.3.0} +VERSION=${VERSION:-4.3.2} BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} +TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -46,7 +62,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM -tar xvf $CWD/$PRGNAM.tar.gz +tar xvf $CWD/${PRGNAM}_${VERSION}.tar.gz cd $PRGNAM chown -R root:root . find . \ @@ -55,15 +71,20 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -#Use our CFLAGS +# Use our CFLAGS sed -i "/^CFLAGS/s/=/+=/" Makefile +# Point to the correct documentation path and phyml executable name +sed -i "s:#HELPFILE:HELPFILE:" Makefile +sed -i "s:/share/doc/seaview:/doc/$PRGNAM-$VERSION/:" Makefile +sed -i "s:#PHYMLNAME:PHYMLNAME:" Makefile + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ make -install -D -m755 seaview $PKG/usr/bin/seaview -install -D -m644 seaview.1 $PKG/usr/man/man1/seaview.1 +install -D -m755 seaview $PKG/usr/bin/$PRGNAM +install -D -m644 seaview.1 $PKG/usr/man/man1/$PRGNAM.1 find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |