summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-11-04 10:42:21 +0000
committerJeroen Roovers <jer@gentoo.org>2014-11-04 10:42:21 +0000
commitf21e20531c9bf0e4cd2bc8b3a82a646acb4e426f (patch)
tree87e637261b7e3f2a043e1297ea2ced31242e3f9e /x11-misc
parentremove texlive 2011 (diff)
downloadgentoo-2-f21e20531c9bf0e4cd2bc8b3a82a646acb4e426f.tar.gz
gentoo-2-f21e20531c9bf0e4cd2bc8b3a82a646acb4e426f.tar.bz2
gentoo-2-f21e20531c9bf0e4cd2bc8b3a82a646acb4e426f.zip
Remove bashism (bug #527236).
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/rss-glx/ChangeLog8
-rw-r--r--x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch2
2 files changed, 7 insertions, 3 deletions
diff --git a/x11-misc/rss-glx/ChangeLog b/x11-misc/rss-glx/ChangeLog
index d6afbaae7443..9728a7b54fb7 100644
--- a/x11-misc/rss-glx/ChangeLog
+++ b/x11-misc/rss-glx/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/rss-glx
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/rss-glx/ChangeLog,v 1.80 2013/04/28 22:18:35 jer Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/rss-glx/ChangeLog,v 1.81 2014/11/04 10:42:21 jer Exp $
+
+ 04 Nov 2014; Jeroen Roovers <jer@gentoo.org>
+ files/rss-glx-0.9.1-quesoglc.patch:
+ Remove bashism (bug #527236).
28 Apr 2013; Jeroen Roovers <jer@gentoo.org> -rss-glx-0.9.0.ebuild,
rss-glx-0.9.1.ebuild:
diff --git a/x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch b/x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch
index 88afe7131fc4..0c3ae1e6bed1 100644
--- a/x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch
+++ b/x11-misc/rss-glx/files/rss-glx-0.9.1-quesoglc.patch
@@ -10,7 +10,7 @@ http://bugs.gentoo.org/313837
-PKG_CHECK_MODULES(quesoglc, quesoglc >= 0.7, AC_DEFINE([HAVE_GLC], , [QuesoGLC is available for use.]), AC_DEFINE([MISSING_GLC], , [QuesoGLC not available.]))
+AC_ARG_WITH([quesoglc], AS_HELP_STRING([--with-quesoglc], [Build with QuusoGLC library (default: disabled)]))
-+if test "x$with_quesoglc" == "xyes"; then
++if test "x$with_quesoglc" = "xyes"; then
+ PKG_CHECK_MODULES(quesoglc, quesoglc >= 0.7, AC_DEFINE([HAVE_GLC], , [QuesoGLC is available for use.]), AC_DEFINE([MISSING_GLC], , [QuesoGLC not available.]))
+fi