summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/YalpClients/EflClient/bin/eYalp4
-rw-r--r--src/YalpClients/EflClient/eYalp.desktop8
-rw-r--r--src/YalpClients/EflClient/etc/eYalp.conf4
-rwxr-xr-xsrc/YalpClients/EflClient/make_release.sh16
4 files changed, 32 insertions, 0 deletions
diff --git a/src/YalpClients/EflClient/bin/eYalp b/src/YalpClients/EflClient/bin/eYalp
new file mode 100755
index 0000000..c4208db
--- /dev/null
+++ b/src/YalpClients/EflClient/bin/eYalp
@@ -0,0 +1,4 @@
+#!/bin/bash
+source /etc/eYalp.conf
+export PATH=$PATH:$EYALP_ROOT
+eyalp.py -ORBInitRef NameService=corbaloc:iiop:$IP:$PORT/NameService
diff --git a/src/YalpClients/EflClient/eYalp.desktop b/src/YalpClients/EflClient/eYalp.desktop
new file mode 100644
index 0000000..3f836f7
--- /dev/null
+++ b/src/YalpClients/EflClient/eYalp.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Version=1.0
+Name=eYalp
+Exec=/usr/bin/eYalp %U
+Icon=vlc
+Terminal=true
+Type=Application
+Categories=AudioVideo;Player;
diff --git a/src/YalpClients/EflClient/etc/eYalp.conf b/src/YalpClients/EflClient/etc/eYalp.conf
new file mode 100644
index 0000000..5f97473
--- /dev/null
+++ b/src/YalpClients/EflClient/etc/eYalp.conf
@@ -0,0 +1,4 @@
+export IP=10.0.3.180
+export PORT=1050
+export DISPLAY=:0.0
+export EYALP_ROOT=/root/EflClient
diff --git a/src/YalpClients/EflClient/make_release.sh b/src/YalpClients/EflClient/make_release.sh
new file mode 100755
index 0000000..682cccf
--- /dev/null
+++ b/src/YalpClients/EflClient/make_release.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+omniidl -bpython ../../yalp.idl
+edje_cc yalp_gui.edc
+rm -Rf tmp
+mkdir -p tmp/etc
+cp etc/* tmp/etc/
+mkdir -p tmp/usr/bin
+cp bin/* tmp/usr/bin/
+mkdir -p tmp/root/EflClient
+cp *.py tmp/root/EflClient/
+cp *.edj tmp/root/EflClient/
+cp -a YalpInterfaces* tmp/root/EflClient/
+mkdir -p tmp/usr/share/applications
+cp eYalp.desktop tmp/usr/share/applications/
+cd tmp
+tar czf ../eYalp.tar.gz .