summaryrefslogtreecommitdiff
path: root/gnome/strata/gnome
diff options
context:
space:
mode:
Diffstat (limited to 'gnome/strata/gnome')
-rw-r--r--gnome/strata/gnome/evolution-data-server.morph15
-rw-r--r--gnome/strata/gnome/evolution.morph13
2 files changed, 13 insertions, 15 deletions
diff --git a/gnome/strata/gnome/evolution-data-server.morph b/gnome/strata/gnome/evolution-data-server.morph
index bfa8671a..dfe9b55d 100644
--- a/gnome/strata/gnome/evolution-data-server.morph
+++ b/gnome/strata/gnome/evolution-data-server.morph
@@ -1,10 +1,11 @@
name: evolution-data-server
kind: chunk
-build-system: autotools
+build-system: cmake
configure-commands:
-- |
- ./autogen.sh --prefix="$PREFIX" --sysconfdir=/etc \
- --disable-uoa --with-libdb=no \
- --enable-vala-bindings --with-krb5=yes \
- --with-nss-includes=/usr/include/nss \
- --with-nspr-includes=/usr/include/nspr
+- cmake -DCMAKE_INSTALL_PREFIX="$PREFIX"
+ -DSYSCONFDIR=/etc
+ -DENABLE_INTROSPECTION=ON
+ -DENABLE_UOA=OFF
+ -DENABLE_VALA_BINDINGS=ON
+ -DWITH_LIBDB=OFF
+ -DWITH_OPENLDAP=OFF .
diff --git a/gnome/strata/gnome/evolution.morph b/gnome/strata/gnome/evolution.morph
index e0d0b1f6..fcef80e5 100644
--- a/gnome/strata/gnome/evolution.morph
+++ b/gnome/strata/gnome/evolution.morph
@@ -1,11 +1,8 @@
name: evolution
kind: chunk
-build-system: autotools
+build-system: cmake
configure-commands:
-- |
- ./autogen.sh --prefix="$PREFIX" --sysconfdir=/etc \
- --disable-autoar --disable-libcryptui --disable-pst-import --disable-gtkspell \
- --disable-text-highlight --enable-contact-maps \
- --enable-nss --enable-smime \
- --with-nspr-includes=/usr/include/nspr --with-nspr-libs=/usr/lib \
- --with-nss-includes=/usr/include/nss --with-nss-libs=/usr/lib/nss
+- cmake . -DCMAKE_INSTALL_PREFIX="$PREFIX" -DENABLE_AUTOAR=OFF
+ -DENABLE_CONTACT_MAPS=ON -DENABLE_GTKSPELL=OFF
+ -DENABLE_LIBCRYPTUI=OFF -DENABLE_PST_IMPORT=OFF
+ -DENABLE_TEXT_HIGHLIGHT=OFF -DENABLE_YTNEF=OFF -DWITH_OPENLDAP=OFF