From: Mykyta Holubakha Date: Sun, 19 Nov 2017 23:48:44 +0000 (+0200) Subject: app-editors/kakoune: update live ebuild X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=62be9e67719c6dc4fc651edcb2b9486f69e86874;p=gentoo.git app-editors/kakoune: update live ebuild drop depend on dev-libs/boost Closes: https://github.com/gentoo/gentoo/pull/6244 --- diff --git a/app-editors/kakoune/kakoune-9999.ebuild b/app-editors/kakoune/kakoune-9999.ebuild index bd460c7c5746..f083c66b5e3e 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)