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 740371382C5 for ; Sat, 3 Apr 2021 21:58:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C2FDE08C8; Sat, 3 Apr 2021 21:58:47 +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 8512CE08C8 for ; Sat, 3 Apr 2021 21:58:47 +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 9281E34072E for ; Sat, 3 Apr 2021 21:58:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B0BC6F4 for ; Sat, 3 Apr 2021 21:58:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617487096.915d4eb6afdd5761320f4daaaed6f1157beafe60.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/cdctl/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/cdctl/cdctl-0.16.ebuild X-VCS-Directories: app-misc/cdctl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 915d4eb6afdd5761320f4daaaed6f1157beafe60 X-VCS-Branch: master Date: Sat, 3 Apr 2021 21:58:43 +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: 90a5dd47-e880-43a2-a8c7-fffdad7941c7 X-Archives-Hash: e87a4c992cc271e9f64e8a6b3be94029 commit: 915d4eb6afdd5761320f4daaaed6f1157beafe60 Author: Matt Smith offtopica uk> AuthorDate: Sat Apr 3 16:47:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 3 21:58:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=915d4eb6 app-misc/cdctl: EAPI 7 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Matt Smith offtopica.uk> Signed-off-by: Sam James gentoo.org> app-misc/cdctl/cdctl-0.16.ebuild | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/app-misc/cdctl/cdctl-0.16.ebuild b/app-misc/cdctl/cdctl-0.16.ebuild index 32444005ab9..e552ac85380 100644 --- a/app-misc/cdctl/cdctl-0.16.ebuild +++ b/app-misc/cdctl/cdctl-0.16.ebuild @@ -1,29 +1,22 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils autotools toolchain-funcs +inherit autotools DESCRIPTION="Utility to control your cd/dvd drive" HOMEPAGE="http://cdctl.sourceforge.net/" SRC_URI="mirror://sourceforge/cdctl/${P}.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="free-noncomm" SLOT="0" KEYWORDS="amd64 ppc ppc64 x86" -IUSE="" - -DEPEND="" -S="${WORKDIR}/${PN}" +PATCHES=( "${FILESDIR}"/${PN}-0.16-Makefile.in.patch ) src_prepare() { - epatch "${FILESDIR}"/${PN}-0.16-Makefile.in.patch - + default eautoreconf } - -src_compile() { - emake CC="$(tc-getCC)" -}