audio/cmt: Updated for version 1.17.

Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
B. Watson 2019-12-10 16:09:38 -05:00 committed by Willy Sudiarto Raharjo
parent bb14fef816
commit e7afd2c992
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 29 additions and 19 deletions

View file

@ -6,9 +6,11 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20191210 bkw: Update for v1.17. Script can still build v1.16.
PRGNAM=cmt PRGNAM=cmt
VERSION=${VERSION:-1.16} VERSION=${VERSION:-1.17}
BUILD=${BUILD:-2} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then if [ -z "$ARCH" ]; then
@ -40,29 +42,37 @@ fi
set -e set -e
# 20191210 bkw: v1.16 tarball has _src_ in the filename, v1.17 doesn't. Be
# flexible, there's a good case to be made for allowing users to build
# the older version (if their old ardour projects use it, and if the
# new version changed the parameters to some plugin they're using...)
for i in ${PRGNAM}_src_$VERSION.tgz ${PRGNAM}_$VERSION.tgz; do
[ -e "$i" ] && TARBALL="$i"
done
rm -rf $PKG rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $TMP cd $TMP
rm -rf $PRGNAM rm -rf $PRGNAM ${PRGNAM}_${VERSION}
tar xvf $CWD/${PRGNAM}_src_$VERSION.tgz tar xvf $CWD/$TARBALL
cd $PRGNAM # v1.16 || v1.17
cd $PRGNAM || cd ${PRGNAM}_${VERSION}
chown -R root:root . chown -R root:root .
find -L . \ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
chmod 644 doc/* chmod 644 doc/*
if [ "${FORCE_SLACK_CFLAGS:-no}" = "yes" ]; then if [ "${FORCE_SLACK_CFLAGS:-no}" = "yes" ]; then
sed -i 's/-O3/'"$SLKCFLAGS"'/' src/makefile for i in makefile Makefile; do
[ -e src/$i ] && MF=$i
done
sed -i 's/-O3/'"$SLKCFLAGS"'/' src/$MF
fi fi
# Fix glibc double-free errors when cmt's sine and ladspa_sdk's sine # Fix glibc double-free errors when cmt-1.16's sine and ladspa_sdk's sine
# both get loaded into the same ladspa host. Sent patch upstream, but # both get loaded into the same ladspa host. Sent patch upstream, it was
# cmt is "legacy", there hasn't been a release since 2007, so not holding # included in the 1.17 src, so only patch if we're building 1.16.
# my breath. [ "$VERSION" = "1.16" ] && patch -p1 < $CWD/fix_sine.diff
patch -p1 < $CWD/fix_sine.diff
make -C src make -C src
mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/ladspa mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/ladspa

View file

@ -1,8 +1,8 @@
PRGNAM="cmt" PRGNAM="cmt"
VERSION="1.16" VERSION="1.17"
HOMEPAGE="http://www.ladspa.org/cmt/overview.html" HOMEPAGE="http://www.ladspa.org/cmt/overview.html"
DOWNLOAD="http://www.ladspa.org/download/cmt_src_1.16.tgz" DOWNLOAD="http://www.ladspa.org/download/cmt_1.17.tgz"
MD5SUM="15a875e5aaf79c209c223babfb41cb1c" MD5SUM="ce10250b30219ee8392a97266e95fa16"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="ladspa_sdk" REQUIRES="ladspa_sdk"