docs:mac:builds:mediatomb

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:mac:builds:mediatomb [2008/08/09 01:00] billhdocs:mac:builds:mediatomb [2008/09/07 00:27] (current) billh
Line 2: Line 2:
   * download source from http://mediatomb.cc/   * download source from http://mediatomb.cc/
   * install [[mysql]], and make sure to build with **%%--enable-thread-safe-client%%**   * install [[mysql]], and make sure to build with **%%--enable-thread-safe-client%%**
-  * install [[spidermonkey]], and make sure to copy header file+  * install [[spidermonkey]], and make sure to copy header file into js/src
   * build mediatomb<code>   * build mediatomb<code>
 ./configure \ ./configure \
Line 11: Line 11:
 --with-mysql=/usr/local/mysql \ --with-mysql=/usr/local/mysql \
 --enable-libjs \ --enable-libjs \
---with-js-h=/Users/billh/builds/js/src +--with-js-h=/Users/billh/builds/js/src
---with-js-libs=/Users/billh/builds/js/src/Darwin_OPT.OBJ+
  
 make make
Line 93: Line 92:
 sudo chown -R nobody:nobody /usr/local/mediatomb sudo chown -R nobody:nobody /usr/local/mediatomb
 </code> </code>
-  * create a Mac StartupItem, using the following commands in the StartupItems file<code> +  * create a Mac StartupItem, using the following<code bash
-start: +#!/bin/sh
-  sudo -u nobody /usr/local/bin/mediatomb --daemon --home /usr/local --cfgdir mediatomb --logfile /usr/local/var/mediatomb.log+
  
-stop: +## 
-  sudo killall -15 mediatomb+# Configure MediaTomb Server 
 +##
  
-restart+. /etc/rc.common 
-  sudo killall -1 mediatomb+ 
 +StartService () 
 +
 +    if [ "${MEDIATOMB:=-NO-}" = "-YES-" ]; then 
 + ConsoleMessage "Starting MediaTomb Server" 
 + now=`date +%s` 
 + let "limit = $now + 60" 
 + 
 + /usr/local/mysql/bin/mysqladmin -s -u root --password=rootpass status > /dev/null 
 + while [ $? -ne 0 ] && [ $now -lt $limit ] 
 + do 
 + let "now = `date +%s`" 
 + if [ $now -ge $limit ]; then 
 + ConsoleMessage "MediaTomb could not be started because MySQL was not running after the timeout limit" 
 + exit 1 
 + fi 
 + 
 + /usr/local/mysql/bin/mysqladmin -s -u root --password=rootpass status > /dev/null 
 + done 
 + 
 + sudo -u nobody /usr/local/bin/mediatomb --daemon --home /usr/local --cfgdir mediatomb --logfile /usr/local/var/mediatomb.log 
 + fi 
 + 
 +
 + 
 +StopService () 
 +
 + ConsoleMessage "Stopping MediaTomb Server" 
 + sudo killall -15 mediatomb 
 +
 + 
 +RestartService () 
 +
 +    if [ "${MEDIATOMB:=-NO-}" = "-YES-" ]; then 
 + ConsoleMessage "Restarting MediaTomb Server" 
 + sudo killall -1 mediatomb 
 +    else 
 +        StopService 
 +    fi 
 + 
 +
 + 
 +RunService "$1"
 </code> </code>
  
 ===== Future Development ===== ===== Future Development =====
   * :?: Note: may also build with libjs, libmagic, id3lib, taglib   * :?: Note: may also build with libjs, libmagic, id3lib, taglib
  • docs/mac/builds/mediatomb.1218265220.txt.gz
  • Last modified: 2008/08/09 01:00
  • by billh