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 364C9138334 for ; Tue, 28 May 2019 17:23:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00C69E087F; Tue, 28 May 2019 17:23:02 +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 D6131E087F for ; Tue, 28 May 2019 17:23:01 +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 6BC693451E3 for ; Tue, 28 May 2019 17:23:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0E4E5FF for ; Tue, 28 May 2019 17:22:57 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1559064156.c4bd0dcc8ff5fc04a68898eba57c15ef66d512b8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mplay/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mplay/mplay-0.80.ebuild X-VCS-Directories: media-sound/mplay/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c4bd0dcc8ff5fc04a68898eba57c15ef66d512b8 X-VCS-Branch: master Date: Tue, 28 May 2019 17:22:57 +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: 8b733f46-e12f-44c9-878d-6ae738c9d953 X-Archives-Hash: 3cd563d06b5c4c62e1de23f81757d51e commit: c4bd0dcc8ff5fc04a68898eba57c15ef66d512b8 Author: David Seifert gentoo org> AuthorDate: Tue May 28 17:22:36 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Tue May 28 17:22:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4bd0dcc media-sound/mplay: Port to EAPI 7 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: David Seifert gentoo.org> media-sound/mplay/mplay-0.80.ebuild | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/media-sound/mplay/mplay-0.80.ebuild b/media-sound/mplay/mplay-0.80.ebuild index 3028ace5c92..a3cd7a2a79c 100644 --- a/media-sound/mplay/mplay-0.80.ebuild +++ b/media-sound/mplay/mplay-0.80.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="A Curses front-end for mplayer" HOMEPAGE="http://mplay.sourceforge.net" @@ -10,7 +10,6 @@ SRC_URI="mirror://sourceforge/mplay/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" -IUSE="" RDEPEND="dev-lang/perl >=dev-perl/MP3-Info-1.11 @@ -21,19 +20,18 @@ RDEPEND="dev-lang/perl dev-perl/Video-Info media-video/mplayer" -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:/usr/local:/usr:g' mplay || die "Unable fix the /usr/local path issues." +src_prepare() { + default + sed -i 's:/usr/local:/usr:g' mplay || die "Unable fix the /usr/local path issues" } src_install() { - dobin mplay || die - dodoc README || die + dobin mplay + einstalldocs - cd "${S}"/help + cd help || die insinto /usr/share/mplay - doins help_en help_de mplayconf || die + doins help_en help_de mplayconf doman mplay.1 }