commit: 915d4eb6afdd5761320f4daaaed6f1157beafe60 Author: Matt Smith <matt <AT> offtopica <DOT> uk> AuthorDate: Sat Apr 3 16:47:12 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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 <matt <AT> offtopica.uk> Signed-off-by: Sam James <sam <AT> 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)" -}
