diff options
Diffstat (limited to 'libraries/matplotlib/matplotlib.SlackBuild')
-rw-r--r-- | libraries/matplotlib/matplotlib.SlackBuild | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/libraries/matplotlib/matplotlib.SlackBuild b/libraries/matplotlib/matplotlib.SlackBuild index ffb54ac04349..d73281a6c142 100644 --- a/libraries/matplotlib/matplotlib.SlackBuild +++ b/libraries/matplotlib/matplotlib.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for matplotlib -# Copyright 2011-2018 Serban Udrea <s.udrea@gsi.de> +# Copyright 2011-2019 Serban Udrea <s.udrea@gsi.de> # All rights reserved. # # Redistribution and use of this script, with or without modification, @@ -30,11 +30,12 @@ PRGNAM=matplotlib VERSION=${VERSION:-2.2.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -TARBALL_VERSION=${TARBALL_VERSION:-2.2.3} # Tarball sometimes has a wrong version number +TARBALL_VERSION=${TARBALL_VERSION:-2.2.3} # Tarball may have wrong versioning ENABLE_TESTS=${ENABLE_TESTS:-N} +DISABLE_WXAGG=${DISABLE_WXAGG:-Y} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -65,19 +66,25 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; ENABLE_TESTS=$(echo "$ENABLE_TESTS"|cut -b 1|tr a-z A-Z) +DISABLE_WXAGG=$(echo "$DISABLE_WXAGG"|cut -b 1|tr a-z A-Z) +cat setup.cfg.template > setup.cfg if [ "$ENABLE_TESTS" = "Y" ] then - cat setup.cfg.template > setup.cfg sed -i "s|#tests = False|tests = True|" setup.cfg fi +if [ "$DISABLE_WXAGG" = "Y" ] +then + sed -i "s|#wxagg = auto|wxagg = False|" setup.cfg +fi + # Use modified setupext.py to make sure that the build process gets # interrupted if requirements are not fulfilled # cat "${CWD}/setupext.py" > setupext.py -python setup.py install --root $PKG > ${CWD}/SETUP.OUTPUT 2>&1 +python setup.py install --root $PKG # > ${CWD}/SETUP.OUTPUT 2>&1 find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |