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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CA384158015 for ; Sun, 24 Dec 2023 23:07:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9683C2BC051; Sun, 24 Dec 2023 23:07:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D27B2BC04F for ; Sun, 24 Dec 2023 23:07:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0927A343005 for ; Sun, 24 Dec 2023 23:07:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9DBA14C5 for ; Sun, 24 Dec 2023 23:07:04 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1703459123.a3adba432d3c5d994747c7c5d2eb3498c9b2308d.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/recordmydesktop/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/recordmydesktop/recordmydesktop-0.3.8.1-r6.ebuild X-VCS-Directories: media-video/recordmydesktop/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: a3adba432d3c5d994747c7c5d2eb3498c9b2308d X-VCS-Branch: master Date: Sun, 24 Dec 2023 23:07:04 +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: cf601e27-d574-4cf3-955f-66c19d8ba5d2 X-Archives-Hash: 5f20a43816f1a27bd3f7067701805331 commit: a3adba432d3c5d994747c7c5d2eb3498c9b2308d Author: Michael Mair-Keimberger levelnine at> AuthorDate: Fri Dec 22 16:57:50 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Dec 24 23:05:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3adba43 media-video/recordmydesktop: EAPI8, fix LICENSE, use https Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34423 Signed-off-by: Conrad Kostecki gentoo.org> media-video/recordmydesktop/recordmydesktop-0.3.8.1-r6.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/media-video/recordmydesktop/recordmydesktop-0.3.8.1-r6.ebuild b/media-video/recordmydesktop/recordmydesktop-0.3.8.1-r6.ebuild index 940e02981cd0..63486710e2ec 100644 --- a/media-video/recordmydesktop/recordmydesktop-0.3.8.1-r6.ebuild +++ b/media-video/recordmydesktop/recordmydesktop-0.3.8.1-r6.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools -DESCRIPTION="A desktop session recorder producing Ogg video/audio files" -HOMEPAGE="http://recordmydesktop.sourceforge.net/" +DESCRIPTION="Desktop session recorder producing Ogg video/audio files" +HOMEPAGE="https://recordmydesktop.sourceforge.net/" SRC_URI="mirror://sourceforge/recordmydesktop/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ppc ppc64 x86" IUSE="alsa jack" @@ -44,7 +44,6 @@ src_prepare() { src_configure() { econf \ - --enable-dependency-tracking \ $(use_enable !alsa oss) \ $(use_enable jack) }