moovida: install script install xinitrc.d files

This commit is contained in:
Stephan Raue 2009-09-14 19:33:58 +02:00
parent 057b8cfc38
commit 07c32e963f
2 changed files with 12 additions and 9 deletions

View File

@ -30,9 +30,12 @@ $TOOLCHAIN/bin/easy_install --exclude-scripts --zip-ok --no-deps --quiet --prefi
mkdir -p $INSTALL/usr/bin
cp -PR $PKG_BUILD/.install/elisa $INSTALL/usr/bin
mkdir -p $INSTALL/etc/X11/xinit/xinitrc.d
cp -PR $PKG_DIR/scripts/xinitrc.d/* $INSTALL/etc/X11/xinit/xinitrc.d
$SCRIPTS/install moovida-plugins-good
$SCRIPTS/install moovida-plugins-bad
$SCRIPTS/install moovida-plugins-ugly
$SCRIPTS/install gst-plugins-good
$SCRIPTS/install gst-plugins-bad
$SCRIPTS/install gst-plugins-ugly
# $SCRIPTS/install gst-ffmpeg
# $SCRIPTS/install gnome-dvb-daemon

View File

@ -1,7 +1,7 @@
################################################################################
# Start elisa program.
# Start moovida program.
#
# The elisa program (not the window manager) is the application that runs in the
# The moovida program (not the window manager) is the application that runs in the
# foreground because it is the only application that we can be sure will be
# running.
################################################################################
@ -10,19 +10,19 @@
args=""
if /usr/bin/test "${ELISA_DEBUG}" = "yes" ; then
args="${args} ELISA_DEBUG=*:5"
if /usr/bin/test "${MOOVIDA_DEBUG}" = "yes" ; then
args="${args} MOOVIDA_DEBUG=*:5"
args="${args} GST_DEBUG_NO_COLOR=1"
args="${args} GST_DEBUG=*:5"
args="${args} GST_DEBUG=GST_ELEMENT_FACTORY:3"
args="${args} -l"
fi
if /usr/bin/test "${ELISA_FULLSCREEN}" = "yes" ; then
if /usr/bin/test "${MOOVIDA_FULLSCREEN}" = "yes" ; then
args="${args} -f -t"
fi
if /usr/bin/test "${ELISA_DEBUG}" = "yes" ; then
if /usr/bin/test "${MOOVIDA_DEBUG}" = "yes" ; then
/usr/bin/elisa ${args} 2> $ELISA_LOGFILE
/usr/bin/roxterm
else