diff options
author | Yuri Vasilevski <yvasilev@gentoo.org> | 2010-01-06 00:25:05 +0000 |
---|---|---|
committer | Yuri Vasilevski <yvasilev@gentoo.org> | 2010-01-06 00:25:05 +0000 |
commit | 8393134727eb8f366617121d3727d4f15d92851a (patch) | |
tree | dcd595fb1ea962c8f2238d105b4fc40e3e562444 /x11-plugins/matchbox-desktop-image-browser | |
parent | EAPI=2; fix doc install (bug #299823) (diff) | |
download | gentoo-2-8393134727eb8f366617121d3727d4f15d92851a.tar.gz gentoo-2-8393134727eb8f366617121d3727d4f15d92851a.tar.bz2 gentoo-2-8393134727eb8f366617121d3727d4f15d92851a.zip |
Removed the unneeded execution of matchbox-desktop during ./configure, thanks miknix for noticing.
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'x11-plugins/matchbox-desktop-image-browser')
3 files changed, 26 insertions, 5 deletions
diff --git a/x11-plugins/matchbox-desktop-image-browser/ChangeLog b/x11-plugins/matchbox-desktop-image-browser/ChangeLog index 0ba9f776f7fa..926fb6662a34 100644 --- a/x11-plugins/matchbox-desktop-image-browser/ChangeLog +++ b/x11-plugins/matchbox-desktop-image-browser/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/matchbox-desktop-image-browser -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/matchbox-desktop-image-browser/ChangeLog,v 1.4 2009/12/29 19:49:53 miknix Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/matchbox-desktop-image-browser/ChangeLog,v 1.5 2010/01/06 00:25:05 yvasilev Exp $ + + 06 Jan 2010; Yuri Vasilevski <yvasilev@gentoo.org> + matchbox-desktop-image-browser-0.2.ebuild, + +files/matchbox-desktop-image-browser-0.2-noexec-matchbox-desktop.patch: + Removed the unneeded execution of matchbox-desktop during ./configure, + thanks miknix for noticing. 29 Dec 2009; Angelo Arrifano <miknix@gentoo.org> matchbox-desktop-image-browser-0.2.ebuild: diff --git a/x11-plugins/matchbox-desktop-image-browser/files/matchbox-desktop-image-browser-0.2-noexec-matchbox-desktop.patch b/x11-plugins/matchbox-desktop-image-browser/files/matchbox-desktop-image-browser-0.2-noexec-matchbox-desktop.patch new file mode 100644 index 000000000000..b8dd76484cb7 --- /dev/null +++ b/x11-plugins/matchbox-desktop-image-browser/files/matchbox-desktop-image-browser-0.2-noexec-matchbox-desktop.patch @@ -0,0 +1,12 @@ +diff -Naurp mb-desktop-image-browser-0.2.orig/configure.ac mb-desktop-image-browser-0.2/configure.ac +--- mb-desktop-image-browser-0.2.orig/configure.ac 2004-02-06 18:10:21.000000000 +0000 ++++ mb-desktop-image-browser-0.2/configure.ac 2010-01-06 00:09:09.000000000 +0000 +@@ -24,7 +24,7 @@ AC_FUNC_MALLOC + AC_TYPE_SIGNAL + AC_CHECK_FUNCS([strchr strdup]) + +-PKG_CHECK_MODULES(MB, libmb >= 1.1, matchbox-desktop, ++PKG_CHECK_MODULES(MB, libmb >= 1.1, , + AC_MSG_ERROR([*** Matchbox depencies not found***])) + + dnl check for debug build diff --git a/x11-plugins/matchbox-desktop-image-browser/matchbox-desktop-image-browser-0.2.ebuild b/x11-plugins/matchbox-desktop-image-browser/matchbox-desktop-image-browser-0.2.ebuild index cd21866be190..a4d2bbc64840 100644 --- a/x11-plugins/matchbox-desktop-image-browser/matchbox-desktop-image-browser-0.2.ebuild +++ b/x11-plugins/matchbox-desktop-image-browser/matchbox-desktop-image-browser-0.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/matchbox-desktop-image-browser/matchbox-desktop-image-browser-0.2.ebuild,v 1.6 2009/12/29 20:50:54 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/matchbox-desktop-image-browser/matchbox-desktop-image-browser-0.2.ebuild,v 1.7 2010/01/06 00:25:05 yvasilev Exp $ -inherit versionator eutils +inherit versionator eutils autotools MY_PN=${PN/matchbox/mb} MY_P=${MY_PN}-${PV} @@ -26,6 +26,9 @@ src_unpack () { cd "${S}" epatch "${FILESDIR}"/$P-include_fix.patch + epatch "${FILESDIR}"/$P-noexec-matchbox-desktop.patch + + eautoreconf } src_compile () { |