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 35877138330 for ; Thu, 13 Oct 2016 10:01:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D12A9E0CA0; Thu, 13 Oct 2016 10:01:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2B4BE0CA0 for ; Thu, 13 Oct 2016 10:01:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 12941341301 for ; Thu, 13 Oct 2016 10:01:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 706012F7 for ; Thu, 13 Oct 2016 10:01:32 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1476352859.bb078c0d436abcdb5bdae59312d1a07244c0a375.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/fldigi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/fldigi/fldigi-3.23.12.ebuild media-radio/fldigi/fldigi-3.23.14.ebuild X-VCS-Directories: media-radio/fldigi/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: bb078c0d436abcdb5bdae59312d1a07244c0a375 X-VCS-Branch: master Date: Thu, 13 Oct 2016 10:01:32 +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-Archives-Salt: 6fafddde-c43a-4a3b-8011-6e8693d5e9e3 X-Archives-Hash: 3ea2d4caae741142aaaf94da050fcb8f commit: bb078c0d436abcdb5bdae59312d1a07244c0a375 Author: Thomas Beierlein gentoo org> AuthorDate: Thu Oct 13 09:58:53 2016 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Thu Oct 13 10:00:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb078c0d media-radio/fldigi: Fixes bug #595220. Backported from coming 3.23.15alpha Package-Manager: portage-2.3.1 media-radio/fldigi/fldigi-3.23.12.ebuild | 5 +++++ media-radio/fldigi/fldigi-3.23.14.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/media-radio/fldigi/fldigi-3.23.12.ebuild b/media-radio/fldigi/fldigi-3.23.12.ebuild index 0586c0a..bd16b41 100644 --- a/media-radio/fldigi/fldigi-3.23.12.ebuild +++ b/media-radio/fldigi/fldigi-3.23.12.ebuild @@ -29,6 +29,11 @@ DEPEND="${RDEPEND} DOCS=( AUTHORS ChangeLog NEWS README ) +# backported from coming 3.23.15 alpha. Fixes bug #595220 +src_prepare() { + sed -i -e "s/memset(src/memset(\&src/" src/main.cxx +} + src_configure() { econf $(use_with sndfile) \ $(use_with portaudio) \ diff --git a/media-radio/fldigi/fldigi-3.23.14.ebuild b/media-radio/fldigi/fldigi-3.23.14.ebuild index aba4d37..c1ff499 100644 --- a/media-radio/fldigi/fldigi-3.23.14.ebuild +++ b/media-radio/fldigi/fldigi-3.23.14.ebuild @@ -29,6 +29,11 @@ DEPEND="${RDEPEND} DOCS=( AUTHORS ChangeLog NEWS README ) +# backported from coming 3.23.15 alpha. Fixes bug #595220 +src_prepare() { + sed -i -e "s/memset(src/memset(\&src/" src/main.cxx +} + src_configure() { econf $(use_with sndfile) \ $(use_with portaudio) \