From 7d3cc5499bb1d8cddb2d7377b755bf36fe8aef0a Mon Sep 17 00:00:00 2001 From: B. Watson Date: Sun, 16 Dec 2012 16:42:46 +0100 Subject: audio/vocoder: Added (standalone JACK vocoder effect). Signed-off-by: Matteo Bernardini --- audio/vocoder/README | 14 ++++++ audio/vocoder/compile_fix.diff | 22 ++++++++++ audio/vocoder/doinst.sh | 9 ++++ audio/vocoder/setcap.sh | 2 + audio/vocoder/slack-desc | 19 ++++++++ audio/vocoder/vocoder.SlackBuild | 91 +++++++++++++++++++++++++++++++++++++++ audio/vocoder/vocoder.desktop | 9 ++++ audio/vocoder/vocoder.info | 10 +++++ audio/vocoder/vocoder.png | Bin 0 -> 14595 bytes 9 files changed, 176 insertions(+) create mode 100644 audio/vocoder/README create mode 100644 audio/vocoder/compile_fix.diff create mode 100644 audio/vocoder/doinst.sh create mode 100644 audio/vocoder/setcap.sh create mode 100644 audio/vocoder/slack-desc create mode 100644 audio/vocoder/vocoder.SlackBuild create mode 100644 audio/vocoder/vocoder.desktop create mode 100644 audio/vocoder/vocoder.info create mode 100644 audio/vocoder/vocoder.png (limited to 'audio/vocoder') diff --git a/audio/vocoder/README b/audio/vocoder/README new file mode 100644 index 0000000000..245b1d2675 --- /dev/null +++ b/audio/vocoder/README @@ -0,0 +1,14 @@ +vocoder (standalone JACK vocoder effect) + +A vocoder is a sound effect that can make a human voice sound +synthetic. It is often used to speak like a robot, with a metallic and +monotonous voice. + +This is a standalone JACK application. For a LADSPA version of the same +effect, see vocoder-ladspa. + +This package uses POSIX filesystem capabilities to execute with +elevated privileges (required for realtime audio processing). This +may be considered a security/stability risk. Please read +http://www.slackbuilds.org/caps/ for more information. To disable +capabilities, pass SETCAP=no to the script. diff --git a/audio/vocoder/compile_fix.diff b/audio/vocoder/compile_fix.diff new file mode 100644 index 0000000000..b0fc05d685 --- /dev/null +++ b/audio/vocoder/compile_fix.diff @@ -0,0 +1,22 @@ +diff -Naur vocoder/src/output_jack.cpp vocoder.patched/src/output_jack.cpp +--- vocoder/src/output_jack.cpp 2009-05-25 17:56:46.000000000 -0400 ++++ vocoder.patched/src/output_jack.cpp 2012-11-22 15:10:01.000000000 -0500 +@@ -5,6 +5,7 @@ + */ + + // Includes /*fold00*/ ++#include + #include + #include "output_jack.h" + +diff -Naur vocoder/util/play_loop.cc vocoder.patched/util/play_loop.cc +--- vocoder/util/play_loop.cc 2009-03-07 05:42:17.000000000 -0500 ++++ vocoder.patched/util/play_loop.cc 2012-11-22 15:09:10.000000000 -0500 +@@ -5,6 +5,7 @@ + */ + + // Includes /*fold00*/ ++#include + #include + #include + #include diff --git a/audio/vocoder/doinst.sh b/audio/vocoder/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/audio/vocoder/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/audio/vocoder/setcap.sh b/audio/vocoder/setcap.sh new file mode 100644 index 0000000000..e31d271b94 --- /dev/null +++ b/audio/vocoder/setcap.sh @@ -0,0 +1,2 @@ + +[ -x /sbin/setcap ] && /sbin/setcap cap_ipc_lock,cap_sys_nice=ep usr/bin/vocoder diff --git a/audio/vocoder/slack-desc b/audio/vocoder/slack-desc new file mode 100644 index 0000000000..7048528b55 --- /dev/null +++ b/audio/vocoder/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +vocoder: vocoder (standalone JACK vocoder effect) +vocoder: +vocoder: A vocoder is a sound effect that can make a human voice sound +vocoder: synthetic. It is often used to speak like a robot, with a metallic +vocoder: and monotonous voice. +vocoder: +vocoder: homepage: http://www.sirlab.de/linux/descr_vocoder.html +vocoder: +vocoder: +vocoder: +vocoder: diff --git a/audio/vocoder/vocoder.SlackBuild b/audio/vocoder/vocoder.SlackBuild new file mode 100644 index 0000000000..6d94c63c72 --- /dev/null +++ b/audio/vocoder/vocoder.SlackBuild @@ -0,0 +1,91 @@ +#!/bin/bash + +# Slackware build script for vocoder + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. + +PRGNAM=vocoder +VERSION=${VERSION:-0.29} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM +tar xvf $CWD/$PRGNAM-jack-$VERSION.tar.gz +cd $PRGNAM +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Add a couple missing #include +patch -p1 < $CWD/compile_fix.diff + +make + +# manual install (no install target in Makefile) +mkdir -p $PKG/usr/bin +install -s -m0755 src/$PRGNAM $PKG/usr/bin/$PRGNAM + +# icon made for this slackbuild, by crudely stitching together a generic Tux +# plus http://openclipart.org/detail/24414/old-style-microphone-by-boobaloo +mkdir -p $PKG/usr/share/pixmaps +cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png + +# .desktop written for this slackbuild. +mkdir -p $PKG/usr/share/applications +cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYRIGHT README $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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +# Only add capability stuff if not disabled: +if [ "${SETCAP:-yes}" = "yes" ]; then + cat $CWD/setcap.sh >> $PKG/install/doinst.sh + # Only allow execution by audio group + chown root:audio $PKG/usr/bin/$PRGNAM + chmod 0750 $PKG/usr/bin/$PRGNAM +fi + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/audio/vocoder/vocoder.desktop b/audio/vocoder/vocoder.desktop new file mode 100644 index 0000000000..7c2935cde1 --- /dev/null +++ b/audio/vocoder/vocoder.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=vocoder +GenericName=JACK Vocoder +Comment=Audio Effect +Exec=vocoder +Icon=vocoder +Categories=AudioVideo;X-Jack;Midi;X-MIDI;Audio; +Terminal=false +Type=Application diff --git a/audio/vocoder/vocoder.info b/audio/vocoder/vocoder.info new file mode 100644 index 0000000000..fbc368f606 --- /dev/null +++ b/audio/vocoder/vocoder.info @@ -0,0 +1,10 @@ +PRGNAM="vocoder" +VERSION="0.29" +HOMEPAGE="http://www.sirlab.de/linux/descr_vocoder.html" +DOWNLOAD="http://www.sirlab.de/linux/download/vocoder-jack-0.29.tar.gz" +MD5SUM="298f47a4bb42a12de1d28726a8fe8c07" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="jack-audio-connection-kit fltk" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" diff --git a/audio/vocoder/vocoder.png b/audio/vocoder/vocoder.png new file mode 100644 index 0000000000..b14e76e98b Binary files /dev/null and b/audio/vocoder/vocoder.png differ -- cgit v1.2.3