[gnome-ostree] 3.8: add telepathy-mission-control



commit 8ff7e0aed1eac3dbd99980f1cdd2c150fe54cad6
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Thu Nov 15 11:37:35 2012 -0500

    3.8: add telepathy-mission-control

 manifest.json                         |    5 +++
 patches/mission-control-autogen.patch |   51 +++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+), 0 deletions(-)
---
diff --git a/manifest.json b/manifest.json
index cc699ca..78e55dc 100644
--- a/manifest.json
+++ b/manifest.json
@@ -803,6 +803,11 @@
 		 "tag": "telepathy-logger-0.2.12",
 		 "patches": ["telepathy-logger-autogen.patch"]},
 
+		{"src": "fd-telepathy:telepathy-mission-control",
+		 "tag": "telepathy-mission-control-5.14.0",
+		 "config-opts": ["--disable-gtk-doc"],
+                 "patches": ["mission-control-autogen.patch"]},
+
 		{"src": "gnome:gnome-screensaver"},
 
 		{"src": "gnome:gnome-session",
diff --git a/patches/mission-control-autogen.patch b/patches/mission-control-autogen.patch
new file mode 100644
index 0000000..e1ebf78
--- /dev/null
+++ b/patches/mission-control-autogen.patch
@@ -0,0 +1,51 @@
+From 85ed00be83c6928cc1d16f7a4d03b0c8a963017e Mon Sep 17 00:00:00 2001
+From: Cosimo Cecchi <cosimoc gnome org>
+Date: Thu, 15 Nov 2012 12:04:30 -0500
+Subject: [PATCH] build: honor NOCONFIGURE in autogen.sh
+
+Like telepathy-glib does already.
+
+https://bugs.freedesktop.org/show_bug.cgi?id=57165
+---
+ autogen.sh | 25 +++++++++++++++----------
+ 1 file changed, 15 insertions(+), 10 deletions(-)
+
+diff --git a/autogen.sh b/autogen.sh
+index 8c0315c..5c3d084 100755
+--- a/autogen.sh
++++ b/autogen.sh
+@@ -20,16 +20,21 @@ fi
+ echo 'Running autoreconf -i --force'
+ autoreconf -i --force
+ 
+-run_configure=true
+-for arg in $*; do
+-    case $arg in
+-        --no-configure)
+-            run_configure=false
+-            ;;
+-        *)
+-            ;;
+-    esac
+-done
++# Honor NOCONFIGURE for compatibility with gnome-autogen.sh
++if test x"$NOCONFIGURE" = x; then
++    run_configure=true
++    for arg in $*; do
++        case $arg in
++            --no-configure)
++                run_configure=false
++                ;;
++            *)
++                ;;
++        esac
++    done
++else
++    run_configure=false
++fi
+ 
+ default_args="--enable-gtk-doc --enable-mcd-plugins --enable-gnome-keyring=auto"
+ 
+-- 
+1.8.0
+



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]