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 4ECE51382C5 for ; Sun, 24 Jan 2021 00:44:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86885E0858; Sun, 24 Jan 2021 00:44:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 6CF62E0858 for ; Sun, 24 Jan 2021 00:44:18 +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 80F7B340FAF for ; Sun, 24 Jan 2021 00:44:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F4513A6 for ; Sun, 24 Jan 2021 00:44:16 +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: <1611449045.0273ea623d9c3ba16570a3fbd185ed8fffd3c0fd.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/recmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/recmpeg/recmpeg-1.0.5.ebuild X-VCS-Directories: media-video/recmpeg/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0273ea623d9c3ba16570a3fbd185ed8fffd3c0fd X-VCS-Branch: master Date: Sun, 24 Jan 2021 00:44:16 +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: c532e7ed-ff72-4d96-b928-e1fd48b40459 X-Archives-Hash: c2e46bcc365ebfeec0e739750988f069 commit: 0273ea623d9c3ba16570a3fbd185ed8fffd3c0fd Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 24 00:43:49 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 24 00:44:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0273ea62 media-video/recmpeg: EAPI-7 bump, cleanup unused IUSE, DOCS Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-video/recmpeg/recmpeg-1.0.5.ebuild | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/media-video/recmpeg/recmpeg-1.0.5.ebuild b/media-video/recmpeg/recmpeg-1.0.5.ebuild index 1b02e5f6781..a1911052f6b 100644 --- a/media-video/recmpeg/recmpeg-1.0.5.ebuild +++ b/media-video/recmpeg/recmpeg-1.0.5.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="Simple libfame-based video encoder, compresses raw video sequences to MPEG video" HOMEPAGE="http://fame.sourceforge.net/" @@ -11,15 +11,5 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~ppc x86" -IUSE="cpu_flags_x86_mmx cpu_flags_x86_sse" - RDEPEND=">=media-libs/libfame-0.9.0" DEPEND="${DEPEND}" - -DOCS=( CHANGES README ) - -src_configure() { - econf \ - $(use cpu_flags_x86_mmx && echo "--enable-mmx") \ - $(use cpu_flags_x86_sse && echo "--enable-sse") -}