adjust h-size of color theme manager "Reset to Defaults" button
[ardour.git] / tools / linux_packaging / build
1 #!/bin/bash
2
3 # script for pulling together a Linux app bundle.
4 #
5 # This will create a bundle for a single architecture.
6 # Execute this scirpt on both x86 and x86_64 and then use
7 # package to merge the 2 bundles into a final package with the
8 # installer. See "noderun" for a complete build script.
9
10 # where the GTK stack is installed
11 GTKSTACK_ROOT=$HOME/gtk/inst
12 # where the Ardour dependencies are installed
13 ARDOURSTACK_ROOT=$HOME/a3/inst
14 # the waf build tree to use when copying built/generated files
15 BUILD_ROOT=../../build
16
17 . ../define_versions.sh
18
19 # where harvid and xjadeo binaries are cached
20 if test -z "$CACHEDIR" -o ! -d "$CACHEDIR"; then
21         CACHEDIR=`pwd`
22 fi
23
24 MIXBUS=
25 WITH_HARRISON_LV2=
26 WITH_X42_LV2=
27 WITH_HARVID=
28 STRIP=all
29 PRINT_SYSDEPS=
30 WITH_NLS=
31 EXTERNAL_JACK=
32 VENDOR=Ardour ;
33 EXENAME=ardour
34 GCC5ABI=false
35 USEWINE=false
36 BUILDTYPE=""
37 NOSTRIP="libsuil|libserd|libsord|liblilv|libsratom|liblrdf|libardour|libpbd|libevoral"
38
39 : ${HARRISONCHANNELSTRIP=harrison_channelstrip}
40 : ${HARRISONLV2=harrison_lv2s-n}
41 : ${HARRISONDSPURL=http://www.harrisonconsoles.com/plugins/releases/public}
42
43 if [ $# -eq 0 ] ; then
44         echo ""
45         echo "ERROR - Please specify build type"
46         echo "    --public"
47         echo "    --mixbus"
48         echo ""
49         exit 1
50 fi
51
52 while [ $# -gt 0 ] ; do
53         echo "arg = $1"
54         case $1 in
55
56         #
57         # top level build targets
58         #
59
60         --mixbus)
61                 MIXBUS=1;
62                 WITH_HARRISON_LV2=1 ;
63                 WITH_X42_LV2=1 ;
64                 WITH_NLS=1 ;
65                 STRIP=all
66                 APPNAME=Mixbus ;
67                 VENDOR=Harrison ;
68                 EXENAME=mixbus ;
69                 shift ;;
70         --mixbus32c)
71                 MIXBUS=1;
72                 WITH_HARRISON_LV2=1 ;
73                 WITH_X42_LV2=1 ;
74                 WITH_NLS=1 ;
75                 STRIP=all
76                 APPNAME=Mixbus32C ;
77                 VENDOR=Harrison ;
78                 EXENAME=mixbus32c ;
79                 major_version=""
80                 shift ;;
81         --public)
82                 WITH_HARRISON_LV2=1 ;
83                 WITH_NLS=1 ;
84                 STRIP=all ;
85                 APPNAME=Ardour ;
86                 shift ;;
87         --allinone)
88                 WITH_NLS= ;
89                 STRIP=all;
90                 shift ;;
91         --test) STRIP= ; shift ;;
92
93         #
94         # specific build flags
95         #
96
97         --nojack) INTERNAL_JACK= ; shift ;;
98         --strip) STRIP=$2 ; shift ; shift ;;
99         --sysdeps) PRINT_SYSDEPS=1; shift ;;
100         --nls) WITH_NLS=1 ; shift ;;
101         --harvid) WITH_HARVID=1 ; shift ;;
102         --gcc5abi) GCC5ABI=true ; shift ;;
103         --chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;;
104
105         *)
106                 #catch all for unknown arguments
107                 echo ""
108                 echo "!!! ERROR !!! - Unknown argument $1"
109                 echo ""
110                 exit 1
111                 ;;
112         esac
113 done
114
115 if test x$STRIP != xall -a x$STRIP != xnone -a x$STRIP != xsome ; then
116     echo "Unknown strip option \"$STRIP\""
117     echo "Legal values are: all, none, some"
118     exit 1
119 fi
120
121 . ../define_versions.sh
122 lower_case_appname=`echo $APPNAME | tr '[:upper:]' '[:lower:]'`
123
124 echo "Version is $release_version"
125 if [ "x$commit" != "x" ] ; then
126     info_string="$release_version ($commit) built on `hostname` by `whoami` on `date`"
127 else
128     info_string="$release_version built on `hostname` by `whoami` on `date`"
129 fi
130 echo "Info string is $info_string"
131
132 # Figure out our CPU type
133 case `uname -m` in
134         i[3456789]86|x86|i86pc)
135                 echo "Architecture is x86"
136                 ARCH='x86'
137                 WARCH='i386'
138                 HARCH='linux32'
139                 ARCH_BITS='32-bit'
140                 MULTIARCH='i386-linux-gnu'
141                 ;;
142         x86_64|amd64|AMD64)
143                 echo "Architecture is x86_64"
144                 ARCH='x86_64'
145                 WARCH='x86_64'
146                 HARCH='linux64'
147                 ARCH_BITS='64-bit'
148                 MULTIARCH='x86_64-linux-gnu'
149                 ;;
150         *)
151                 echo ""
152                 echo "ERROR - Unknown architecture `uname -m`"
153                 echo ""
154                 exit 1
155                 ;;
156 esac
157
158 if [ x$DEBUG = xT ]; then
159     BUILDTYPE="dbg"
160     if [ x$STRIP = xall ] ; then
161         echo "A debug build with --strip all makes no sense - STRIP reset to \"some\""
162         STRIP=some
163     fi
164 fi
165
166 # setup directory structure
167
168 if [ -z "${BUILDTYPE}" ]; then
169         APPDIR=${APPNAME}_${ARCH}-${release_version}
170         APP_VER_NAME=${APPNAME}-${release_version}
171 else
172         APPDIR=${APPNAME}_${ARCH}-${release_version}-${BUILDTYPE}
173         APP_VER_NAME=${APPNAME}-${release_version}-${BUILDTYPE}
174 fi
175
176 APPBIN=$APPDIR/bin
177 APPLIB=$APPDIR/lib
178 Libraries=$APPLIB
179 Etc=$APPDIR/etc
180 Shared=$APPDIR/share
181
182 Plugins=$APPLIB/plugins
183 Surfaces=$APPLIB/surfaces
184 Panners=$APPLIB/panners
185 Backends=$APPLIB/backends
186
187 Themes=$Shared/themes
188 Templates=$Shared/templates
189 PluginMetadata=$Shared/plugin_metadata
190 MixerSettings=$Shared/mixer_settings
191 ExportFormats=$Shared/export
192 Locale=$Shared/locale
193 MidiMaps=$Shared/midi_maps
194 PatchFiles=$Shared/patchfiles
195 LuaScripts=$Shared/scripts
196 MackieControl=$Shared/mcp
197 OSC=$Shared/osc
198
199 if [ x$PRINT_SYSDEPS != x ] ; then
200 #
201 # print system dependencies
202 #
203
204         for file in $APPBIN/* $Libraries/* $Plugins/*.so ; do
205                 if ! file $file | grep -qs Mach-O ; then
206                         continue
207                 fi
208                 otool -L $file | awk '{print $1}' | egrep -v "(^@executable_path|^Ardour[0-9][.0-9]*.app)"
209         done | sort | uniq
210         exit 0
211 fi
212
213 echo "Removing old $APPDIR tree ..."
214 rm -rf $APPDIR/
215
216 echo "Building new app directory structure ..."
217
218 # only bother to make the longest paths
219
220 mkdir -p $APPDIR
221 mkdir -p $APPBIN
222 mkdir -p $APPLIB
223 mkdir -p $Etc
224 mkdir -p $Shared
225 mkdir -p $Themes
226 mkdir -p $Locale
227 mkdir -p $Surfaces
228 mkdir -p $MidiMaps
229 mkdir -p $PatchFiles
230 mkdir -p $LuaScripts
231 mkdir -p $MackieControl
232 mkdir -p $OSC
233 mkdir -p $ExportFormats
234 mkdir -p $Panners
235 mkdir -p $Backends
236 mkdir -p $Shared/doc
237
238 # maybe set variables
239 ENVIRONMENT=environment
240 rm -f $ENVIRONMENT
241 touch $ENVIRONMENT
242
243 if test x$MIXBUS != x ; then
244         echo export ARDOUR_MIXBUS=true >> $ENVIRONMENT
245         #
246         # current default for MIXBUS version is US keyboard layout without a keypad
247         #
248         echo export ARDOUR_KEYBOARD_LAYOUT=us-nokeypad >> $ENVIRONMENT
249         echo export ARDOUR_UI_CONF=ardour3_ui.conf >> $ENVIRONMENT
250 fi
251
252 #
253 # if we're not going to bundle JACK, make sure we can find
254 # jack in the places where it might be
255 #
256
257 echo export 'PATH="/usr/local/bin:/opt/bin:$PATH"' >> $ENVIRONMENT
258
259 # create startup helper script
260 if test -d $BUILD_ROOT/vst; then
261         WINEEXE=wine
262         USEWINE=true
263         echo export INSTALL_DIR >> $ENVIRONMENT
264 else
265         WINEEXE=
266 fi
267
268 sed -e "/^%ENV%/r $ENVIRONMENT" -e '/^%ENV%/d' -e 's/%VER%/'"${release_version}"'/;s/%EXENAME%/'"${EXENAME}"'/;s/%WINE%/'"$WINEEXE"'/' < ardour.sh.in > $APPBIN/${EXENAME}${major_version}
269 rm $ENVIRONMENT && chmod 775 $APPBIN/${EXENAME}${major_version}
270
271 echo "Copying ardour executable ...."
272 if test -d $BUILD_ROOT/vst; then
273         #cp -v $BUILD_ROOT/gtk2_ardour/libgtk2_ardour.so $APPLIB/
274         cp -v $BUILD_ROOT/gtk2_ardour/ardour-${release_version}-vst.exe.so $APPBIN/${EXENAME}-${release_version}
275 else
276         cp -v $BUILD_ROOT/gtk2_ardour/ardour-${release_version}* $APPBIN/${EXENAME}-${release_version}
277 fi
278
279 if test x$STRIP = xall ; then
280         strip -s $APPBIN/${EXENAME}-${release_version}
281 fi
282
283 # copy locale files
284 # note that at present(feb 2011), the .mo files end up in the source tree which is
285 # not really as it should be.
286 if test x$WITH_NLS != x ; then
287         echo "NLS support ..."
288         echo "I hope you remembered to run scons msgupdate!"
289         LINGUAS=
290
291         for pkg in gtk2_ardour libs/ardour libs/gtkmm2ext ; do
292             files=`find ../../$pkg -name "*.mo"`
293
294             #
295             # the package name is appended with a number so that
296             # it can be parallel installed during a regular install
297             # with older (and newer) versions. it is just the major
298             # number of the release (i.e. leading digits)
299             #
300
301             vsuffix=`echo $release_version | sed 's/^\([0-9][0-9]*\).*/\1/'`
302
303             if [ -z "$files" ]; then
304                 echo ""
305                 echo "!!!! WARNING !!!! - Did not find any .mo files in ../../$pkg"
306                 echo ""
307             fi
308
309             for file in $files
310             do
311                 echo $file
312                 lang=`basename $file | sed 's/\.mo//'`
313                 mkdir -p $Locale/$lang/LC_MESSAGES
314                 cp $file $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo
315                 echo copy $file to $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo
316                 if echo $LINGUAS | grep $lang >/dev/null 2>&1 ; then
317                     :
318                 else
319                     LINGUAS="$LINGUAS $lang"
320                 fi
321             done
322         done
323
324         GTK_MESSAGES="atk10.mo gdk-pixbuf.mo gtk20-properties.mo gtk20.mo atk10.mo glib20.mo"
325         LOCALEROOT=$GTKSTACK_ROOT/share/locale
326
327         for l in $LINGUAS ; do
328                 echo "Copying GTK i18n files for $l..."
329                 for MO in $GTK_MESSAGES ; do
330                         if [ -f $LOCALEROOT/$l/LC_MESSAGES/$MO ] ; then
331                                 cp $LOCALEROOT/$l/LC_MESSAGES/$MO $Locale/$l/LC_MESSAGES
332                         else
333                                 # try with just the language spec
334                                 just_lang=`echo $l | sed 's/_[A-Z][A-Z]$//'`
335                                 if [ -f $LOCALEROOT/$just_lang/LC_MESSAGES/$MO ] ; then
336                                         cp $LOCALEROOT/$just_lang/LC_MESSAGES/$MO $Locale/$just_lang/LC_MESSAGES
337                                 fi
338                         fi
339                 done
340         done
341 else
342         echo "Skipping NLS support"
343 fi
344
345 #
346 # Copy stuff that may be dynamically loaded
347 #
348
349 cp -R $GTKSTACK_ROOT/etc/* $Etc
350
351 # We rely on clearlooks, so include a version from our own build tree
352 # this one is special - we will set GTK_PATH to $Libraries/gtkengines
353
354 GTK_ENGINE_DIR=$Libraries/gtkengines/engines
355 mkdir -p $GTK_ENGINE_DIR
356
357 echo "Copying GTK engines ..."
358 cp $BUILD_ROOT/libs/clearlooks-newer/libclearlooks.so $Libraries
359 (cd $GTK_ENGINE_DIR && ln -s ../../libclearlooks.so . )
360
361 cp $GTKSTACK_ROOT/lib/gtk-2.0/2.10.0/engines/libpixmap.so $Libraries
362 (cd $GTK_ENGINE_DIR && ln -s ../../libpixmap.so . )
363
364 # Control Surfaces
365 cp $BUILD_ROOT/libs/surfaces/*/libardour_*.so* $Surfaces
366 cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp.so* $Libraries
367
368 # MidiMaps
369 # got to be careful with names here
370 for x in $BUILD_ROOT/../midi_maps/*.map ; do
371     cp "$x" $MidiMaps
372 done
373
374 # MIDNAM Patch Files
375 # got to be careful with names here
376 for x in $BUILD_ROOT/../patchfiles/*.midnam ; do
377     cp "$x" $PatchFiles
378 done
379
380 # Lua Scripts Files
381 # got to be careful with names here
382 for x in $BUILD_ROOT/../scripts/*.lua ; do
383                 BN=$(basename $x)
384           if test "${BN:0:1}" = "_"; then
385                         continue;
386                 fi
387     cp "$x" $LuaScripts
388 done
389
390 # MackieControl data
391 # got to be careful with names here
392 for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
393     cp "$x" $MackieControl
394 done
395
396 # OSC data
397 # got to be careful with names here
398 for x in $BUILD_ROOT/../osc/*.preset ; do
399     cp "$x" $OSC
400 done
401
402 # Mixbus MixerSettings (if any)
403 for x in $BUILD_ROOT/../mixer_settings/*.lua ; do
404     mkdir -p $MixerSettings  # create on demand
405     cp "$x" $MixerSettings
406 done
407
408 #Session templates
409 cp -av $BUILD_ROOT/../templates $Templates
410
411 # PluginMetadata
412 cp -av $BUILD_ROOT/../plugin_metadata $PluginMetadata
413
414 # ExportFormats
415 # got to be careful with names here
416 for x in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do
417     cp "$x" $ExportFormats
418 done
419
420 # Panners
421 cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners
422
423 # Backends
424 for backend in jack alsa dummy wavesaudio ; do
425     cp $BUILD_ROOT/libs/backends/$backend/lib*.so* $Backends
426 done
427
428 # VAMP plugins that we use
429 cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.so* $Libraries
430
431 # Suil modules (new dir 'build-stack')
432 if test -d $GTKSTACK_ROOT/lib/suil-0/ ; then
433     cp $GTKSTACK_ROOT/lib/suil-0/lib* $Libraries
434 fi
435
436 # Suil modules (old dir 'build-ardour-stack')
437 if test -d $ARDOURSTACK_ROOT/lib/suil-0/ ; then
438     cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Libraries
439 fi
440
441 # VST scanner app (both LXVST as well as WIN-VST, 2in1)
442 # (if build with wine: ardour-vst-scanner is a wrapper
443 #  script for ardour-vst-scanner.exe.so, if VST is disabled
444 #  neither binary nor script exists)
445 if test -d $BUILD_ROOT/libs/fst ; then
446     cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $APPLIB || true
447     if test x$STRIP = xall ; then
448         strip -s $APPLIB/ardour-vst-scanner*
449     fi
450 fi
451
452 # vfork wrapper
453 if test -f $BUILD_ROOT/libs/vfork/ardour-exec-wrapper ; then
454     cp $BUILD_ROOT/libs/vfork/ardour-exec-wrapper $APPLIB
455     if test x$STRIP = xall ; then
456         strip -s $APPLIB/ardour-exec-wrapper
457     fi
458 fi
459
460 # ALSA device reservation tool (if available)
461 if test -f $BUILD_ROOT/libs/ardouralsautil/ardour-request-device; then
462     cp $BUILD_ROOT/libs/ardouralsautil/ardour-request-device $APPLIB/ || true
463     if test x$STRIP = xall ; then
464         strip -s $APPLIB/ardour-request-device
465     fi
466 fi
467
468 # session-utils
469 HAVE_SESSION_UTILS=false
470 for file in $BUILD_ROOT/session_utils/${lower_case_appname}${major_version}-*; do
471         BN=$(basename $file)
472         cp -v $file $APPLIB/
473         if test x$STRIP = xall ; then
474                 strip -s $APPLIB/${BN}
475         fi
476         ln -s ../lib/ardour-util.sh $APPBIN/${BN}
477         HAVE_SESSION_UTILS=true
478 done
479
480 if test -x $BUILD_ROOT/tools/luadevel/luasession; then
481         BN=${lower_case_appname}${major_version}-lua
482         cp -v $BUILD_ROOT/tools/luadevel/luasession $APPLIB/$BN
483         if test x$STRIP = xall ; then
484                 strip -s $APPLIB/${BN}
485         fi
486         ln -s ../lib/ardour-util.sh $APPBIN/${BN}
487         HAVE_SESSION_UTILS=true
488 fi
489
490 if test "$HAVE_SESSION_UTILS" = true ; then
491         cat >> $APPLIB/ardour-util.sh << EOF
492 #!/bin/sh
493
494 BIN_DIR=\$(dirname \$(readlink -f \$0))
495 INSTALL_DIR=\$(dirname \$BIN_DIR)
496
497 export LD_LIBRARY_PATH=\$INSTALL_DIR/lib\${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH}
498
499 export ARDOUR_DATA_PATH=\$INSTALL_DIR/share
500 export ARDOUR_CONFIG_PATH=\$INSTALL_DIR/etc
501 export ARDOUR_DLL_PATH=\$INSTALL_DIR/lib
502 export VAMP_PATH=\$INSTALL_DIR/lib\${VAMP_PATH:+:\$VAMP_PATH}
503
504 SELF=\$(basename \$0)
505 exec "\$INSTALL_DIR/lib/\$SELF" "\$@"
506 EOF
507         chmod +x $APPLIB/ardour-util.sh
508 fi
509
510 OURLIBDIR=$BUILD_ROOT/libs
511 OURLIBS=$OURLIBDIR/surfaces/control_protocol:$OURLIBDIR/ardour:$OURLIBDIR/midi++2:$OURLIBDIR/pbd:$OURLIBDIR/gtkmm2ext:$OURLIBDIR/glibmm2:$OURLIBDIR/canvas:$OURLIBDIR/widgets:$OURLIBDIR/waveview:$OURLIBDIR/evoral:$OURLIBDIR/evoral/src/libsmf:$OURLIBDIR/audiographer:$OURLIBDIR/temporal:$OURLIBDIR/libltc:$OURLIBDIR/qm-dsp:$OURLIBDIR/ardouralsautil:$OURLIBDIR/ptformat:$BUILD_ROOT/gtk2_ardour
512
513 echo $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
514
515 checkedIdx=0
516
517 # these are dynamically loaded by NSS
518 deplibs="libfreeblpriv3.so libsoftokn3.so libnsspem.so"
519 cp -v $GTKSTACK_ROOT/lib/libsoftokn3.so $Libraries/
520 cp -v $GTKSTACK_ROOT/lib/libfreeblpriv3.so $Libraries/
521 cp -v $GTKSTACK_ROOT/lib/libnsspem.so $Libraries/
522 chrpath -r foo $Libraries/libsoftokn3.so
523 chrpath -r foo $Libraries/libfreeblpriv3.so
524 chrpath -r foo $Libraries/libnsspem.so
525
526 while [ true ] ; do
527         missing=false
528         filelist=`find $APPLIB/ -type f`
529         filelist="$APPBIN/${EXENAME}-${release_version} $filelist"
530
531         for file in $filelist  ; do
532                 if ! file $file | grep -qs ELF ; then
533                         continue
534                 fi
535
536                 # speed this up a bit by not checking things multiple times.
537                 for i in "${depCheckedList[@]}"; do
538                         if [ $i == $file ]; then
539                                 continue 2
540                         fi
541                 done
542                 depCheckedList[$checkIdx]=$file
543                 checkIdx=$(($checkIdx + 1))
544
545                 # ignore suil/qt wrappers - the plugin will pull in QT4.
546                 if echo $file | grep -qs 'libsuil_.*qt[45]' ; then continue; fi
547
548                 # do not include libjack, nor libwine
549                 deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | grep -v libwine.so | awk '{print $3}'`
550
551                 echo -n "."
552                 for dep in $deps ; do
553                         if test "not" = ${dep}; then
554                                 echo ""
555                                 echo "!!! ERROR !!! - Missing dependant library for $file."
556                                 echo "Searched: " $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
557                                 echo ""
558                                 (LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file)
559                                 echo ""
560                                 echo "!!! ERROR !!! - See Above"
561                                 exit 1
562                         fi
563
564                         # don't use anything mapped at a specific address
565                         if echo $dep | grep -qs '0x' ; then continue; fi
566                         # don't include /lib
567                         if echo $dep | grep -qs "^/lib/" ; then continue; fi
568                         # don't include jack
569                         if echo $dep | grep -qs libjack ; then continue; fi
570                         # don't include ALSA
571                         if echo $dep | grep -qs libasound ; then continue; fi
572                         # don't include any X Window libraries
573                         if echo $dep | grep -qs libX\. ; then continue; fi
574                         if echo $dep | grep -qs libxcb ; then continue; fi
575                         if echo $dep | grep -qs libICE\. ; then continue; fi
576                         if echo $dep | grep -qs libSM\. ; then continue; fi
577                         # don't include libc
578                         if echo $dep | grep -qs 'libc\.' ; then continue; fi
579                         # don't include libstdc++
580                         if echo $dep | grep -qs libstdc++ ; then continue; fi
581                         # don't include libdbus (alsa request device)
582                         if echo $dep | grep -qs libdbus ; then continue; fi
583                         # nor libudev (hidapi)
584                         if echo $dep | grep -qs libudev ; then continue; fi
585
586                         base=`basename $dep`
587                         if ! test -f $Libraries/$base; then
588                                 parent=$(basename ${file})
589                                 if echo $dep | grep -sq '^libs' ; then
590                                         echo "Copying dependant lib $BUILD_ROOT/$dep    (required by ${parent})"
591                                         cp $BUILD_ROOT/$dep $Libraries
592                                 else
593                                         echo "Copying dependant lib $dep    (required by ${parent})"
594                                         cp $dep $Libraries
595                                 fi
596                                 chmod 755 $Libraries/`basename $dep`
597                                 #
598                                 # reset RPATH so that the runtime linker never looks
599                                 # in places we don't want it to
600                                 #
601                                 chrpath -r foo $Libraries/`basename $dep`
602                                 if echo $dep | grep -sq '^/' ; then
603                                     # absolute path, candidate for stripping
604                                     deplibs="$deplibs $base"
605                                 fi
606                                 missing=true
607                         fi
608                 done
609         done
610         if test x$missing = xfalse ; then
611                 # everything has been found
612                 break
613         fi
614 done
615 echo
616
617 # strip libraries
618 if test x$STRIP = xall ; then
619     echo Stripping all libraries
620     # Must be writable so that we can strip
621     find $APPLIB/ -name "*.so*" -print0 | xargs -0 chmod u+w
622     # and strip ...
623     find $APPLIB/ -name "*.so*" -print0 | xargs -0 strip -s
624 elif test x$STRIP = xsome ; then
625     echo Stripping dependent libraries
626     for l in $deplibs ; do
627         if echo "$l" | grep -qE "$NOSTRIP"; then
628             continue
629         fi
630         chmod u+w $APPLIB/$l
631         strip -s $APPLIB/$l
632     done
633 fi
634 find $APPLIB/ -name "*.so*" -print0 | xargs -0 chmod a+rx
635
636 echo "Copying other stuff to $APPDIR  ..."
637
638 # these are all generated by waf
639 cp $BUILD_ROOT/gtk2_ardour/ardour.keys  $Etc
640 cp $BUILD_ROOT/gtk2_ardour/ardour.menus $Etc
641 cp $BUILD_ROOT/gtk2_ardour/clearlooks.rc $Etc
642 cp $BUILD_ROOT/gtk2_ardour/default_ui_config $Etc
643
644 # Copied directly from source tree
645
646 mkdir ${Shared}/icons
647 mkdir ${Shared}/resources
648 cp ../../system_config $Etc/system_config
649 cp ../../gtk2_ardour/icons/*.png ${Shared}/icons
650 cp -r ../../gtk2_ardour/icons/cursor_* ${Shared}/icons/
651 cp ../../gtk2_ardour/ArdourMono.ttf $Shared
652 cp ../../gtk2_ardour/resources/${APPNAME}-* ${Shared}/resources/
653
654 # Themes: only install those named for this app
655 cp ../../gtk2_ardour/themes/*-${lower_case_appname}.colors $Themes
656
657 #
658 # put sooper sekrit ingredients here and they will be copied
659 #
660
661 if [ -d specialSauce ] ; then
662         cp -r specialSauce $Etc
663 fi
664
665 # install bundled LV2s to <app>/lib/LV2/
666 cp -R $BUILD_ROOT/libs/LV2 $APPLIB/
667
668 # lv2 core, classifications etc - TODO check if we need the complete LV2 ontology
669 if test -d $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
670         mkdir -p $APPLIB/LV2/lv2core.lv2
671         cp -R $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2/*.ttl $APPLIB/LV2/lv2core.lv2/
672 elif test -d $GTKSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
673         mkdir -p $APPLIB/LV2/lv2core.lv2
674         cp -R $GTKSTACK_ROOT/lib/lv2/lv2core.lv2/*.ttl $APPLIB/LV2/lv2core.lv2/
675 fi
676
677 # go through and recursively remove any .svn dirs in the bundle
678 for svndir in `find $APPDIR -name .svn -type d`; do
679         rm -rf $svndir
680 done
681
682
683 ################################################################################
684 ### Mixbus plugins, etc
685 if test x$WITH_HARRISON_LV2 != x ; then
686         echo "Adding Harrison LV2s"
687         mkdir -p $APPLIB/LV2
688
689         curl -s -S --fail -# \
690                 -z "${CACHEDIR}/${HARRISONLV2}.${HARCH}.zip" \
691                 -o "${CACHEDIR}/${HARRISONLV2}.${HARCH}.zip" \
692                 "${HARRISONDSPURL}/${HARRISONLV2}.${HARCH}.zip"
693         unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/${HARRISONLV2}.${HARCH}.zip"
694 fi
695
696 if test -n "$MIXBUS"; then
697         echo "Adding Mixbus Channelstrip"
698
699         mkdir -p $APPLIB/ladspa/strip/
700         curl -s -S --fail -# \
701                 -z "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${HARCH}.so" \
702                 -o "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${HARCH}.so" \
703                 "${HARRISONDSPURL}/${HARRISONCHANNELSTRIP}.${HARCH}.so"
704
705         cp "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${HARCH}.so" \
706                 $APPLIB/ladspa/strip/${HARRISONCHANNELSTRIP}.so
707         chmod +x $APPLIB/ladspa/strip/${HARRISONCHANNELSTRIP}.so
708
709         echo "Adding Harrison Vamp Plugins"
710
711         if test "$GCC5ABI" = "true"; then
712                 VAMPARCH="${HARCH}gcc5"
713         else
714                 VAMPARCH="${HARCH}"
715         fi
716         curl -s -S --fail -# \
717                 -z "${CACHEDIR}/harrison_vamp.${VAMPARCH}.so" \
718                 -o "${CACHEDIR}/harrison_vamp.${VAMPARCH}.so" \
719                 "${HARRISONDSPURL}/harrison_vamp.${VAMPARCH}.so"
720
721         cp "${CACHEDIR}/harrison_vamp.${VAMPARCH}.so" \
722                 $APPLIB/harrison_vamp.so
723         chmod +x $APPLIB/harrison_vamp.so
724 fi
725
726 if true ; then
727         mkdir -p $APPLIB/LV2
728
729         echo "Adding General MIDI Synth LV2"
730
731         for proj in x42-gmsynth ; do
732                 X42_VERSION=$(curl -s -S http://x42-plugins.com/x42/linux/${proj}.latest.txt)
733                 rsync -a -q --partial \
734                         rsync://x42-plugins.com/x42/linux/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip \
735                         "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
736                 unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
737         done
738 fi
739
740
741 if test x$WITH_X42_LV2 != x ; then
742         mkdir -p $APPLIB/LV2
743
744         echo "Adding x42 Plugins"
745
746         for proj in x42-meters x42-midifilter x42-midimap x42-stereoroute x42-eq setBfree x42-avldrums x42-whirl x42-limiter; do
747                 X42_VERSION=$(curl -s -S http://x42-plugins.com/x42/linux/${proj}.latest.txt)
748                 rsync -a -q --partial \
749                         rsync://x42-plugins.com/x42/linux/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip \
750                         "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
751                 unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
752         done
753 fi
754
755 ################################################################################
756
757 if test x$WITH_HARVID != x ; then
758         cd $APPBIN
759         HARVID_VERSION=$(curl -s -S http://ardour.org/files/video-tools/harvid_version.txt)
760         XJADEO_VERSION=$(curl -s -S http://ardour.org/files/video-tools/xjadeo_version.txt)
761
762         rsync -Pa \
763                 rsync://ardour.org/video-tools/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \
764                 "$CACHEDIR/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz"
765
766         rsync -Pa \
767                 rsync://ardour.org/video-tools/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz \
768                 "$CACHEDIR/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz"
769
770         tar -x -z \
771                 --exclude=README --exclude=harvid.1 --strip-components=1 \
772                 -f "$CACHEDIR/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz" || exit 1
773
774         tar -x -z \
775                 --exclude=README --exclude=xjadeo.1 --strip-components=1 \
776                 -f "$CACHEDIR/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz" || exit 1
777         mv xjadeo xjremote
778         cd -
779 fi
780
781 ################################################################################
782
783 if test x$DEMO_SESSION_URL != x ; then
784         mkdir -p $Shared/sessions
785         DEMO_SESSIONS=$(curl -s -S --fail $DEMO_SESSION_URL/index.txt)
786         for demo in $DEMO_SESSIONS; do
787                 curl -s -S --fail -# -o $Shared/sessions/$demo $DEMO_SESSION_URL/$demo
788         done
789 fi
790
791 ################################################################################
792
793 #
794 # Add the uninstaller
795 #
796 sed -e "s/%REPLACE_PGM%/${APPNAME}/" -e "s/%REPLACE_VENDOR%/${VENDOR}/" -e "s/%REPLACE_MAJOR_VERSION%/${major_version}/" -e "s/%REPLACE_VERSION%/${release_version}/" -e "s/%REPLACE_TYPE%/${BUILDTYPE}/" < uninstall.sh.in > $APPBIN/${APP_VER_NAME}.uninstall.sh
797 chmod a+x $APPBIN/${APP_VER_NAME}.uninstall.sh
798
799 #
800 # Add the stage2.run script
801 #
802 sed -e "s/%REPLACE_MAJOR_VERSION%/${major_version}/;s/%REPLACE_PGM%/${APPNAME}/;s/%REPLACE_VENDOR%/${VENDOR}/;s/%REPLACE_EXE%/${EXENAME}/;s/%REPLACE_GCC5%/${GCC5ABI}/;s/%REPLACE_WINE%/${USEWINE}/" < stage2.run.in > stage2.run
803 chmod a+x stage2.run
804
805
806 #Sanity Check file
807 if [ -e $BUILD_ROOT/tools/sanity_check/sanityCheck ]; then
808         cp $BUILD_ROOT/tools/sanity_check/sanityCheck $APPBIN
809 else
810         echo "!!!ERROR !!! sanityCheck program is missing. packager will exit without being complete"
811         exit 1
812 fi
813
814 echo "Building tarball ..."
815
816 rm -f $APPDIR.tar
817 tar -cf $APPDIR.tar $APPDIR
818
819 echo "Calculating bundle size"
820 du -sb $APPDIR/  | awk '{print $1}' > $APPDIR.size
821
822 ( cd $APPDIR ; find . ) > file_list.txt
823
824 rm -rf $APPDIR/
825
826 echo "Done."
827