From c4630e790064adca0fb20a5945618d4809a6f983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Tue, 9 Sep 2014 15:05:07 +0000 Subject: Add GNOME stratum, system and cluster This introduces a second version of libxkbcommon. This is unavoidable really as (a) libinput requires libxkbcommon, (b) Mutter requires libxkbcommon with X11 support enabled, and (c) X11 support in libxkbcommon requires xcb-xkb. To avoid the input-common stratum depending on the whole of X11, we do two variants of libxkbcommon and, in the case where X11 support is needed, one overrides the other. Change-Id: Ib6a47a4eb859d7b32c94f0cb05add774db6d15c8 --- strata/gnome/autoconf-archive.morph | 5 +++++ strata/gnome/caribou.morph | 5 +++++ strata/gnome/clutter.morph | 6 ++++++ strata/gnome/cogl.morph | 6 ++++++ strata/gnome/d-feet.morph | 5 +++++ strata/gnome/dconf.morph | 5 +++++ strata/gnome/evolution-data-server.morph | 5 +++++ strata/gnome/gconf.morph | 5 +++++ strata/gnome/geoclue.morph | 5 +++++ strata/gnome/gnome-keyring.morph | 5 +++++ strata/gnome/gnome-session.morph | 5 +++++ strata/gnome/gnome-settings-daemon.morph | 5 +++++ strata/gnome/gnome-shell.morph | 5 +++++ strata/gnome/gnulib.morph | 8 ++++++++ strata/gnome/gvfs.morph | 5 +++++ strata/gnome/ibus.morph | 5 +++++ strata/gnome/icu.morph | 8 ++++++++ strata/gnome/libsecret.morph | 5 +++++ strata/gnome/mozjs17.morph | 17 +++++++++++++++++ strata/gnome/mozjs24.morph | 17 +++++++++++++++++ strata/gnome/p11-kit.morph | 5 +++++ strata/gnome/polkit.morph | 5 +++++ strata/gnome/telepathy-glib.morph | 5 +++++ strata/gnome/upower.morph | 5 +++++ 24 files changed, 152 insertions(+) create mode 100644 strata/gnome/autoconf-archive.morph create mode 100644 strata/gnome/caribou.morph create mode 100644 strata/gnome/clutter.morph create mode 100644 strata/gnome/cogl.morph create mode 100644 strata/gnome/d-feet.morph create mode 100644 strata/gnome/dconf.morph create mode 100644 strata/gnome/evolution-data-server.morph create mode 100644 strata/gnome/gconf.morph create mode 100644 strata/gnome/geoclue.morph create mode 100644 strata/gnome/gnome-keyring.morph create mode 100644 strata/gnome/gnome-session.morph create mode 100644 strata/gnome/gnome-settings-daemon.morph create mode 100644 strata/gnome/gnome-shell.morph create mode 100644 strata/gnome/gnulib.morph create mode 100644 strata/gnome/gvfs.morph create mode 100644 strata/gnome/ibus.morph create mode 100644 strata/gnome/icu.morph create mode 100644 strata/gnome/libsecret.morph create mode 100644 strata/gnome/mozjs17.morph create mode 100644 strata/gnome/mozjs24.morph create mode 100644 strata/gnome/p11-kit.morph create mode 100644 strata/gnome/polkit.morph create mode 100644 strata/gnome/telepathy-glib.morph create mode 100644 strata/gnome/upower.morph (limited to 'strata/gnome') diff --git a/strata/gnome/autoconf-archive.morph b/strata/gnome/autoconf-archive.morph new file mode 100644 index 00000000..de05f0aa --- /dev/null +++ b/strata/gnome/autoconf-archive.morph @@ -0,0 +1,5 @@ +name: autoconf-archive +kind: chunk +build-system: autotools +pre-configure-commands: +- ./bootstrap.sh diff --git a/strata/gnome/caribou.morph b/strata/gnome/caribou.morph new file mode 100644 index 00000000..19dd6ca4 --- /dev/null +++ b/strata/gnome/caribou.morph @@ -0,0 +1,5 @@ +name: caribou +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-gtk2-module diff --git a/strata/gnome/clutter.morph b/strata/gnome/clutter.morph new file mode 100644 index 00000000..cb677d8e --- /dev/null +++ b/strata/gnome/clutter.morph @@ -0,0 +1,6 @@ +name: clutter +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --enable-wayland-backend --enable-wayland-compositor + --enable-egl-backend --enable-evdev-input --enable-x11-backend diff --git a/strata/gnome/cogl.morph b/strata/gnome/cogl.morph new file mode 100644 index 00000000..95ab78e3 --- /dev/null +++ b/strata/gnome/cogl.morph @@ -0,0 +1,6 @@ +name: cogl +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --enable-wayland-egl-platform --enable-wayland-egl-server + --enable-kms-egl-platform --enable-xlib-egl-platform --enable-cogl-gst diff --git a/strata/gnome/d-feet.morph b/strata/gnome/d-feet.morph new file mode 100644 index 00000000..8d3e201b --- /dev/null +++ b/strata/gnome/d-feet.morph @@ -0,0 +1,5 @@ +name: d-feet +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-tests diff --git a/strata/gnome/dconf.morph b/strata/gnome/dconf.morph new file mode 100644 index 00000000..b9ea35a7 --- /dev/null +++ b/strata/gnome/dconf.morph @@ -0,0 +1,5 @@ +name: dconf +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-man diff --git a/strata/gnome/evolution-data-server.morph b/strata/gnome/evolution-data-server.morph new file mode 100644 index 00000000..aa44ca07 --- /dev/null +++ b/strata/gnome/evolution-data-server.morph @@ -0,0 +1,5 @@ +name: evolution-data-server +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-goa --disable-uoa --with-libdb=no --disable-google --with-nss-includes=/usr/include/nss --with-nspr-includes=/usr/include/nspr diff --git a/strata/gnome/gconf.morph b/strata/gnome/gconf.morph new file mode 100644 index 00000000..05fdee0e --- /dev/null +++ b/strata/gnome/gconf.morph @@ -0,0 +1,5 @@ +name: gconf +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-orbit --disable-documentation diff --git a/strata/gnome/geoclue.morph b/strata/gnome/geoclue.morph new file mode 100644 index 00000000..ce91eff9 --- /dev/null +++ b/strata/gnome/geoclue.morph @@ -0,0 +1,5 @@ +name: geoclue +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-nmea-source diff --git a/strata/gnome/gnome-keyring.morph b/strata/gnome/gnome-keyring.morph new file mode 100644 index 00000000..bdc2ca70 --- /dev/null +++ b/strata/gnome/gnome-keyring.morph @@ -0,0 +1,5 @@ +name: gnome-keyring +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-doc diff --git a/strata/gnome/gnome-session.morph b/strata/gnome/gnome-session.morph new file mode 100644 index 00000000..d61cb5e9 --- /dev/null +++ b/strata/gnome/gnome-session.morph @@ -0,0 +1,5 @@ +name: gnome-session +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-man --enable-systemd diff --git a/strata/gnome/gnome-settings-daemon.morph b/strata/gnome/gnome-settings-daemon.morph new file mode 100644 index 00000000..bb1123cb --- /dev/null +++ b/strata/gnome/gnome-settings-daemon.morph @@ -0,0 +1,5 @@ +name: gnome-settings-daemon +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-cups --disable-man diff --git a/strata/gnome/gnome-shell.morph b/strata/gnome/gnome-shell.morph new file mode 100644 index 00000000..d8180fb2 --- /dev/null +++ b/strata/gnome/gnome-shell.morph @@ -0,0 +1,5 @@ +name: gnome-shell +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-man --enable-compile-warnings=maximum diff --git a/strata/gnome/gnulib.morph b/strata/gnome/gnulib.morph new file mode 100644 index 00000000..f1837c94 --- /dev/null +++ b/strata/gnome/gnulib.morph @@ -0,0 +1,8 @@ +name: gnulib +kind: chunk +build-system: manual +pre-configure-commands: +- mkdir -p "$DESTDIR$PREFIX"/share/gnulib +- cp -r * "$DESTDIR$PREFIX"/share/gnulib +- mkdir -p "$DESTDIR$PREFIX"/bin +- ln -s "$DESTDIR$PREFIX"/share/gnulib/gnulib-tool "$DESTDIR$PREFIX"/bin/gnulib-tool diff --git a/strata/gnome/gvfs.morph b/strata/gnome/gvfs.morph new file mode 100644 index 00000000..f6bf47f3 --- /dev/null +++ b/strata/gnome/gvfs.morph @@ -0,0 +1,5 @@ +name: gvfs +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-gphoto2 --disable-documentation diff --git a/strata/gnome/ibus.morph b/strata/gnome/ibus.morph new file mode 100644 index 00000000..8d858a3e --- /dev/null +++ b/strata/gnome/ibus.morph @@ -0,0 +1,5 @@ +name: ibus +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-gtk2 --disable-gtk3 --disable-xim --disable-tests --enable-wayland diff --git a/strata/gnome/icu.morph b/strata/gnome/icu.morph new file mode 100644 index 00000000..37dec07e --- /dev/null +++ b/strata/gnome/icu.morph @@ -0,0 +1,8 @@ +name: icu +kind: chunk +configure-commands: +- cd source; ./runConfigureICU Linux --prefix=/usr +build-commands: +- cd source; unset TARGET ; make +install-commands: +- cd source; unset TARGET ; make DESTDIR="$DESTDIR" install diff --git a/strata/gnome/libsecret.morph b/strata/gnome/libsecret.morph new file mode 100644 index 00000000..054b9f15 --- /dev/null +++ b/strata/gnome/libsecret.morph @@ -0,0 +1,5 @@ +name: libsecret +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-manpages diff --git a/strata/gnome/mozjs17.morph b/strata/gnome/mozjs17.morph new file mode 100644 index 00000000..971ebfd3 --- /dev/null +++ b/strata/gnome/mozjs17.morph @@ -0,0 +1,17 @@ +name: mozjs17 +kind: chunk +build-system: manual +configure-commands: +- | + cd js/src; + ./configure --prefix="$PREFIX" \ + --with-system-nspr \ + --with-system-ffi \ + --enable-threadsafe +build-commands: +- | + cd js/src; + make +install-commands: +- cd js/src; + make DESTDIR="$DESTDIR" install diff --git a/strata/gnome/mozjs24.morph b/strata/gnome/mozjs24.morph new file mode 100644 index 00000000..a88914c1 --- /dev/null +++ b/strata/gnome/mozjs24.morph @@ -0,0 +1,17 @@ +name: mozjs24 +kind: chunk +build-system: manual +configure-commands: +- | + cd js/src; + ./configure --prefix="$PREFIX" \ + --with-system-nspr \ + --with-system-ffi \ + --enable-threadsafe +build-commands: +- | + cd js/src; + make +install-commands: +- cd js/src; + make DESTDIR="$DESTDIR" install diff --git a/strata/gnome/p11-kit.morph b/strata/gnome/p11-kit.morph new file mode 100644 index 00000000..b5a67729 --- /dev/null +++ b/strata/gnome/p11-kit.morph @@ -0,0 +1,5 @@ +name: p11-kit +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --without-trust-paths diff --git a/strata/gnome/polkit.morph b/strata/gnome/polkit.morph new file mode 100644 index 00000000..a5d7eb1f --- /dev/null +++ b/strata/gnome/polkit.morph @@ -0,0 +1,5 @@ +name: polkit +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-man-pages --disable-gtk-doc --enable-libsystemd-login=yes diff --git a/strata/gnome/telepathy-glib.morph b/strata/gnome/telepathy-glib.morph new file mode 100644 index 00000000..e16f3294 --- /dev/null +++ b/strata/gnome/telepathy-glib.morph @@ -0,0 +1,5 @@ +name: telepathy-glib +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-Werror diff --git a/strata/gnome/upower.morph b/strata/gnome/upower.morph new file mode 100644 index 00000000..889a32b9 --- /dev/null +++ b/strata/gnome/upower.morph @@ -0,0 +1,5 @@ +name: upower +kind: chunk +build-system: autotools +configure-commands: +- ./autogen.sh --prefix="$PREFIX" --disable-man-pages -- cgit v1.2.1