Author: Paul_R
Date: 2008-09-18 10:25:40 +0200 (Thu, 18 Sep 2008)
New Revision: 1893
Modified:
software_suite_v2/tuxware/installers/unix/trunk/build.sh
software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater
software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile
software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/README
Log:
* Updated the README file for the tar.gz version
* Fix some bugs with the makefile, build.sh and tux_updater
Modified: software_suite_v2/tuxware/installers/unix/trunk/build.sh
===================================================================
--- software_suite_v2/tuxware/installers/unix/trunk/build.sh 2008-09-18
07:23:24 UTC (rev 1892)
+++ software_suite_v2/tuxware/installers/unix/trunk/build.sh 2008-09-18
08:25:40 UTC (rev 1893)
@@ -225,7 +225,7 @@
####### TAR.GZ SPECIFIC ########
packTarSpecifics () {
- cp ./build_deps/tar/* build/
+ cp -rf ./build_deps/tar/* build/
}
Modified:
software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater
===================================================================
---
software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater
2008-09-18 07:23:24 UTC (rev 1892)
+++
software_suite_v2/tuxware/installers/unix/trunk/build_deps/common/updater/tux_updater
2008-09-18 08:25:40 UTC (rev 1893)
@@ -18,7 +18,7 @@
RES_DIR=resources
CONTROL_CENTER_DIR=/opt/tuxdroid/controlcenter
-CONTROL_CENTER_URL=$KYSOH_URL/$APP_DIR/linux/control_center
+CONTROL_CENTER_URL=$KYSOH_URL/$APP_DIR/common/control_center
JRE_URL=$KYSOH_URL/$INST_DIR/java_jre
GADGET_URL=$KYSOH_URL/$GADGET_DIR
TOOLS_URL=$KYSOH_URL/$INST_DIR/tools
Modified:
software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile
===================================================================
--- software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile
2008-09-18 07:23:24 UTC (rev 1892)
+++ software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/Makefile
2008-09-18 08:25:40 UTC (rev 1893)
@@ -2,8 +2,8 @@
@echo Usage make install; make uninstall
install:
@cp -rf ./mirror/* /
- @mv python_api/setup.py .
- @mv python_api/tuxisalive/ .
+ @cp python_api/setup.py .
+ @cp -rf python_api/tuxisalive/ .
@python setup.py install
@rm -rf tuxisalive
@rm -rf build
Modified: software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/README
===================================================================
--- software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/README
2008-09-18 07:23:24 UTC (rev 1892)
+++ software_suite_v2/tuxware/installers/unix/trunk/build_deps/tar/README
2008-09-18 08:25:40 UTC (rev 1893)
@@ -1,54 +1,76 @@
-tuxsetup 1.3-19-rc2_i386 - Release date May 22, 2008
+Tuxsetup - Kysoh's TuxDroid base installer.
+Contents of package
+===============================================================================
+- TuxHTTPServer
+- Tuxdriver
+- python API
+- last firmwares
+- tuxup and DFU-programmer
-Installer package for Tux Droid
+How to install
+==============================================================================
+1. If a previous installation of tuxsetup is present on your computer, it's
+ recommanded to uninstall it before installing this package.
+2. Be sure all dependencies are satisfied :
+ - java jre 1.6 or higher /or openJDK runtine environment 1.6 or higher
+ (java -version to know the version of your java installation)
+ - python-setuptools
-Contents of package :
----------------------
+3. To install the package, run 'make install' as root.
-- tuxgdg - Tux Gadget Manager
-- Weather forecast gadget
-- Clock gadget
-- Email checker gadget
-- tuxgadgetmaker - Tux gadget builder tool
-- tuxd - USB daemon
-- tux_osl_daemon - Output sound daemon
-- Python API
-- tuxup - Firmware updater with the latest firmware files
-- tuxsh - Tux Shell
-- td_gadget - Tux Droid gadget manager
-- Tux Droid original sound files
-- Voice recognition
-- Firmware updater
-- Attitunes Studio
+4. After installing the main package, run 'tux_updater' as normal user to
+ update TuxControlCenter, the gadgets and tools.
+5. If you're installing the v2 for the first time, you have to update the
+ USB firmware :
+ cd /opt/tuxdroid/firmware
+ tuxup fuxusb.hex
-Additional installation :
--------------------------
+6. Start the server :
+ python /opt/tuxdroid/tuxhttpserver/tuxhttpserver.py as root.
+
+ If you want to start automatically the server at startup, you have to
+ install an init script on /etc/init.d or /etc/rc.d (depending of the
+ distribution).
+ You will find example scripts on the 'examples' directory, present on this
+ archive.
-For the Text To Speech function, the additional installation of the voice
files is required.
+ Installation of the scripts on the differents runlevels is depending of
your
+ distribution. For more informations or helps, please see your distribution
+ help files, or go to
+ http://wiki.tuxisalive.com/index.php/How_to_install_on_Linux
-Get them here: http://www.tuxisalive.com/downloads
+ If you write an init script for your distribution, you can add it and
+ explain how to install it on the wiki page, or send it to :
+ [EMAIL PROTECTED]
-Download the language of choice, unpack and run the included wizard.
+7. Tesing your installation :
+ - Open a new python terminal :
+ >>> from tuxisalive.api.sh import *
+ >>> tux.eyes.on(2) # The eyes should blink one time.
+ >>> exit()
+Additional installation :
+===============================================================================
-Documentation :
----------------
+For the Text To Speech function, the additional installation of the voice
files is required.
-For all further info please visit :
+Get them here: http://www.kysoh.com/
-http://www.tuxisalive.com
+Download the language of choice, unpack and run the included wizard.
+To test your language installation, restart the server and open a new python
+terminal :
+ >>> from tuxisalive.api.sh import *
+ >>> TuxAPI is connected.
+ >>> tux.tts.speak("test") # Tux should say "test"
+ >>> exit()
-
-
-
-
-
-
-
-
-
-
+Informations
+===============================================================================
+For more installation about TuxDroid or this installer, please visit :
+ - www.kysoh.com : commercial website
+ - www.tuxisalive.com : developers website
+ - wiki.tuxisalive.com : wiki pages
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn