From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1E8C913888F for ; Wed, 21 Oct 2015 03:42:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CE74E080B; Wed, 21 Oct 2015 03:42:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1662E080D for ; Wed, 21 Oct 2015 03:41:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B19333F9D2 for ; Wed, 21 Oct 2015 03:41:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A05D14A1 for ; Wed, 21 Oct 2015 03:41:53 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1445398908.422cf597b84d3553eac42dd8b1faa8257af5941f.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/efl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/efl/efl-1.15.2.ebuild X-VCS-Directories: dev-libs/efl/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 422cf597b84d3553eac42dd8b1faa8257af5941f X-VCS-Branch: master Date: Wed, 21 Oct 2015 03:41:53 +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: 50bbc040-993b-40c3-a540-bee3d3b5a319 X-Archives-Hash: 86f16a9736f3134e8ef184076021ca5e commit: 422cf597b84d3553eac42dd8b1faa8257af5941f Author: Mike Frysinger gentoo org> AuthorDate: Wed Oct 21 03:39:17 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Oct 21 03:41:48 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422cf597 dev-libs/efl: clean up configure script a bit to speed up the build dev-libs/efl/efl-1.15.2.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dev-libs/efl/efl-1.15.2.ebuild b/dev-libs/efl/efl-1.15.2.ebuild index fcf0d81..da07704 100644 --- a/dev-libs/efl/efl-1.15.2.ebuild +++ b/dev-libs/efl/efl-1.15.2.ebuild @@ -163,6 +163,17 @@ DEPEND=" S=${WORKDIR}/${MY_P} +src_prepare() { + enlightenment_src_prepare + + # Remove stupid sleep command. + # Also back out gnu make hack that causes regen of Makefiles. + sed -i \ + -e '/sleep 10/d' \ + -e '/^#### Work around bug in automake check macro$/,/^#### Info$/d' \ + configure || die +} + src_configure() { if use ssl && use gnutls ; then einfo "You enabled both USE=ssl and USE=gnutls, but only one can be used;"