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 DBD561395E2 for ; Wed, 7 Dec 2016 07:50:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3577DE0D5D; Wed, 7 Dec 2016 07:50:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C0DCE0D5D for ; Wed, 7 Dec 2016 07:50:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4C27340E7B for ; Wed, 7 Dec 2016 07:50:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0984E4A9 for ; Wed, 7 Dec 2016 07:50:46 +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: <1481097036.1afc4da94c40f9fe5c1f5d09edc4048ede4e4f3e.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/gpm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/gpm/gpm-1.20.7-r2.ebuild X-VCS-Directories: sys-libs/gpm/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 1afc4da94c40f9fe5c1f5d09edc4048ede4e4f3e X-VCS-Branch: master Date: Wed, 7 Dec 2016 07:50:46 +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: edb755cc-d29c-4e7f-ae99-a2b1133fffde X-Archives-Hash: c04838ba16cd7bd454a90e564f8bf1f3 commit: 1afc4da94c40f9fe5c1f5d09edc4048ede4e4f3e Author: Mike Frysinger gentoo org> AuthorDate: Wed Dec 7 07:50:22 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Dec 7 07:50:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1afc4da9 sys-libs/gpm: disable EMACS/ELISP at all build steps #586880 sys-libs/gpm/gpm-1.20.7-r2.ebuild | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/sys-libs/gpm/gpm-1.20.7-r2.ebuild b/sys-libs/gpm/gpm-1.20.7-r2.ebuild index ebfc8a7..5fe58f8 100644 --- a/sys-libs/gpm/gpm-1.20.7-r2.ebuild +++ b/sys-libs/gpm/gpm-1.20.7-r2.ebuild @@ -61,16 +61,23 @@ multilib_src_configure() { emacs=/bin/false } +_emake() { + emake \ + EMACS=: ELISP="" \ + $(multilib_is_native_abi || echo "PROG= ") \ + "$@" +} + multilib_src_compile() { - emake EMACS=: $(multilib_is_native_abi || echo "PROG= ") + _emake +} + +multilib_src_test() { + _emake check } multilib_src_install() { - emake \ - DESTDIR="${D}" \ - EMACS=: ELISP="" \ - $(multilib_is_native_abi || echo "PROG= ") \ - install + _emake DESTDIR="${D}" install dosym libgpm.so.1 /usr/$(get_libdir)/libgpm.so gen_usr_ldscript -a gpm