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 BC901138350 for ; Fri, 17 Jan 2020 03:31:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D92B2E0814; Fri, 17 Jan 2020 03:31:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 03C03E0814 for ; Fri, 17 Jan 2020 03:31:03 +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 59F9F34E162 for ; Fri, 17 Jan 2020 03:31:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A282336 for ; Fri, 17 Jan 2020 03:30:58 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1579231836.bc79b90ef79e4bcc95f17263f7eccbb714a05eec.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/din/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/din/din-43.0.1.ebuild X-VCS-Directories: media-sound/din/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: bc79b90ef79e4bcc95f17263f7eccbb714a05eec X-VCS-Branch: master Date: Fri, 17 Jan 2020 03:30:58 +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: 1c11577a-c510-451e-a328-aa9deb316e71 X-Archives-Hash: 028a6a447d120aaea863f64058406cc9 commit: bc79b90ef79e4bcc95f17263f7eccbb714a05eec Author: Tim Harder gentoo org> AuthorDate: Fri Jan 17 03:29:06 2020 +0000 Commit: Tim Harder gentoo org> CommitDate: Fri Jan 17 03:30:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc79b90e media-sound/din: use edos2unix from eutils instead of dos2unix Signed-off-by: Tim Harder gentoo.org> media-sound/din/din-43.0.1.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/media-sound/din/din-43.0.1.ebuild b/media-sound/din/din-43.0.1.ebuild index 1dda28bdfe0..b8471d76fd3 100644 --- a/media-sound/din/din-43.0.1.ebuild +++ b/media-sound/din/din-43.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools xdg +inherit autotools eutils xdg DESCRIPTION="a software musical instrument and audio synthesizer" HOMEPAGE="http://dinisnoise.org/" @@ -14,21 +14,21 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+alsa jack" -BDEPEND=" - app-text/dos2unix - virtual/pkgconfig -" -CDEPEND="dev-lang/tcl:0= +RDEPEND=" + dev-lang/tcl:0= media-libs/libsdl:= virtual/opengl alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) " -RDEPEND="${CDEPEND}" DEPEND=" ${RDEPEND} dev-libs/boost " +BDEPEND=" + virtual/pkgconfig +" + REQUIRED_USE="|| ( alsa jack )" PATCHES=( @@ -39,7 +39,7 @@ PATCHES=( src_prepare() { default - dos2unix pixmaps/${PN}.desktop || die "Failed to fix desktop file" + edos2unix pixmaps/${PN}.desktop use jack && (sed -i "s/-lasound/-ljack/g" src/Makefile.am || die "Failed to fix jack linking")