summaryrefslogtreecommitdiffstats
path: root/audio/xmms-ladspa/xmms-ladspa.SlackBuild
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2017-03-15 15:45:47 +0000
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-03-18 06:58:36 +0700
commit0c50fe31054ea9bef3ffe6881c61f55ffb022e29 (patch)
treedd6fe9882cf3398d475cefab12ce257ab6062fa2 /audio/xmms-ladspa/xmms-ladspa.SlackBuild
parent85ef10e91e6e004b2ccbda15a40a3a9a34062fb1 (diff)
downloadslackbuilds-0c50fe31054ea9bef3ffe6881c61f55ffb022e29.tar.gz
slackbuilds-0c50fe31054ea9bef3ffe6881c61f55ffb022e29.tar.xz
audio/xmms-ladspa: Added (LADSPA plugin support for XMMS).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio/xmms-ladspa/xmms-ladspa.SlackBuild')
-rw-r--r--audio/xmms-ladspa/xmms-ladspa.SlackBuild88
1 files changed, 88 insertions, 0 deletions
diff --git a/audio/xmms-ladspa/xmms-ladspa.SlackBuild b/audio/xmms-ladspa/xmms-ladspa.SlackBuild
new file mode 100644
index 0000000000..e6a7d42428
--- /dev/null
+++ b/audio/xmms-ladspa/xmms-ladspa.SlackBuild
@@ -0,0 +1,88 @@
+#!/bin/sh
+
+# Slackware build script for xmms-ladspa
+
+# Written by B. Watson (yalhcru@gmail.com)
+
+# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+
+# Notes:
+# - The source includes its own ladspa.h, which is why ladspa_sdk isn't
+# listed in REQUIRES.
+# - Certain ladspa plugins will make xmms segfault when the xmms
+# plugin tries to enumerate all the plugins available. guitarix's
+# plugins are the only ones on my system that do this. All the
+# other SBo packages that install ladspa plugins seem OK, so the
+# "fix" for this is (for now anyway) just to have xmms-ladspa skip
+# any plugin with "guitarix" in its name.
+# - The source is called xmms_ladspa. I chose to use xmms-ladspa for
+# PRGNAM so it'll match all the other xmms-* builds on SBo.
+
+PRGNAM=xmms-ladspa
+VERSION=${VERSION:-1.1}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+set -e
+
+SRCNAM=${PRGNAM/-/_}
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $SRCNAM-$VERSION
+tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
+cd $SRCNAM-$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 {} \;
+
+# Dirty hack alert: guitarix's plugins cause xmms to segfault when trying
+# to configure the ladspa plugins.
+patch -p1 < $CWD/skip_guitarix.diff
+
+sed -i "s,-fPIC,& $SLKCFLAGS," Makefile
+
+make
+mkdir -p $PKG/usr/lib$LIBDIRSUFFIX/xmms/Effect
+install -m0755 -s ladspa.so $PKG/usr/lib$LIBDIRSUFFIX/xmms/Effect
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a README PLUGINS COPYING ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}