commit:     fbbff932081d7f010281bb7b385600713058e335
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  3 21:42:07 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 21:42:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbbff932

app-cdr/plextor-tool: port to EAPI 7

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../files/plextor-tool-0.5.0-build.patch            |  4 ++--
 app-cdr/plextor-tool/plextor-tool-0.5.0.ebuild      | 21 +++++++++++++++------
 2 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/app-cdr/plextor-tool/files/plextor-tool-0.5.0-build.patch 
b/app-cdr/plextor-tool/files/plextor-tool-0.5.0-build.patch
index d2a181f14fe..f01aa00d920 100644
--- a/app-cdr/plextor-tool/files/plextor-tool-0.5.0-build.patch
+++ b/app-cdr/plextor-tool/files/plextor-tool-0.5.0-build.patch
@@ -1,5 +1,5 @@
---- Makefile
-+++ Makefile
+--- a/Makefile
++++ b/Makefile
 @@ -2,17 +2,17 @@
  #               Copyright (c) 1999-2002 Georg Huettenegger
  #

diff --git a/app-cdr/plextor-tool/plextor-tool-0.5.0.ebuild 
b/app-cdr/plextor-tool/plextor-tool-0.5.0.ebuild
index 39a125aaf85..0822d71769e 100644
--- a/app-cdr/plextor-tool/plextor-tool-0.5.0.ebuild
+++ b/app-cdr/plextor-tool/plextor-tool-0.5.0.ebuild
@@ -1,34 +1,43 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils toolchain-funcs
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="Tool to change the parameters of a Plextor CD-ROM drive"
 HOMEPAGE="http://plextor-tool.sourceforge.net/";
 SRC_URI="mirror://sourceforge/plextor-tool/${P}.src.tar.bz2"
+S="${WORKDIR}"/${PN}/src
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="static"
 
-S=${WORKDIR}/${PN}/src
+PATCHES=(
+       "${FILESDIR}"/${P}-build.patch
+)
 
 src_prepare() {
-       epatch "${FILESDIR}"/${P}-build.patch
+       default
+
        gunzip plextor-tool.8.gz || die
 }
 
 src_compile() {
        local targets="plextor-tool"
+
        use static && targets="${targets} pt-static"
-       echo ${targets} > my-make-targets
+
+       echo ${targets} > my-make-targets || die
+
        emake CC="$(tc-getCC)" ${targets}
 }
 
 src_install() {
        local targets=$(<my-make-targets)
+
        dodoc ../doc/{NEWS,README} TODO
        dobin ${targets}
        doman plextor-tool.8

Reply via email to