diff options
author | 2015-10-24 10:41:15 +0200 | |
---|---|---|
committer | 2015-10-24 10:41:52 +0200 | |
commit | 4ff1769c59570f61f29a152457f866431eda91bc (patch) | |
tree | 5d923f219b0804c580a663e17e338bad2ffe537c /app-misc/workrave/files | |
parent | app-misc/sphinx: add 2.2.10, bug 523240 (diff) | |
download | gentoo-4ff1769c59570f61f29a152457f866431eda91bc.tar.gz gentoo-4ff1769c59570f61f29a152457f866431eda91bc.tar.bz2 gentoo-4ff1769c59570f61f29a152457f866431eda91bc.zip |
app-misc/workrave: Force the use of gstreamer-1 instead of letting automagic switching (#563584 by Lucian Poston), don't enable introspection support automagically (#561124 by Toralf Förster), debug configure option is only playing with CFLAGS, stop relying on obsolete gnet lib as other distributions are doing for years.
Package-Manager: portage-2.2.23
Diffstat (limited to 'app-misc/workrave/files')
-rw-r--r-- | app-misc/workrave/files/workrave-1.10.6-automagic-gstreamer.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-misc/workrave/files/workrave-1.10.6-automagic-gstreamer.patch b/app-misc/workrave/files/workrave-1.10.6-automagic-gstreamer.patch new file mode 100644 index 000000000000..37e43db8a8f0 --- /dev/null +++ b/app-misc/workrave/files/workrave-1.10.6-automagic-gstreamer.patch @@ -0,0 +1,23 @@ +--- configure.ac.old 2015-10-24 10:11:47.469290574 +0200 ++++ configure.ac 2015-10-24 10:14:35.918680898 +0200 +@@ -884,20 +884,12 @@ + if test "x$enable_gstreamer" != "xno"; + then + PKG_CHECK_MODULES([GSTREAMER], +- [gstreamer-0.10], +- [config_gstreamer=yes +- AC_DEFINE(HAVE_GSTREAMER, 1, [Use GStreamer for playing sounds])], [ ]) +- +- if test "x$config_gstreamer" != "xyes"; +- then +- PKG_CHECK_MODULES([GSTREAMER], + [gstreamer-1.0], + [config_gstreamer=yes + AC_DEFINE(HAVE_GSTREAMER, 1, [Use GStreamer for playing sounds])], + [if test "x$enable_gstreamer" = "xyes"; then + AC_MSG_ERROR([GStreamer development headers not found.]) + fi]) +- fi + fi + + |