summaryrefslogtreecommitdiffstats
path: root/academic/ggobi/ggobi.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'academic/ggobi/ggobi.SlackBuild')
-rw-r--r--academic/ggobi/ggobi.SlackBuild28
1 files changed, 15 insertions, 13 deletions
diff --git a/academic/ggobi/ggobi.SlackBuild b/academic/ggobi/ggobi.SlackBuild
index f951fc056c..61f6523a37 100644
--- a/academic/ggobi/ggobi.SlackBuild
+++ b/academic/ggobi/ggobi.SlackBuild
@@ -4,10 +4,13 @@
# Written by Pedro Mendes pedro@gepasi.org
# hereby put in the public domain
+# 20220308 bkw: Modified by SlackBuilds.org: fix build on 15.0,
+# by upgrading to v2.1.11.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=ggobi
-VERSION=${VERSION:-2.1.8}
+VERSION=${VERSION:-2.1.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -20,9 +23,6 @@ if [ -z "$ARCH" ]; then
esac
fi
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
@@ -57,9 +57,9 @@ 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 \
+ -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 {} \+
CXXFLAGS="$SLKCFLAGS" \
CFLAGS="$SLKCFLAGS" \
@@ -74,9 +74,6 @@ CFLAGS="$SLKCFLAGS" \
--with-all-plugins \
--build=$ARCH-slackware-linux
-# fix problem with graphviz plugin
-patch -p1 < $CWD/ggobi-2.1.8-graphviz.patch
-
make
make install-strip DESTDIR=$PKG
make ggobirc
@@ -86,10 +83,15 @@ cp ggobirc $PKG/etc/xdg/ggobi/ggobirc
rm -f $PKG/usr/info/dir
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING CPLicense.txt ChangeLog INSTALL NEWS README \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+# 20220308 bkw: PDF docs go in the regular doc dir, we don't use /usr/share/doc
+PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
+mkdir -p $PKGDOC
+mv $PKG/usr/share/doc/$PRGNAM/* $PKGDOC
+rm -rf $PKG/usr/share/doc
+cp -a AUTHORS COPYING CPLicense.txt ChangeLog NEWS README $PKGDOC
+cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
+
+rm -f $PKG/usr/lib*/*.la
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc