Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Christoforides <alexis@thenull.net>2016-10-21 11:27:01 +0300
committerAlexis Christoforides <alexis@thenull.net>2016-10-21 11:27:01 +0300
commit9442c567c75f7be3a6c661d12f67fa62ba01b000 (patch)
tree2dbd74a4da915aa7e99e442a5e85d7c33f0c09aa /packages/gst-plugins-base.py
parent8b7481ea2e0d95ba6f7d6e15b9fbcc53888beca2 (diff)
Remove all unmaintained packages
Diffstat (limited to 'packages/gst-plugins-base.py')
-rw-r--r--packages/gst-plugins-base.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/packages/gst-plugins-base.py b/packages/gst-plugins-base.py
deleted file mode 100644
index f53d66d..0000000
--- a/packages/gst-plugins-base.py
+++ /dev/null
@@ -1,23 +0,0 @@
-class GstPluginsBasePackage (GstreamerPackage):
-
- def __init__(self):
- GstreamerPackage.__init__(self, 'gstreamer', 'gst-plugins-base',
- '0.10.36', configure_flags=[
- '--disable-gtk-doc',
- '--disable-gio',
- '--disable-gnome_vfs',
- '--disable-pango'
- ]
- )
-
- # FIXME: these should be passed on the Linux profile
- # when we do away with xvideo/xoverlay and replace
- # with Clutter and Cairo
- if Package.profile.name == 'darwin':
- self.configure_flags.extend([
- '--disable-x',
- '--disable-xvideo',
- '--disable-xshm'
- ])
-
-GstPluginsBasePackage()