summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson2021-11-28 19:15:35 +0100
committer Willy Sudiarto Raharjo2021-12-04 04:09:04 +0100
commitc895b45a7be19f15e26ea0f2073431b9ea764b15 (patch)
treea3c33d4bc75ca62d09cf9c8270ff878494fd55b3
parent185772e4eb09b499b7c970e8110b7bdc7442475a (diff)
downloadslackbuilds-c895b45a7be19f15e26ea0f2073431b9ea764b15.tar.gz
audio/ecasound: Add python3 support.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--audio/ecasound/ecasound.SlackBuild66
-rw-r--r--audio/ecasound/ecasound.info4
2 files changed, 42 insertions, 28 deletions
diff --git a/audio/ecasound/ecasound.SlackBuild b/audio/ecasound/ecasound.SlackBuild
index 9f751b8b91..3ae97b9f24 100644
--- a/audio/ecasound/ecasound.SlackBuild
+++ b/audio/ecasound/ecasound.SlackBuild
@@ -6,6 +6,7 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20211128 bkw: BUILD=2, add python3 support.
# 20200117 bkw: Updated for v2.9.3.
# 20191202 bkw:
# - Updated for v2.9.2.
@@ -17,7 +18,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=ecasound
VERSION=${VERSION:-2.9.3}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -29,9 +30,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
@@ -67,32 +65,49 @@ chown -R root:root .
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
-# Figure out the version number part of the python lib dir:
-PYVER=$( python -c 'import sys; print "%d.%d" % sys.version_info[0:2]' )
-
# --disable-static and --enable-shared are accepted, but ignored.
# This is deliberate: upstream doesn't want shared libs. See:
# http://www.eca.cx/ecasound-list/2002/10/0031.html
-CFLAGS="-g $SLKCFLAGS" \
-CXXFLAGS="-g $SLKCFLAGS" \
-./configure \
- --enable-python-force-site-packages \
- --disable-arts \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --with-python-modules=/usr/lib$LIBDIRSUFFIX/python$PYVER \
- --enable-python-force-site-packages \
- --disable-all-static \
- --build=$ARCH-slackware-linux
-
+setpyver() {
+ PYVER=$( python -c 'import sys; print("%d.%d" % sys.version_info[0:2])' )
+ echo "=== PYVER='$PYVER'"
+}
+
+conf() {
+ CFLAGS="$SLKCFLAGS" \
+ CXXFLAGS="$SLKCFLAGS" \
+ ./configure \
+ --disable-arts \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --docdir=/usr/doc/$PRGNAM-$VERSION \
+ --with-python-modules=/usr/lib$LIBDIRSUFFIX/python$PYVER \
+ --enable-python-force-site-packages \
+ --disable-all-static \
+ --build=$ARCH-slackware-linux
+}
+
+# first time around, build everything, with python2 support.
+setpyver
+conf
make
make install-strip DESTDIR=$PKG
+# 2nd build, python3 support only. configure has "python" hardcoded as
+# the executable (can't pass python3), so fake it out with $PATH.
+mkdir pytmp
+ln -s /usr/bin/python3 pytmp/python
+export PATH=$(pwd)/pytmp:$PATH
+
+setpyver
+make clean
+conf
+make -C pyecasound install DESTDIR=$PKG
+
# Per -current guidelines (and does no harm on 14.2):
rm -f $PKG/usr/lib$LIBDIRSUFFIX/*.la
@@ -112,9 +127,8 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS BUGS COPYING* INSTALL README RELNOTES TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a AUTHORS BUGS COPYING* INSTALL README RELNOTES TODO \
+ $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/audio/ecasound/ecasound.info b/audio/ecasound/ecasound.info
index 33a656afbc..31a587c080 100644
--- a/audio/ecasound/ecasound.info
+++ b/audio/ecasound/ecasound.info
@@ -1,7 +1,7 @@
PRGNAM="ecasound"
VERSION="2.9.3"
-HOMEPAGE="http://eca.cx/ecasound/"
-DOWNLOAD="http://ecasound.seul.org/download/ecasound-2.9.3.tar.gz"
+HOMEPAGE="https://eca.cx/ecasound/"
+DOWNLOAD="https://ecasound.seul.org/download/ecasound-2.9.3.tar.gz"
MD5SUM="fac6b508946e1ecc214d561919ac2f6f"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""