[gnome-ostree] manifest: Add orc



commit 2be15602cbe5217da13c97475c15d8ae0232ce25
Author: Colin Walters <walters verbum org>
Date:   Wed May 15 08:34:45 2013 -0400

    manifest: Add orc
    
    One can't go wrong with orcs.  Also, if we're tracking gstreamer from
    git, we should also be using orc.

 manifest.json             |    3 +++
 patches/orc-autogen.patch |   37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+), 0 deletions(-)
---
diff --git a/manifest.json b/manifest.json
index 2108d33..9be0ea2 100644
--- a/manifest.json
+++ b/manifest.json
@@ -630,6 +630,9 @@
 
                {"src": "gnome:gnome-ostree-integration"},
 
+               {"src": "fd-gstreamer:orc",
+                "patches": ["orc-autogen.patch"]},
+
                {"src": "fd-gstreamer:gstreamer",
                 "config-opts": ["--disable-tests",
                                 "--disable-fatal-warnings"]},
diff --git a/patches/orc-autogen.patch b/patches/orc-autogen.patch
new file mode 100644
index 0000000..6f099fa
--- /dev/null
+++ b/patches/orc-autogen.patch
@@ -0,0 +1,37 @@
+From 5366fd10c6834e4dbf5f10d6a52e7936bd768352 Mon Sep 17 00:00:00 2001
+From: Colin Walters <walters verbum org>
+Date: Wed, 15 May 2013 08:06:09 -0400
+Subject: [PATCH] autogen.sh: Honor NOCONFIGURE=1
+
+See http://people.gnome.org/~walters/docs/build-api.txt
+
+While we have the patient open, use "set -e" so we don't have to chain
+with &&, and use "exec" for the last process to avoid a pointless
+intermediate shell process.
+---
+ autogen.sh |    8 ++++++--
+ 1 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/autogen.sh b/autogen.sh
+index e43e0df..451f915 100755
+--- a/autogen.sh
++++ b/autogen.sh
+@@ -1,9 +1,13 @@
+ #!/bin/sh
+ 
++set -e
++
+ if [ `whoami` = ds ] ; then
+   confargs="$confargs --enable-gtk-doc"
+ fi
+ 
+-autoreconf -i -f &&
+-./configure --disable-static $confargs $@
++autoreconf -i -f
++if test -z "$NOCONFIGURE"; then
++  exec ./configure --disable-static $confargs $@
++fi
+ 
+-- 
+1.7.1
+


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