From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1114508-garchives=archives.gentoo.org@lists.gentoo.org> 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 EB88E138334 for <garchives@archives.gentoo.org>; Fri, 4 Oct 2019 18:50:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42704E0848; Fri, 4 Oct 2019 18:50:23 +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 26238E0848 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Oct 2019 18:50:23 +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 F190734B912 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Oct 2019 18:50:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1EE0744 for <gentoo-commits@lists.gentoo.org>; Fri, 4 Oct 2019 18:50:14 +0000 (UTC) From: "Andreas K. Hüttel" <dilfridge@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" <dilfridge@gentoo.org> Message-ID: <1570215010.636b4c8d5d48de62d4df95b3558811a53064ef77.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/acidrip/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/acidrip/acidrip-0.14-r4.ebuild X-VCS-Directories: media-video/acidrip/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 636b4c8d5d48de62d4df95b3558811a53064ef77 X-VCS-Branch: master Date: Fri, 4 Oct 2019 18:50:14 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b945b21f-6b39-40dc-b54e-e46edbf7a207 X-Archives-Hash: bc6f2451ab25553cd7e4dc12f322c0ce commit: 636b4c8d5d48de62d4df95b3558811a53064ef77 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Fri Oct 4 18:50:04 2019 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Fri Oct 4 18:50:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=636b4c8d media-video/acidrip: move from perl-app to perl-module.eclass Package-Manager: Portage-2.3.70, Repoman-2.3.17 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> media-video/acidrip/acidrip-0.14-r4.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-video/acidrip/acidrip-0.14-r4.ebuild b/media-video/acidrip/acidrip-0.14-r4.ebuild index 8a0141cdf49..990424cacaf 100644 --- a/media-video/acidrip/acidrip-0.14-r4.ebuild +++ b/media-video/acidrip/acidrip-0.14-r4.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -inherit perl-app +inherit perl-module DESCRIPTION="A gtk-perl mplayer/mencoder frontend for ripping DVDs" HOMEPAGE="https://sourceforge.net/projects/acidrip/" @@ -13,8 +13,7 @@ SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="encode" -RDEPEND="dev-lang/perl:= - dev-perl/Gtk2 +RDEPEND="dev-perl/Gtk2 media-video/lsdvd media-video/mplayer[encode] encode? ( >=media-sound/lame-3.92 )" @@ -23,4 +22,5 @@ DEPEND="${RDEPEND}" src_prepare() { epatch "${FILESDIR}"/${PN}-mplayer.patch #168012 epatch "${FILESDIR}/${P}-makefile.patch" #299173 + perl-module_src_prepare }