Changeset 18953


Ignore:
Timestamp:
2009-04-14T16:45:36+12:00 (15 years ago)
Author:
davidb
Message:

Further iteration of scripts to compile up necessary support packages for video extension

Location:
extensions/gsdl-video/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/gsdl-video/trunk/CASCADE-MAKE.sh

    r18489 r18953  
    2020
    2121
    22 source bin/script/test-setup.bash
    23 source lib/cascade-lib.bash
     22source cascade-make/bin/script/test-setup.bash
     23source cascade-make/lib/cascade-lib.bash
    2424
     25# Guaranteed that GSDLOS has now been set
    2526
    26 # Ensure that the necessary directories exist within the 'installed' area
    27 dirlist="cmdline server"
    28 if [ -e packages/devel ] ; then
    29   dirlist="$dirlist devel"
    30 fi
    31 
    32 for d in $dirlist ; do
     27for d in $GSDLOS ; do
    3328  if [ ! -e $GEXTVIDEO_INSTALLED/$d ] ; then
    3429    echo "Creating $GEXTVIDEO_INSTALLED/$d"
     
    3732done
    3833
    39 for d in packages ; do
     34dirlist="build-srcpack runtime-srcpack"
     35if [ -e devel-srcpack ] ; then
     36  dirlist="$dirlist devel-srcpack"
     37fi
     38
     39for d in $dirlist ; do
    4040  echo "Running $d/CASCADE-MAKE.sh $*"
    4141
     
    4949
    5050
    51 if [ ! -e $GEXTVIDEO_INSTALLED/server/htdocs/gsdl ] ; then
    52   ( cd $GEXTVIDEO_INSTALLED/server/htdocs/ ; \
    53     if [ ! -e gsdl ] ; then ln -s $GSDLHOME gsdl ; fi )
    5451
    55   if [ $? != 0 ] ; then
    56     echo "Error encountered configuring lighttpd server 'htdocs' to have symbolic link to gsdl home"
    57     echo "Is GSDLHOME set?"
    58     exit 1
    59   fi
    60 
    61 
     52if [ $install = "1" ] ; then
     53  cat NOTES.txt
    6254fi
  • extensions/gsdl-video/trunk/NOTES.txt

    r18557 r18953  
    11
    2 need to get flash swf into ext/video/bin/flash folder
     2Now add:
     3
     4  AddHandler flv-stream .flv
     5
     6to the appropriate section of
     7
     8  $GSDLHOME/apache-httpd/$GSDLOS/conf/httpd.conf
    39
    410
    5 AddHandler flv-stream .flv to httpd.conf
    611
    712
Note: See TracChangeset for help on using the changeset viewer.