summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-11-14 22:01:53 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-11-14 22:01:53 +0000
commit4e1688903daac6486304e6852b6f3e31020518fc (patch)
treefb3b7a5469752222f72840803762a5fccb2a9351
parent461d6f8283c03ac37052fe6adc23a59e5a5ca709 (diff)
only include specific ladspa plugins in SAE package; get version info a little more accurate in OS X bundle
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4176 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rwxr-xr-xtools/osx_packaging/osx_build29
-rwxr-xr-xtools/osx_packaging/sae_ladspa/caps.sobin0 -> 804424 bytes
-rwxr-xr-xtools/osx_packaging/sae_ladspa/cmt.sobin0 -> 313840 bytes
-rwxr-xr-xtools/osx_packaging/sae_ladspa/fast_lookahead_limiter_1913.sobin0 -> 49912 bytes
-rwxr-xr-xtools/osx_packaging/sae_ladspa/gverb_1216.sobin0 -> 78876 bytes
-rwxr-xr-xtools/osx_packaging/sae_ladspa/single_para_1203.sobin0 -> 49876 bytes
-rwxr-xr-xtools/osx_packaging/sae_ladspa/tap_pitch.sobin0 -> 46500 bytes
7 files changed, 18 insertions, 11 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 3998490040..60fec9ca8d 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -9,7 +9,7 @@ WITH_JACK=1
WITH_LADSPA=1
STRIP=1
PRINT_SYSDEPS=
-WITH_NLS=0
+WITH_NLS=
while [ $# -gt 0 ] ; do
echo "arg = $1"
@@ -19,9 +19,9 @@ while [ $# -gt 0 ] ; do
# top level build targets
#
- --sae) WITH_NLS=0 ; SAE=1 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
- --public) WITH_NLS=0 ; SAE= ; WITH_JACK=; WITH_LADSPA=1; STRIP= ; shift ;;
- --allinone) SAE= ; WITH_NLS=0 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
+ --sae) WITH_NLS= ; SAE=1 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
+ --public) WITH_NLS= ; SAE= ; WITH_JACK=; WITH_LADSPA=1; STRIP= ; shift ;;
+ --allinone) SAE= ; WITH_NLS= ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
--test) SAE= ; WITH_JACK=; WITH_LADSPA=; STRIP= ; shift ;;
#
@@ -36,9 +36,11 @@ while [ $# -gt 0 ] ; do
esac
done
-version=`grep -m 1 '^ardour_version' ../../SConstruct | cut -d' ' -f 3 | sed "s/'//g"`
-echo "Version is $version"
-info_string="$version built on `hostname` by `whoami` on `date`"
+
+release_version=`grep -m 1 '^ardour_version' ../../SConstruct | cut -d' ' -f 3 | sed "s/'//g"`
+svn_version=`grep -m 1 'svn_revision =' ../../libs/ardour/svn_revision.cc | cut -d' ' -f 6 | sed 's/[";]//g'`
+echo "Version is $release_version / $svn_version"
+info_string="$release_version/$svn_version built on `hostname` by `whoami` on `date`"
echo "Info string is $info_string"
# setup directory structure
@@ -110,7 +112,7 @@ env="<key>LSEnvironment</key><dict><key>ARDOUR_BUNDLED</key><string>true</string
# edit plist
sed -e "s?@ENV@?$env?g" \
- -e "s?@VERSION@?$version?g" \
+ -e "s?@VERSION@?$svn_version?g" \
-e "s?@INFOSTRING@?$info_string?g" < Info.plist.in > Info.plist
# copy static files
@@ -119,7 +121,7 @@ cp Info.plist $APPROOT
cp -R Resources $APPROOT
echo "Copying ardour executable ...."
-cp ../../gtk2_ardour/ardour-$version $APPROOT/MacOS/Ardour2
+cp ../../gtk2_ardour/ardour-$release_version $APPROOT/MacOS/Ardour2
if test x$SAE != x ; then
cp ../../gtk2_ardour/evtest $APPROOT/MacOS/gtkevents
cp Ardour2-SAE.icns $Resources/appIcon.icns
@@ -158,8 +160,13 @@ cp -R $GTKQUARTZ_ROOT/lib/charset.alias $Resources
pwd=`pwd`
if test x$WITH_LADSPA != x ; then
- echo "Copying `ls ladspa | wc -l` plugins ..."
- cp -r ladspa/* $Plugins
+ if test x$SAE != x ; then
+ plugdir=sae_ladspa
+ else
+ plugdir=ladspa
+ fi
+ echo "Copying `ls $plugdir | wc -l` plugins ..."
+ cp -r $plugdir/* $Plugins
fi
# generate new Pango module file
diff --git a/tools/osx_packaging/sae_ladspa/caps.so b/tools/osx_packaging/sae_ladspa/caps.so
new file mode 100755
index 0000000000..e53b10791d
--- /dev/null
+++ b/tools/osx_packaging/sae_ladspa/caps.so
Binary files differ
diff --git a/tools/osx_packaging/sae_ladspa/cmt.so b/tools/osx_packaging/sae_ladspa/cmt.so
new file mode 100755
index 0000000000..e834f6528f
--- /dev/null
+++ b/tools/osx_packaging/sae_ladspa/cmt.so
Binary files differ
diff --git a/tools/osx_packaging/sae_ladspa/fast_lookahead_limiter_1913.so b/tools/osx_packaging/sae_ladspa/fast_lookahead_limiter_1913.so
new file mode 100755
index 0000000000..159f36d89b
--- /dev/null
+++ b/tools/osx_packaging/sae_ladspa/fast_lookahead_limiter_1913.so
Binary files differ
diff --git a/tools/osx_packaging/sae_ladspa/gverb_1216.so b/tools/osx_packaging/sae_ladspa/gverb_1216.so
new file mode 100755
index 0000000000..0aea9095d7
--- /dev/null
+++ b/tools/osx_packaging/sae_ladspa/gverb_1216.so
Binary files differ
diff --git a/tools/osx_packaging/sae_ladspa/single_para_1203.so b/tools/osx_packaging/sae_ladspa/single_para_1203.so
new file mode 100755
index 0000000000..514bd9be91
--- /dev/null
+++ b/tools/osx_packaging/sae_ladspa/single_para_1203.so
Binary files differ
diff --git a/tools/osx_packaging/sae_ladspa/tap_pitch.so b/tools/osx_packaging/sae_ladspa/tap_pitch.so
new file mode 100755
index 0000000000..c32e5ee88e
--- /dev/null
+++ b/tools/osx_packaging/sae_ladspa/tap_pitch.so
Binary files differ