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 598DF138350 for ; Sun, 12 Jan 2020 18:38:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0B44E085E; Sun, 12 Jan 2020 18:38:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 951BFE085E for ; Sun, 12 Jan 2020 18:38:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6CED234DFD1 for ; Sun, 12 Jan 2020 18:38:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 961F79F for ; Sun, 12 Jan 2020 18:38:27 +0000 (UTC) From: "Jörg Bornkessel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jörg Bornkessel" Message-ID: <1578854286.9ba3fdf80e4136ed9729c4023df79a06c9a5b279.hd_brummy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-mp3ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-mp3ng/vdr-mp3ng-0.0.1_pre5-r2.ebuild X-VCS-Directories: media-plugins/vdr-mp3ng/ X-VCS-Committer: hd_brummy X-VCS-Committer-Name: Jörg Bornkessel X-VCS-Revision: 9ba3fdf80e4136ed9729c4023df79a06c9a5b279 X-VCS-Branch: master Date: Sun, 12 Jan 2020 18:38:27 +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: 000e0951-7a86-4da8-bb4a-90a04012eeb6 X-Archives-Hash: dff4e72ad4763de4b34f6158b7f818c4 commit: 9ba3fdf80e4136ed9729c4023df79a06c9a5b279 Author: Joerg Bornkessel gentoo org> AuthorDate: Sun Jan 12 18:16:43 2020 +0000 Commit: Jörg Bornkessel gentoo org> CommitDate: Sun Jan 12 18:38:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba3fdf8 media-plugins/vdr-mp3ng: missing die's added Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Joerg Bornkessel gentoo.org> media-plugins/vdr-mp3ng/vdr-mp3ng-0.0.1_pre5-r2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/media-plugins/vdr-mp3ng/vdr-mp3ng-0.0.1_pre5-r2.ebuild b/media-plugins/vdr-mp3ng/vdr-mp3ng-0.0.1_pre5-r2.ebuild index c64dcd95e6b..e3887df119e 100644 --- a/media-plugins/vdr-mp3ng/vdr-mp3ng-0.0.1_pre5-r2.ebuild +++ b/media-plugins/vdr-mp3ng/vdr-mp3ng-0.0.1_pre5-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -43,16 +43,16 @@ src_prepare() { eapply "${FILESDIR}/${PN}-0.0.1_pre4-vdr-1.5.1.diff" eapply "${FILESDIR}/${PN}-0.0.1_pre4-glibc-2.10.patch" - use !vorbis && sed -i "s:#WITHOUT_LIBVORBISFILE:WITHOUT_LIBVORBISFILE:" Makefile - use oss && sed -i "s:#WITH_OSS_OUTPUT:WITH_OSS_OUTPUT:" Makefile + use !vorbis && sed -i "s:#WITHOUT_LIBVORBISFILE:WITHOUT_LIBVORBISFILE:" Makefile || die + use oss && sed -i "s:#WITH_OSS_OUTPUT:WITH_OSS_OUTPUT:" Makefile || die has_version ">=media-video/vdr-1.3.37" && eapply "${FILESDIR}/${PN}-0.0.1_pre4-1.3.37.diff" has_version ">=media-gfx/imagemagick-6.4" && eapply "${FILESDIR}/imagemagick-6.4.x.diff" - sed -i mp3ng.c -e "s:RegisterI18n:// RegisterI18n:" + sed -i mp3ng.c -e "s:RegisterI18n:// RegisterI18n:" || die if has_version ">=media-video/vdr-2.1.2"; then - sed -e "s#VideoDirectory#cVideoDirectory::Name\(\)#" -i decoder.c + sed -e "s#VideoDirectory#cVideoDirectory::Name\(\)#" -i decoder.c || die fi }