Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] gst-plugins-good: disable (uninstalled) examples
@ 2012-09-06 15:29 Ross Burton
  2012-09-06 18:56 ` Saul Wold
  2012-09-10 15:54 ` Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: Ross Burton @ 2012-09-06 15:29 UTC (permalink / raw)
  To: openembedded-core

The examples pull in a GTK+ build dependency, so remove that too.

Signed-off-by: Ross Burton <ross.burton@intel.com>
---
 meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
index ac63f94..0fc34df 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
@@ -5,14 +5,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
                     file://common/coverage/coverage-report.pl;beginline=2;endline=17;md5=622921ffad8cb18ab906c56052788a3f \
                     file://gst/replaygain/rganalysis.c;beginline=1;endline=23;md5=b60ebefd5b2f5a8e0cab6bfee391a5fe"
 
-DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
+DEPENDS += "gst-plugins-base gconf cairo jpeg libpng zlib libid3tag flac \
 	    speex libsoup-2.4 pulseaudio"
-PR = "r2"
+PR = "r3"
 
 inherit gettext gconf
 
 EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check \
-                 --disable-orc"
+                 --disable-orc --disable-examples"
 
 do_configure_prepend() {
 	# This m4 file contains nastiness which conflicts with libtool 2.2.2
-- 
1.7.10




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] gst-plugins-good: disable (uninstalled) examples
  2012-09-06 15:29 [PATCH] gst-plugins-good: disable (uninstalled) examples Ross Burton
@ 2012-09-06 18:56 ` Saul Wold
  2012-09-06 19:42   ` Burton, Ross
  2012-09-10 15:54 ` Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Saul Wold @ 2012-09-06 18:56 UTC (permalink / raw)
  To: Ross Burton; +Cc: openembedded-core

On 09/06/2012 08:29 AM, Ross Burton wrote:
> The examples pull in a GTK+ build dependency, so remove that too.
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
>   meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
> index ac63f94..0fc34df 100644
> --- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
> +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
> @@ -5,14 +5,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
>                       file://common/coverage/coverage-report.pl;beginline=2;endline=17;md5=622921ffad8cb18ab906c56052788a3f \
>                       file://gst/replaygain/rganalysis.c;beginline=1;endline=23;md5=b60ebefd5b2f5a8e0cab6bfee391a5fe"
>
> -DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
> +DEPENDS += "gst-plugins-base gconf cairo jpeg libpng zlib libid3tag flac \
>   	    speex libsoup-2.4 pulseaudio"

You seem to be changing DEPENDS here also with no reason why.

Sau!

> -PR = "r2"
> +PR = "r3"
>
>   inherit gettext gconf
>
>   EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check \
> -                 --disable-orc"
> +                 --disable-orc --disable-examples"
>
>   do_configure_prepend() {
>   	# This m4 file contains nastiness which conflicts with libtool 2.2.2
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gst-plugins-good: disable (uninstalled) examples
  2012-09-06 18:56 ` Saul Wold
@ 2012-09-06 19:42   ` Burton, Ross
  0 siblings, 0 replies; 4+ messages in thread
From: Burton, Ross @ 2012-09-06 19:42 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

Hi Saul,

On 6 September 2012 19:56, Saul Wold <sgw@linux.intel.com> wrote:
>You seem to be changing DEPENDS here also with no reason why.

From the commit log:

"The examples pull in a GTK+ build dependency, so remove that too."

Ross



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gst-plugins-good: disable (uninstalled) examples
  2012-09-06 15:29 [PATCH] gst-plugins-good: disable (uninstalled) examples Ross Burton
  2012-09-06 18:56 ` Saul Wold
@ 2012-09-10 15:54 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-09-10 15:54 UTC (permalink / raw)
  To: Ross Burton; +Cc: openembedded-core

On 09/06/2012 08:29 AM, Ross Burton wrote:
> The examples pull in a GTK+ build dependency, so remove that too.
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
>   meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
> index ac63f94..0fc34df 100644
> --- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
> +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb
> @@ -5,14 +5,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
>                       file://common/coverage/coverage-report.pl;beginline=2;endline=17;md5=622921ffad8cb18ab906c56052788a3f \
>                       file://gst/replaygain/rganalysis.c;beginline=1;endline=23;md5=b60ebefd5b2f5a8e0cab6bfee391a5fe"
>
> -DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
> +DEPENDS += "gst-plugins-base gconf cairo jpeg libpng zlib libid3tag flac \
>   	    speex libsoup-2.4 pulseaudio"
> -PR = "r2"
> +PR = "r3"
>
>   inherit gettext gconf
>
>   EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check \
> -                 --disable-orc"
> +                 --disable-orc --disable-examples"
>
>   do_configure_prepend() {
>   	# This m4 file contains nastiness which conflicts with libtool 2.2.2
>

Merged into OE-Core

Thanks
	Sau!




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-09-10 16:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-06 15:29 [PATCH] gst-plugins-good: disable (uninstalled) examples Ross Burton
2012-09-06 18:56 ` Saul Wold
2012-09-06 19:42   ` Burton, Ross
2012-09-10 15:54 ` Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox