summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--audio/TiMidity++/TiMidity++.SlackBuild42
-rw-r--r--audio/TiMidity++/doinst.sh2
-rw-r--r--audio/TiMidity++/patches/timidity++-2.14.0-tcltk86.patch (renamed from audio/TiMidity++/timidity++-2.14.0-tcltk86.patch)4
-rw-r--r--audio/TiMidity++/timidity.cfg6
4 files changed, 22 insertions, 32 deletions
diff --git a/audio/TiMidity++/TiMidity++.SlackBuild b/audio/TiMidity++/TiMidity++.SlackBuild
index 73c4c2d624..9c0a2805fa 100644
--- a/audio/TiMidity++/TiMidity++.SlackBuild
+++ b/audio/TiMidity++/TiMidity++.SlackBuild
@@ -8,14 +8,14 @@
PRGNAM=TiMidity++
VERSION=2.14.0
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
+ case "$(uname -m)" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
+ *) ARCH=$(uname -m) ;;
esac
fi
@@ -30,20 +30,17 @@ ENABLE_DYNAMIC="gtk,ncurses,motif,tcltk,emacs,vt100,xaw"
# Support JACK. Requires JACK, of course.
# Disabled by default for those who don't want to install/configure it.
-JACK=${JACK:-no}
-if [ "$JACK" = "yes" ]; then
+if [ "${JACK:-no}" = "yes" ]; then
ENABLE_AUDIO="$ENABLE_AUDIO,jack"
fi
# Support speex. Also disabled by default.
-SPEEX=${SPEEX:-no}
-if [ "$SPEEX" = "yes" ]; then
+if [ "${SPEEX:-no}" = "yes" ]; then
ENABLE_AUDIO="$ENABLE_AUDIO,speex"
fi
# Use xaw3d library in xaw interface module. Disabled by default.
-XAW3D=${XAW3D:-no}
-if [ "$XAW3D" = "yes" ]; then
+if [ "${XAW3D:-no}" = "yes" ]; then
WITH_XAW="xaw3d"
else
WITH_XAW="xaw"
@@ -72,27 +69,21 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
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 \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+chmod -R u+w,go-w,a+rX-st .
# Patches:
# Include tcl's bitmaps in interface to reduce clutter (from git)
# Use tclsh (from git)
# Remove liboggflac autoconf clutter, as it has been merged into flac
# since FLAC-1.1.3
+# Another patch from Gentoo (thanks) for tcl-tk-8.6
for patch in $CWD/patches/* ; do
patch -p1 < $patch
done
-# Another patch from Gentoo (thanks) for tcl-tk-8.6
-patch -p0 < $CWD/timidity++-2.14.0-tcltk86.patch
-
# Regenerate files for automake/autoconf.
# Required for --docdir
-autoreconf
+autoreconf -vif
EXTRACFLAGS="$SLKCFLAGS" \
./configure \
@@ -110,7 +101,7 @@ EXTRACFLAGS="$SLKCFLAGS" \
--enable-network \
--enable-spectrogram \
--enable-xdnd \
- --with-default-path=/etc \
+ --with-default-path=/etc/timidity \
--with-module-dir=/usr/lib${LIBDIRSUFFIX}/timidity \
--with-xaw-resource-prefix=/etc/X11 \
--with-xawlib=${WITH_XAW} \
@@ -119,19 +110,12 @@ EXTRACFLAGS="$SLKCFLAGS" \
make
make install-strip DESTDIR=$PKG
-find $PKG/usr/man -type f -exec gzip -9 {} \;
+find $PKG/usr/man -type f -exec gzip -9 {} +
# Create a default timidity.cfg
# TiMidity++ will complain if this file is missing.
-mkdir -p $PKG/etc
-cat > $PKG/etc/timidity.cfg.new << EOF
-# This is the default configuration file for TiMidity++.
-# See timidity.cfg(5) for details.
-trysource /etc/timidity/crude.cfg
-trysource /etc/timidity/freepats.cfg
-trysource /etc/timidity/eawpats.cfg
-trysource /etc/timidity/fluid.cfg
-EOF
+mkdir -p $PKG/etc/timidity
+cat $CWD/timidity.cfg > $PKG/etc/timidity/timidity.cfg.new
# Copy the startup script
mkdir -p $PKG/etc/rc.d
diff --git a/audio/TiMidity++/doinst.sh b/audio/TiMidity++/doinst.sh
index 56700cc0ff..60eabfdf86 100644
--- a/audio/TiMidity++/doinst.sh
+++ b/audio/TiMidity++/doinst.sh
@@ -22,6 +22,6 @@ preserve_perms() {
config $NEW
}
-config etc/timidity.cfg.new
+config etc/timidity/timidity.cfg.new
preserve_perms etc/rc.d/rc.timidity.new
diff --git a/audio/TiMidity++/timidity++-2.14.0-tcltk86.patch b/audio/TiMidity++/patches/timidity++-2.14.0-tcltk86.patch
index ea2c0eec6c..23ef62aa03 100644
--- a/audio/TiMidity++/timidity++-2.14.0-tcltk86.patch
+++ b/audio/TiMidity++/patches/timidity++-2.14.0-tcltk86.patch
@@ -1,7 +1,7 @@
http://bugs.gentoo.org/451296
---- interface/tk_c.c
-+++ interface/tk_c.c
+--- a/interface/tk_c.c
++++ b/interface/tk_c.c
@@ -913,7 +913,7 @@
vsnprintf(buf, sizeof(buf), fmt, ap);
Tcl_Eval(my_interp, buf);
diff --git a/audio/TiMidity++/timidity.cfg b/audio/TiMidity++/timidity.cfg
new file mode 100644
index 0000000000..ccc4332694
--- /dev/null
+++ b/audio/TiMidity++/timidity.cfg
@@ -0,0 +1,6 @@
+# This is the default configuration file for TiMidity++.
+# See timidity.cfg(5) for details.
+trysource /etc/timidity/crude.cfg
+trysource /etc/timidity/freepats.cfg
+trysource /etc/timidity/eawpats.cfg
+trysource /etc/timidity/fluid.cfg