diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-05-12 17:53:22 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-05-12 17:53:22 +0000 |
commit | c1512bab55a323b509c3741f3b682dd54a3be4ed (patch) | |
tree | 0e54ebda6bb07c7b0eb968cefbe0af2738b41667 /lxde-base | |
parent | keyword ~amd64-fbsd (diff) | |
download | gentoo-2-c1512bab55a323b509c3741f3b682dd54a3be4ed.tar.gz gentoo-2-c1512bab55a323b509c3741f3b682dd54a3be4ed.tar.bz2 gentoo-2-c1512bab55a323b509c3741f3b682dd54a3be4ed.zip |
Fix libwnck check thanks to Rafał Mużyło <galtgendo@o2.pl>. Bug #415595
(Portage version: 2.1.10.59/cvs/Linux x86_64)
Diffstat (limited to 'lxde-base')
-rw-r--r-- | lxde-base/lxpanel/ChangeLog | 6 | ||||
-rw-r--r-- | lxde-base/lxpanel/files/lxpanel-0.5.9-libwnck-check.patch | 13 | ||||
-rw-r--r-- | lxde-base/lxpanel/lxpanel-0.5.9.ebuild | 4 |
3 files changed, 21 insertions, 2 deletions
diff --git a/lxde-base/lxpanel/ChangeLog b/lxde-base/lxpanel/ChangeLog index ba7231219a88..700df10d749a 100644 --- a/lxde-base/lxpanel/ChangeLog +++ b/lxde-base/lxpanel/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for lxde-base/lxpanel # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.41 2012/05/12 15:12:21 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.42 2012/05/12 17:53:22 hwoarang Exp $ + + 12 May 2012; Markos Chandras <hwoarang@gentoo.org> + +files/lxpanel-0.5.9-libwnck-check.patch, lxpanel-0.5.9.ebuild: + Fix libwnck check thanks to Rafał Mużyło <galtgendo@o2.pl>. Bug #415595 12 May 2012; Markos Chandras <hwoarang@gentoo.org> lxpanel-0.5.9.ebuild: disable wnckpager plugin. bug #415519 diff --git a/lxde-base/lxpanel/files/lxpanel-0.5.9-libwnck-check.patch b/lxde-base/lxpanel/files/lxpanel-0.5.9-libwnck-check.patch new file mode 100644 index 000000000000..29fb81a31152 --- /dev/null +++ b/lxde-base/lxpanel/files/lxpanel-0.5.9-libwnck-check.patch @@ -0,0 +1,13 @@ +Index: lxpanel-0.5.9/configure.ac +=================================================================== +--- lxpanel-0.5.9.orig/configure.ac ++++ lxpanel-0.5.9/configure.ac +@@ -79,7 +79,7 @@ PKG_CHECK_MODULES(X11, [$pkg_modules]) + AC_SUBST(X11_LIBS) + + pkg_modules="libwnck-1.0" +-PKG_CHECK_MODULES(WNCK, [$pkg_modules]) ++PKG_CHECK_MODULES(WNCK, [$pkg_modules], [:], [:]) + AC_SUBST(WNCK_CFLAGS) + AC_SUBST(WNCK_LIBS) + diff --git a/lxde-base/lxpanel/lxpanel-0.5.9.ebuild b/lxde-base/lxpanel/lxpanel-0.5.9.ebuild index b573501d2f23..5531a2fb3fa9 100644 --- a/lxde-base/lxpanel/lxpanel-0.5.9.ebuild +++ b/lxde-base/lxpanel/lxpanel-0.5.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.9.ebuild,v 1.2 2012/05/12 15:12:21 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.9.ebuild,v 1.3 2012/05/12 17:53:22 hwoarang Exp $ EAPI="4" @@ -30,6 +30,8 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${PN}-0.5.8-dynamic-width.patch epatch "${FILESDIR}"/${P}-sandbox.patch + #bug #415595 + epatch "${FILESDIR}"/${P}-libwnck-check.patch eautoreconf } |