From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 19A63139082 for ; Wed, 29 Nov 2017 23:19:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77A8FE0D5E; Wed, 29 Nov 2017 23:19:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 568DAE0D49 for ; Wed, 29 Nov 2017 23:19:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28B3234105A for ; Wed, 29 Nov 2017 23:19:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57D85AC25 for ; Wed, 29 Nov 2017 23:19:54 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1511997560.62be9e67719c6dc4fc651edcb2b9486f69e86874.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/kakoune/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/kakoune/kakoune-9999.ebuild X-VCS-Directories: app-editors/kakoune/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 62be9e67719c6dc4fc651edcb2b9486f69e86874 X-VCS-Branch: master Date: Wed, 29 Nov 2017 23:19:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e1dd0e22-2b45-460b-9b31-3bb502b146bf X-Archives-Hash: e6bf92ad6eb4d21381268a6118658327 commit: 62be9e67719c6dc4fc651edcb2b9486f69e86874 Author: Mykyta Holubakha gmail com> AuthorDate: Sun Nov 19 23:48:44 2017 +0000 Commit: Andreas Sturmlechner gentoo 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)