summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author Kyle Guinn <elyk03@gmail.com>2017-07-05 00:12:27 -0500
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-07-08 07:11:38 +0700
commit4f07a18988721a6e1020a33b1b8efee486fe21f6 (patch)
tree8badfee679cc11979e8eb58d8cdd2b5aaf73f035 /graphics
parentf7a230b7fa81e6e69e50ee78e7e9c55fc656e026 (diff)
downloadslackbuilds-4f07a18988721a6e1020a33b1b8efee486fe21f6.tar.gz
slackbuilds-4f07a18988721a6e1020a33b1b8efee486fe21f6.tar.xz
graphics/mftrace: Updated for version 1.2.19.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/mftrace/mftrace.SlackBuild48
-rw-r--r--graphics/mftrace/mftrace.info8
2 files changed, 27 insertions, 29 deletions
diff --git a/graphics/mftrace/mftrace.SlackBuild b/graphics/mftrace/mftrace.SlackBuild
index 3ad875143e..fa1b29a879 100644
--- a/graphics/mftrace/mftrace.SlackBuild
+++ b/graphics/mftrace/mftrace.SlackBuild
@@ -2,34 +2,34 @@
# Slackware build script for mftrace
-# Copyright 2012 Kyle Guinn <elyk03@gmail.com>, USA
+# Copyright 2012-2017 Kyle Guinn <elyk03@gmail.com>, USA
# 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.
+# 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.
+# 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=mftrace
-VERSION=${VERSION:-1.2.18}
+VERSION=${VERSION:-1.2.19}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$(uname -m)" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$(uname -m) ;;
esac
@@ -37,7 +37,7 @@ fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
+PKG=$TMP/package-$PRGNAM-$VERSION
OUTPUT=${OUTPUT:-/tmp}
DOCS="COPYING ChangeLog README*"
@@ -45,6 +45,9 @@ DOCS="COPYING ChangeLog README*"
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+ LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
@@ -65,14 +68,10 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$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 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+chmod -R u+w,go-w,a+rX-st .
# Make it support $SLKCFLAGS
-sed -i "s/^CFLAGS =/CFLAGS +=/" GNUmakefile.in
+sed -i "s/^CFLAGS =/CFLAGS ?=/" GNUmakefile.in
./configure \
--prefix=/usr \
@@ -83,14 +82,13 @@ sed -i "s/^CFLAGS =/CFLAGS +=/" GNUmakefile.in
--infodir=/usr/info \
--docdir=/usr/doc/$PRGNAM-$VERSION
-CFLAGS="$SLKCFLAGS" \
- make
+CFLAGS="$SLKCFLAGS" make
make install DESTDIR=$PKG
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -exec file {} + | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-find $PKG/usr/man -type f -exec gzip -9 {} \;
+find $PKG/usr/man -type f -exec gzip -9 {} +
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
diff --git a/graphics/mftrace/mftrace.info b/graphics/mftrace/mftrace.info
index 057d0befcc..a8f6fff4f7 100644
--- a/graphics/mftrace/mftrace.info
+++ b/graphics/mftrace/mftrace.info
@@ -1,8 +1,8 @@
PRGNAM="mftrace"
-VERSION="1.2.18"
-HOMEPAGE="http://www.lilypond.org/mftrace/"
-DOWNLOAD="http://lilypond.org/download/sources/mftrace/mftrace-1.2.18.tar.gz"
-MD5SUM="7d660226b6f933a239b2413ac010fe0c"
+VERSION="1.2.19"
+HOMEPAGE="http://lilypond.org/mftrace/"
+DOWNLOAD="http://lilypond.org/downloads/sources/mftrace/mftrace-1.2.19.tar.gz"
+MD5SUM="3ebc54a327cde6c3ae8524bd49a5e8db"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="potrace t1utils"