move package moovida:

- no more need, move to pkg-archive branch
This commit is contained in:
Stephan Raue 2009-10-22 08:07:53 +02:00
parent da579c90c8
commit 125373491b
6 changed files with 0 additions and 124 deletions

View File

@ -1,27 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
$SCRIPTS/build Python
$SCRIPTS/build pigment-python
$SCRIPTS/build TwistedCore
$SCRIPTS/build TwistedWeb
$SCRIPTS/build TwistedWeb2
#$SCRIPTS/build pysqlite
$SCRIPTS/build setuptools
$SCRIPTS/build zope.interface
$SCRIPTS/build cssutils
$SCRIPTS/build dbus-python
$SCRIPTS/build pymetar
$SCRIPTS/build twill
. config/options.python
cd $PKG_BUILD
$PYTHON setup.py bdist_egg --exclude-source-files
$PYTHON setup.py install_scripts --install-dir ./.install
sed -i -e "s%$ROOT/$TOOLCHAIN%/usr%" .install/elisa

View File

@ -1,44 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/install Python
$SCRIPTS/install pigment-python
$SCRIPTS/install TwistedCore
$SCRIPTS/install TwistedWeb
$SCRIPTS/install TwistedWeb2
#$SCRIPTS/install pysqlite
$SCRIPTS/install setuptools
$SCRIPTS/install zope.interface
$SCRIPTS/install cssutils
$SCRIPTS/install dbus-python
$SCRIPTS/install pymetar
$SCRIPTS/install twill
$SCRIPTS/install Imaging
$SCRIPTS/install pyOpenSSL
$SCRIPTS/install liberation-fonts
. config/options.python
PKG_DIR=`find $PACKAGES -type d -name $1`
PKG_SRC_DIR=`ls -d $BUILD/$1[-_][0-9]*`
$TOOLCHAIN/bin/easy_install --exclude-scripts --zip-ok --no-deps --quiet --prefix=$INSTALL/usr $PKG_SRC_DIR/dist/*.egg
mkdir -p $INSTALL/usr/bin
cp -PR $PKG_BUILD/.install/elisa $INSTALL/usr/bin
mkdir -p $INSTALL/usr/share/dbus-1/services
cp -PR $PKG_BUILD/data/com.fluendo.elisa.service $INSTALL/usr/share/dbus-1/services
$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,14 +0,0 @@
diff -Naur elisa-0.5.31/elisa/core/plugin_registry.py elisa-0.5.31.patch/elisa/core/plugin_registry.py
--- elisa-0.5.31/elisa/core/plugin_registry.py 2009-03-09 09:31:34.000000000 +0100
+++ elisa-0.5.31.patch/elisa/core/plugin_registry.py 2009-03-09 20:32:10.000000000 +0100
@@ -156,8 +156,8 @@
default_config = \
{'repository': 'http://elisa-plugins.fluendo.com/plugin_list',
'update_plugin_cache': True,
- 'auto_update_plugins': True,
- 'auto_install_new_recommended_plugins': True}
+ 'auto_update_plugins': False,
+ 'auto_install_new_recommended_plugins': False}
config_doc = \
{'repository': 'The plugin repository to query for new plugins and ' \
'plugin updates.',

View File

@ -1,12 +0,0 @@
diff -Naur elisa-0.5.31/elisa/extern/coherence/inotify.py elisa-0.5.31.patch/elisa/extern/coherence/inotify.py
--- elisa-0.5.31/elisa/extern/coherence/inotify.py 2009-03-09 09:31:38.000000000 +0100
+++ elisa-0.5.31.patch/elisa/extern/coherence/inotify.py 2009-03-09 19:14:27.000000000 +0100
@@ -129,7 +129,7 @@
obj = super(INotify, cls).__new__(cls, *args, **kwargs)
try:
- obj.libc = ctypes.CDLL("libc.so.6")
+ obj.libc = ctypes.CDLL("libc.so.0")
except:
raise SystemError, "libc not found, INotify support disabled"

View File

@ -1 +0,0 @@
http://sources.openelec.tv/svn/moovida-1.0.7.tar.bz2

View File

@ -1,26 +0,0 @@
#!/bin/sh
################################################################################
# Start moovida program.
#
# 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.
################################################################################
. /etc/sysconfig
args="-f -n -t"
if /usr/bin/test "${DEBUG}" = "yes" ; then
args="${args} ELISA_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 "${DEBUG}" = "yes" ; then
/usr/bin/elisa ${args} 2> /var/log/moovida.log
else
/usr/bin/elisa ${args} > /dev/null 2>&1
fi