Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Robin Cook (838dacee3df8956dfc2bad8b953e5c0610d2dea6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Robin Cook <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Robin Cook (838dacee3df8956dfc2bad8b953e5c0610d2dea6)
  • Date: Fri, 10 Dec 2010 19:11:08 -0600

GIT changes to master grimoire by Robin Cook <rcook AT wyrms.net>:

audio-libs/ladspa/BUILD | 7 ++++++-
audio-libs/ladspa/DETAILS | 24 ++++++++++++------------
audio-libs/ladspa/HISTORY | 8 ++++++++
audio-libs/ladspa/INSTALL | 18 +++++++++++++++++-
audio-libs/ladspa/PREPARE | 1 +
audio-libs/ladspa/ladspa_sdk_1.13.tgz.sig |binary
6 files changed, 44 insertions(+), 14 deletions(-)

New commits:
commit 838dacee3df8956dfc2bad8b953e5c0610d2dea6
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

ladspa: changed spell offer installing the utils in addition to the header

diff --git a/audio-libs/ladspa/BUILD b/audio-libs/ladspa/BUILD
index 27ba77d..c8c2fef 100755
--- a/audio-libs/ladspa/BUILD
+++ b/audio-libs/ladspa/BUILD
@@ -1 +1,6 @@
-true
+if [ "$LADSPA_SDK" == "y" ]; then
+ cd $SOURCE_DIRECTORY/src &&
+ make
+else
+ true
+fi
diff --git a/audio-libs/ladspa/DETAILS b/audio-libs/ladspa/DETAILS
index 889e989..007462d 100755
--- a/audio-libs/ladspa/DETAILS
+++ b/audio-libs/ladspa/DETAILS
@@ -1,15 +1,15 @@
- SPELL=ladspa
- SOURCE=ladspa.h.txt
- VERSION=1.1
-SOURCE_URL[0]=http://www.ladspa.org/ladspa_sdk/$SOURCE
- WEB_SITE=http://www.ladspa.org
- GATHER_DOCS=off
- ENTERED=20020516
- UPDATED=20021010
- LICENSE[0]=LGPL
-
SOURCE_HASH=sha512:052eacfa7c81e6608e8d65e40abb5214e7dd02a856c5e72b520e837b4b3f824c163d35166d73446522ea34ffd62fdbb78d745e83ede426ba7acc826145f4eef2
- KEYWORDS="plugins audio"
- SHORT="Linux Audio Developer's Simple Plugin API (LADSPA)"
+ SPELL=ladspa
+ VERSION=1.13
+ SOURCE=${SPELL}_sdk_$VERSION.tgz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/${SPELL}_sdk
+ SOURCE_URL[0]=http://www.ladspa.org/download/$SOURCE
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
+ GATHER_DOCS=off
+ LICENSE[0]=LGPL
+ WEB_SITE=http://www.ladspa.org
+ ENTERED=20020516
+ KEYWORDS="plugins audio"
+ SHORT="Linux Audio Developer's Simple Plugin API (LADSPA)"
cat << EOF
Many audio synthesis and recording packages are in use or in development on
Linux. These work in many different ways. LADSPA provides a standard way for
diff --git a/audio-libs/ladspa/HISTORY b/audio-libs/ladspa/HISTORY
index e9a000c..f83bbe0 100644
--- a/audio-libs/ladspa/HISTORY
+++ b/audio-libs/ladspa/HISTORY
@@ -1,3 +1,11 @@
+2010-12-10 Robin Cook <rcook AT wyrms.net>
+ * DETAILS: changed SOURCE to actual source file
+ changed SOURCE_URL to the actual source file
+ added SOURCE_DIRECTORY
+ * PREPARE: added query to install utils
+ * BUILD: added building utils
+ * INSTALL: added installing utils
+
2008-08-21 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* DEPENDS: suggest swh-plugins #11720

diff --git a/audio-libs/ladspa/INSTALL b/audio-libs/ladspa/INSTALL
index bf1c246..8175d23 100755
--- a/audio-libs/ladspa/INSTALL
+++ b/audio-libs/ladspa/INSTALL
@@ -1,3 +1,19 @@
+cd $SOURCE_DIRECTORY &&
+
+if [ "$LADSPA_SDK" == "y" ]; then
+ echo "Installing LADSPA utils..." &&
+
+ mkdir -p "$INSTALL_ROOT/usr/lib/ladspa/" &&
+ mkdir -p "$INSTALL_ROOT/usr/bin/" &&
+ mkdir -p "$INSTALL_ROOT/usr/share/doc/ladspa" &&
+
+ cp plugins/* "$INSTALL_ROOT/usr/lib/ladspa/" &&
+ cp bin/* "$INSTALL_ROOT/usr/bin/" &&
+ cp doc/* "$INSTALL_ROOT/usr/share/doc/ladspa"
+fi &&
+
echo "Installing LADSPA header..." &&

-cp "$SOURCE_CACHE/$SOURCE" "$INSTALL_ROOT/usr/include/ladspa.h"
+mkdir -p "$INSTALL_ROOT/usr/include/" &&
+
+cp src/ladspa.h "$INSTALL_ROOT/usr/include/"
diff --git a/audio-libs/ladspa/PREPARE b/audio-libs/ladspa/PREPARE
new file mode 100755
index 0000000..b3f3b4d
--- /dev/null
+++ b/audio-libs/ladspa/PREPARE
@@ -0,0 +1 @@
+config_query LADSPA_SDK "Install SDK utils?" y
diff --git a/audio-libs/ladspa/ladspa_sdk_1.13.tgz.sig
b/audio-libs/ladspa/ladspa_sdk_1.13.tgz.sig
new file mode 100644
index 0000000..777789e
Binary files /dev/null and b/audio-libs/ladspa/ladspa_sdk_1.13.tgz.sig differ



  • [SM-Commit] GIT changes to master grimoire by Robin Cook (838dacee3df8956dfc2bad8b953e5c0610d2dea6), Robin Cook, 12/10/2010

Archive powered by MHonArc 2.6.24.

Top of Page