From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PogkM-0007aa-V2 for garchives@archives.gentoo.org; Sun, 13 Feb 2011 18:32:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 833FBE08FF; Sun, 13 Feb 2011 18:32:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 51493E08FF for ; Sun, 13 Feb 2011 18:32:27 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EBAD1B4070 for ; Sun, 13 Feb 2011 18:32:26 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 948) id 4E59F20057; Sun, 13 Feb 2011 18:32:25 +0000 (UTC) From: "Diego Petteno (flameeyes)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, flameeyes@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/compiz-plugins-extra/files: compiz-plugins-extra-0.8.6-libnotify.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: compiz-plugins-extra-0.8.6-libnotify.patch X-VCS-Directories: x11-plugins/compiz-plugins-extra/files X-VCS-Committer: flameeyes X-VCS-Committer-Name: Diego Petteno Content-Type: text/plain; charset=utf8 Message-Id: <20110213183225.4E59F20057@flycatcher.gentoo.org> Date: Sun, 13 Feb 2011 18:32:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: f34c9e36ed8dd82290c1a4c2b31c06aa flameeyes 11/02/13 18:32:25 Added: compiz-plugins-extra-0.8.6-libnotify.patch Log: Resolve automagic dependencies over libnotify: force it on 0.8.4-r1, an= d patch 0.8.6-r1 to respect a libnotify USE flag instead. Drop old versio= n. =20 (Portage version: 2.2.0_alpha23/cvs/Linux x86_64) Revision Changes Path 1.1 x11-plugins/compiz-plugins-extra/files/compiz-plugin= s-extra-0.8.6-libnotify.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/compiz= -plugins-extra/files/compiz-plugins-extra-0.8.6-libnotify.patch?rev=3D1.1= &view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/compiz= -plugins-extra/files/compiz-plugins-extra-0.8.6-libnotify.patch?rev=3D1.1= &content-type=3Dtext/plain Index: compiz-plugins-extra-0.8.6-libnotify.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Index: compiz-plugins-extra-0.8.6/configure.ac =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- compiz-plugins-extra-0.8.6.orig/configure.ac +++ compiz-plugins-extra-0.8.6/configure.ac @@ -136,9 +136,12 @@ AM_CONDITIONAL(THREED_PLUGIN, test "x$ha PKG_CHECK_MODULES(COMPIZMOUSEPOLL, compiz-mousepoll, [have_compiz_mousep= oll=3Dyes], [have_compiz_mousepoll=3Dno]) AM_CONDITIONAL(SHOWMOUSE_PLUGIN, test "x$have_compiz_mousepoll" =3D "xye= s") =20 -PKG_CHECK_MODULES(LIBNOTIFY, libnotify, [have_libnotify=3Dyes], [have_li= bnotify=3Dno]) +AC_ARG_WITH([libnotify], [AS_HELP_STRING([--without-libnotify], [Build w= ithout libnotify support @<:@default=3Dauto@:>@])]) +AS_IF([test "x$with_libnotify" !=3D "xno"], [ + PKG_CHECK_MODULES(LIBNOTIFY, libnotify, [have_libnotify=3Dyes], [have_= libnotify=3Dno]) +]) AM_CONDITIONAL(NOTIFICATION_PLUGIN, test "x$have_libnotify" =3D "xyes") -if test "$have_libnotify" =3D yes; then +if test "x$have_libnotify" =3D "xyes"; then AC_DEFINE(USE_NOTIFICATION, 1, [Build notification plugin]) fi =20