commit: 62be9e67719c6dc4fc651edcb2b9486f69e86874 Author: Mykyta Holubakha <hilobakho <AT> gmail <DOT> com> AuthorDate: Sun Nov 19 23:48:44 2017 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Wed Nov 29 23:19:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62be9e67
app-editors/kakoune: update live ebuild drop depend on dev-libs/boost Closes: https://github.com/gentoo/gentoo/pull/6244 app-editors/kakoune/kakoune-9999.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app-editors/kakoune/kakoune-9999.ebuild b/app-editors/kakoune/kakoune-9999.ebuild index bd460c7c574..f083c66b5e3 100644 --- a/app-editors/kakoune/kakoune-9999.ebuild +++ b/app-editors/kakoune/kakoune-9999.ebuild @@ -16,7 +16,6 @@ IUSE="debug static" RDEPEND=" sys-libs/ncurses:0=[unicode] - dev-libs/boost:= " DEPEND=" app-text/asciidoc @@ -24,8 +23,6 @@ DEPEND=" ${RDEPEND} " -PATCHES=( "${FILESDIR}/${PN}-0_pre20170523-makefile.patch" ) - pkg_setup() { if [[ ${MERGE_TYPE} != binary ]]; then if tc-is-gcc && ! version_is_at_least 5.0 $(gcc-version); then @@ -34,9 +31,14 @@ pkg_setup() { fi } +src_prepare() { + default + + sed -i -e '/CXXFLAGS += -O3/d' src/Makefile || \ + die "Failed to patch makefile" +} + src_configure() { - append-cppflags $($(tc-getPKG_CONFIG) --cflags ncursesw) - append-libs $($(tc-getPKG_CONFIG) --libs ncursesw) tc-export CXX export debug=$(usex debug) export static=$(usex static)
