diff options
Diffstat (limited to 'meta-extras/packages/flumotion')
3 files changed, 0 insertions, 134 deletions
diff --git a/meta-extras/packages/flumotion/flumotion/no-check-for-python-stuff.patch b/meta-extras/packages/flumotion/flumotion/no-check-for-python-stuff.patch deleted file mode 100644 index 08503c82e0..0000000000 --- a/meta-extras/packages/flumotion/flumotion/no-check-for-python-stuff.patch +++ /dev/null | |||
| @@ -1,68 +0,0 @@ | |||
| 1 | Index: flumotion-0.4.1/configure.ac | ||
| 2 | =================================================================== | ||
| 3 | --- flumotion-0.4.1.orig/configure.ac 2007-03-05 17:16:48.121264330 +0100 | ||
| 4 | +++ flumotion-0.4.1/configure.ac 2007-03-05 17:20:40.343837320 +0100 | ||
| 5 | @@ -73,13 +73,6 @@ | ||
| 6 | AC_MSG_ERROR([PyGTK 2.5.2 contains known bugs, please install other version]) | ||
| 7 | fi | ||
| 8 | |||
| 9 | -if test "x$DISPLAY" != "x"; then | ||
| 10 | - AS_PYTHON_IMPORT([gtk.glade],, | ||
| 11 | - AC_MSG_ERROR([You need to have python libglade bindings installed])) | ||
| 12 | -else | ||
| 13 | - AC_MSG_NOTICE([Not trying to import gtk.glade because DISPLAY is unset]) | ||
| 14 | -fi | ||
| 15 | - | ||
| 16 | if test $GST_010_SUPPORTED = "no"; then | ||
| 17 | AC_MSG_ERROR([No appropriate version of PyGTK installed. Correct the above | ||
| 18 | errors and try again.]) | ||
| 19 | @@ -94,16 +87,6 @@ | ||
| 20 | [AC_MSG_RESULT([$PYGST_010_PKG_ERRORS]) | ||
| 21 | GST_010_SUPPORTED=no]) | ||
| 22 | |||
| 23 | - if test $GST_010_SUPPORTED = "yes"; then | ||
| 24 | - saved_PYTHONPATH=$PYTHONPATH | ||
| 25 | - export PYTHONPATH=$PYGST_010_DIR:$PYTHONPATH | ||
| 26 | - AS_PYTHON_IMPORT([gst],, | ||
| 27 | - [AC_MSG_NOTICE([Unable to import gst-python 0.10 -- check your PYTHONPATH?]) | ||
| 28 | - GST_010_SUPPORTED=no], | ||
| 29 | - [import pygst; pygst.require('0.10')], | ||
| 30 | - [assert gst.pygst_version[[1]] == 10 or (gst.pygst_version[[1]] == 9 and gst.pygst_version[[2]] >= 7)]) | ||
| 31 | - | ||
| 32 | - fi | ||
| 33 | fi | ||
| 34 | |||
| 35 | if test $GST_010_SUPPORTED = "no"; then | ||
| 36 | @@ -158,32 +141,7 @@ | ||
| 37 | AC_CHECK_PROG(PYCHECKER, pychecker, yes, no) | ||
| 38 | AM_CONDITIONAL(HAVE_PYCHECKER, test "x$PYCHECKER" = "xyes") | ||
| 39 | |||
| 40 | -dnl check for Twisted | ||
| 41 | -AS_PYTHON_IMPORT(twisted, | ||
| 42 | - [ | ||
| 43 | - AC_MSG_CHECKING(for Twisted >= 2.0.1) | ||
| 44 | - prog=" | ||
| 45 | -import sys | ||
| 46 | -import twisted.copyright | ||
| 47 | -minver = '2.0.1' | ||
| 48 | -if twisted.copyright.version < minver: | ||
| 49 | - sys.exit(1) | ||
| 50 | -sys.exit(0) | ||
| 51 | -" | ||
| 52 | - if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC | ||
| 53 | - then | ||
| 54 | - AC_MSG_RESULT(found) | ||
| 55 | - else | ||
| 56 | - AC_MSG_RESULT(too old) | ||
| 57 | - AC_MSG_ERROR([You need at least version 2.0.1 of Twisted]) | ||
| 58 | - fi | ||
| 59 | - ] | ||
| 60 | - , | ||
| 61 | - AC_MSG_ERROR([You need at least version 2.0.1 of Twisted]) | ||
| 62 | -) | ||
| 63 | |||
| 64 | -TWISTED_MODULE([twisted.names]) | ||
| 65 | -TWISTED_MODULE([twisted.web]) | ||
| 66 | |||
| 67 | AC_CONFIG_FILES([env], [chmod +x env]) | ||
| 68 | AC_CONFIG_FILES([bin/flumotion], [chmod +x bin/flumotion]) | ||
diff --git a/meta-extras/packages/flumotion/flumotion/python-path.patch b/meta-extras/packages/flumotion/flumotion/python-path.patch deleted file mode 100644 index 377994e729..0000000000 --- a/meta-extras/packages/flumotion/flumotion/python-path.patch +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | Index: flumotion-0.3.1/common/as-python.m4 | ||
| 2 | =================================================================== | ||
| 3 | --- flumotion-0.3.1.orig/common/as-python.m4 2007-03-02 15:26:46.704717964 +0100 | ||
| 4 | +++ flumotion-0.3.1/common/as-python.m4 2007-03-02 15:27:28.601326374 +0100 | ||
| 5 | @@ -199,6 +199,12 @@ | ||
| 6 | AC_MSG_CHECKING(for headers required to compile python extensions) | ||
| 7 | |||
| 8 | dnl deduce PYTHON_INCLUDES | ||
| 9 | + | ||
| 10 | + AC_ARG_WITH(python-includes, | ||
| 11 | + [ --with-python-includes=DIR path to Python includes], py_exec_prefix=$withval) | ||
| 12 | + if test x$py_exec_prefix != x; then | ||
| 13 | + PYTHON_INCLUDES="-I${py_exec_prefix}/include/python${PYTHON_VERSION}" | ||
| 14 | + else | ||
| 15 | py_prefix=`$PYTHON -c "import sys; print sys.prefix"` | ||
| 16 | py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` | ||
| 17 | PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}" | ||
| 18 | @@ -206,6 +212,7 @@ | ||
| 19 | if test "$py_prefix" != "$py_exec_prefix"; then | ||
| 20 | PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}" | ||
| 21 | fi | ||
| 22 | + fi | ||
| 23 | AC_SUBST(PYTHON_INCLUDES) | ||
| 24 | |||
| 25 | dnl check if the headers exist: | ||
diff --git a/meta-extras/packages/flumotion/flumotion_0.4.1.bb b/meta-extras/packages/flumotion/flumotion_0.4.1.bb deleted file mode 100644 index 976c8c4142..0000000000 --- a/meta-extras/packages/flumotion/flumotion_0.4.1.bb +++ /dev/null | |||
| @@ -1,41 +0,0 @@ | |||
| 1 | DESCRIPTION = "Fluendo Streaming Server" | ||
| 2 | LICENSE = "GPL" | ||
| 3 | DEPENDS = "gstreamer python-imaging python-gst twisted python-pygtk" | ||
| 4 | RDEPENDS = "python-resource python-pprint python-threading \ | ||
| 5 | python-imaging python-xml python-curses \ | ||
| 6 | python-compression python-fcntl python-pygobject \ | ||
| 7 | python-pickle python-netclient python-datetime \ | ||
| 8 | python-crypt python-twisted-core python-twisted-web \ | ||
| 9 | python-lang python-zopeinterface python-textutils \ | ||
| 10 | python-gst python-misc" | ||
| 11 | RDEPENDS_${PN}-gui = "${PN} python-pygtk python-pycairo" | ||
| 12 | PR = "r10" | ||
| 13 | |||
| 14 | SRC_URI = "http://www.flumotion.net/src/flumotion/flumotion-${PV}.tar.bz2 \ | ||
| 15 | file://python-path.patch;patch=1 \ | ||
| 16 | file://no-check-for-python-stuff.patch;patch=1" | ||
| 17 | |||
| 18 | inherit autotools distutils-base pkgconfig | ||
| 19 | |||
| 20 | export EPYDOC = "no" | ||
| 21 | |||
| 22 | EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" | ||
| 23 | |||
| 24 | PACKAGES =+ "flumotion-gui" | ||
| 25 | |||
| 26 | FILES_${PN}-dbg += "${libdir}/flumotion/python/flumotion/extern/*/.debug/*" | ||
| 27 | FILES_${PN} = "${bindir} ${sbindir} ${libdir}/flumotion" | ||
| 28 | FILES_${PN}-dev += "${libdir}/pkgconfig" | ||
| 29 | FILES_${PN}-gui = "${bindir}/flumotion-admin ${bindir}/flumotion-tester \ | ||
| 30 | ${libdir}/flumotion/python/flumotion/admin/gtk \ | ||
| 31 | ${libdir}/flumotion/python/flumotion/component/*/admin_gtk* \ | ||
| 32 | ${libdir}/flumotion/python/flumotion/component/*/*/admin_gtk* \ | ||
| 33 | ${libdir}/flumotion/python/flumotion/extern/*.py* \ | ||
| 34 | ${libdir}/flumotion/python/flumotion/extern/fdpass/*.py* \ | ||
| 35 | ${libdir}/flumotion/python/flumotion/extern/fdpass/fdpass.so \ | ||
| 36 | ${libdir}/flumotion/python/flumotion/extern/pytrayicon/*.py* \ | ||
| 37 | ${libdir}/flumotion/python/flumotion/extern/pytrayicon/pytrayicon.so \ | ||
| 38 | ${libdir}/flumotion/python/flumotion/manager \ | ||
| 39 | ${libdir}/flumotion/python/flumotion/ui \ | ||
| 40 | ${libdir}/flumotion/python/flumotion/wizard \ | ||
| 41 | ${datadir}/pixmaps ${datadir}/flumotion ${datadir}/applications" | ||
