From d21f4d38511008a9dcffa22b58162f361f69b00c Mon Sep 17 00:00:00 2001 From: Johannes Schoepfer Date: Sat, 16 Nov 2019 21:02:52 +0700 Subject: audio/linuxsampler: Updated for v 2.1.1, moved from multimedia. Signed-off-by: Willy Sudiarto Raharjo --- multimedia/linuxsampler/README | 3 - multimedia/linuxsampler/gcc47.patch | 12 ---- multimedia/linuxsampler/linuxsampler.SlackBuild | 87 ------------------------- multimedia/linuxsampler/linuxsampler.info | 10 --- multimedia/linuxsampler/slack-desc | 19 ------ 5 files changed, 131 deletions(-) delete mode 100644 multimedia/linuxsampler/README delete mode 100644 multimedia/linuxsampler/gcc47.patch delete mode 100644 multimedia/linuxsampler/linuxsampler.SlackBuild delete mode 100644 multimedia/linuxsampler/linuxsampler.info delete mode 100644 multimedia/linuxsampler/slack-desc (limited to 'multimedia') diff --git a/multimedia/linuxsampler/README b/multimedia/linuxsampler/README deleted file mode 100644 index 727021f13d..0000000000 --- a/multimedia/linuxsampler/README +++ /dev/null @@ -1,3 +0,0 @@ -The LinuxSampler project was founded with the goal to produce a free -streaming-capable open source pure software audio sampler with professional -grade features. diff --git a/multimedia/linuxsampler/gcc47.patch b/multimedia/linuxsampler/gcc47.patch deleted file mode 100644 index d021a01e0c..0000000000 --- a/multimedia/linuxsampler/gcc47.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur linuxsampler-1.0.0.orig/src/common/Pool.h linuxsampler-1.0.0/src/common/Pool.h ---- linuxsampler-1.0.0.orig/src/common/Pool.h 2008-12-07 01:18:04.000000000 +0100 -+++ linuxsampler-1.0.0/src/common/Pool.h 2012-09-17 15:27:17.580041864 +0200 -@@ -393,7 +393,7 @@ - inline Iterator allocAppend() { - if (pPool->poolIsEmpty()) return RTListBase::begin(); - Iterator element = pPool->alloc(); -- append(element); -+ this->append(element); - #if CONFIG_DEVMODE - element.list = this; - #endif // CONFIG_DEVMODE diff --git a/multimedia/linuxsampler/linuxsampler.SlackBuild b/multimedia/linuxsampler/linuxsampler.SlackBuild deleted file mode 100644 index 34992d27ab..0000000000 --- a/multimedia/linuxsampler/linuxsampler.SlackBuild +++ /dev/null @@ -1,87 +0,0 @@ -#!/bin/sh - -# Slackware build script for -# Written by Michales Michaloudes korgie@gmail.com - -PRGNAM=linuxsampler -VERSION=${VERSION:-1.0.0} -BUILD=${BUILD:-2} -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-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Fix for gcc-4.7.x -patch -p1 < $CWD/gcc47.patch - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --disable-static \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -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 COPYING ChangeLog INSTALL NEWS 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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/multimedia/linuxsampler/linuxsampler.info b/multimedia/linuxsampler/linuxsampler.info deleted file mode 100644 index 58c574edd2..0000000000 --- a/multimedia/linuxsampler/linuxsampler.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="linuxsampler" -VERSION="1.0.0" -HOMEPAGE="http://www.linuxsampler.org" -DOWNLOAD="http://download.linuxsampler.org/packages/linuxsampler-1.0.0.tar.bz2" -MD5SUM="a97136791a3228d840b006e5481fc39d" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="dssi libgig lv2" -MAINTAINER="Michales Michaloudes" -EMAIL="korgie@gmail.com" diff --git a/multimedia/linuxsampler/slack-desc b/multimedia/linuxsampler/slack-desc deleted file mode 100644 index 07ded6917b..0000000000 --- a/multimedia/linuxsampler/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -linuxsampler: linuxsampler (audio sampler software) -linuxsampler: -linuxsampler: The LinuxSampler project was founded with the goal to produce a -linuxsampler: free, streaming capable open source pure software audio sampler -linuxsampler: with professional grade features, comparable to both hardware -linuxsampler: and commercial Windows/Mac software samplers and to introduce -linuxsampler: new features not yet available by any other sampler in the -linuxsampler: world. -linuxsampler: -linuxsampler: -linuxsampler: -- cgit v1.2.3