Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/deps/packages.json9
-rw-r--r--scripts/deps/sugar-build.json2
-rw-r--r--scripts/deps/sugar-runtime.json9
3 files changed, 19 insertions, 1 deletions
diff --git a/scripts/deps/packages.json b/scripts/deps/packages.json
index 9e094a8..2ee83fc 100644
--- a/scripts/deps/packages.json
+++ b/scripts/deps/packages.json
@@ -1,6 +1,15 @@
{ "Xvfb":
{ "fedora": "Xvfb",
"ubuntu": "xvfb" },
+ "xinit":
+ { "fedora": "xorg-x11-init",
+ "ubuntu": "xinit" },
+ "cairo foreign":
+ { "fedora": "pygobject3",
+ "ubuntu": "python-gi-cairo" },
+ "cairo typelib":
+ { "fedora": "gobject-introspection",
+ "ubuntu": "gir1.2-freedesktop" },
"pkg-config":
{ "fedora": "pkgconfig",
"ubuntu": "pkgconfig" },
diff --git a/scripts/deps/sugar-build.json b/scripts/deps/sugar-build.json
index 634bd5c..2f368e7 100644
--- a/scripts/deps/sugar-build.json
+++ b/scripts/deps/sugar-build.json
@@ -1,5 +1,7 @@
[{ "check": "atk-bridge",
"checker": "gtkmodule" },
+ { "check": "xinit",
+ "checker": "binary" },
{ "check": "Xephyr",
"checker": "binary" },
{ "check": "dbus-launch",
diff --git a/scripts/deps/sugar-runtime.json b/scripts/deps/sugar-runtime.json
index 574c819..61cc7c1 100644
--- a/scripts/deps/sugar-runtime.json
+++ b/scripts/deps/sugar-runtime.json
@@ -65,6 +65,9 @@
{ "check_name": "webkit typelib",
"check": "from gi.repository import WebKit",
"checker": "python" },
+ { "check_name": "cairo foreign",
+ "check": "from gi.repository import Gdk, Gtk; window = Gtk.Window(0); window.realize();context = Gdk.cairo_create(window.get_window())",
+ "checker": "python" },
{ "check_name": "pygst python",
"check": "import pygst",
"checker": "python" },
@@ -75,4 +78,8 @@
"checker": "gstreamer" },
{ "check_name": "abiword python",
"check": "import abiword",
- "checker": "python" }]
+ "checker": "python" },
+ { "check_name": "cairo typelib",
+ "check": "from gi.repository import cairo",
+ "checker": "python" }
+]