commit: 61c8874a884f6bcfaa730e5f98b0f90d4dc49c44 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org> AuthorDate: Mon Aug 24 16:36:08 2015 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Mon Aug 24 16:38:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c8874a
kde-misc/semantik: explicitly export src_prepare. The removal of the base.eclass inherit from waf-utils.eclass resulted in src_prepare no longer being exported. This caused a sandbox violation due to a patch no longer being applied. Gentoo-bug: 558514 Package-Manager: portage-2.2.20.1 kde-misc/semantik/semantik-0.9.4-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kde-misc/semantik/semantik-0.9.4-r1.ebuild b/kde-misc/semantik/semantik-0.9.4-r1.ebuild index 56cb803..eca7678 100644 --- a/kde-misc/semantik/semantik-0.9.4-r1.ebuild +++ b/kde-misc/semantik/semantik-0.9.4-r1.ebuild @@ -8,7 +8,7 @@ CMAKE_REQUIRED="never" NO_WAF_LIBDIR="true" PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="xml" -inherit python-single-r1 kde4-base waf-utils +inherit eutils python-single-r1 kde4-base waf-utils DESCRIPTION="Mindmapping-like tool for document generation" HOMEPAGE="http://freehackers.org/~tnagy/semantik.html https://code.google.com/p/semantik/" @@ -31,9 +31,12 @@ DEPEND=" RDEPEND="${DEPEND}" DOCS=( ChangeLog README TODO ) -PATCHES=( "${FILESDIR}"/${PN}-0.9.0-wscript_ldconfig.patch ) pkg_setup() { python-single-r1_pkg_setup kde4-base_pkg_setup } + +src_prepare() { + epatch "${FILESDIR}/${PN}-0.9.0-wscript_ldconfig.patch" +}
