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 BAA3F138335 for ; Wed, 16 Oct 2019 11:40:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEB38E094A; Wed, 16 Oct 2019 11:40:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A6340E094A for ; Wed, 16 Oct 2019 11:40:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2820434BDB8 for ; Wed, 16 Oct 2019 11:40:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4EC188B for ; Wed, 16 Oct 2019 11:40:12 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1571225982.93455878493fb8533890f69636bef2e20c40c680.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/flake/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/flake/flake-0.11.ebuild X-VCS-Directories: media-sound/flake/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 93455878493fb8533890f69636bef2e20c40c680 X-VCS-Branch: master Date: Wed, 16 Oct 2019 11:40:12 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9454d242-1433-4a28-948a-b13e3d85362e X-Archives-Hash: 3299c746b519b7782982c3c56903730e commit: 93455878493fb8533890f69636bef2e20c40c680 Author: David Seifert gentoo org> AuthorDate: Wed Oct 16 11:39:42 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Oct 16 11:39:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93455878 media-sound/flake: Port to EAPI 7 Bug: https://bugs.gentoo.org/697274 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert gentoo.org> media-sound/flake/flake-0.11.ebuild | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/media-sound/flake/flake-0.11.ebuild b/media-sound/flake/flake-0.11.ebuild index 5f1f3377e8d..24f2e7b6ee1 100644 --- a/media-sound/flake/flake-0.11.ebuild +++ b/media-sound/flake/flake-0.11.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 inherit toolchain-funcs @@ -12,22 +12,24 @@ SRC_URI="mirror://sourceforge/flake-enc/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 x86" -IUSE="debug" -src_compile() { - local myconf - - if ! use debug; then - myconf="${myconf} --disable-debug" - fi - - ./configure --cc="$(tc-getCC)" --prefix="${D}"/usr \ - --disable-opts --disable-strip ${myconf} || die "configure failed." +src_configure() { + # NIH configure script + ./configure \ + --cc="$(tc-getCC)" \ + --prefix="${D}"/usr \ + --disable-opts \ + --disable-debug \ + --disable-strip || die "configure failed" +} - emake -j1 || die "emake failed." +src_compile() { + emake -j1 } src_install() { - emake install || die "emake install failed." + dobin flake/flake + doheader libflake/flake.h + dolib.a libflake/libflake.a dodoc Changelog README }