From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 98AEE1388BF for ; Wed, 6 Jan 2016 16:40:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DDF6E086F; Wed, 6 Jan 2016 16:40:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96248E086F for ; Wed, 6 Jan 2016 16:40:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0823340A5D for ; Wed, 6 Jan 2016 16:40:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F6C6CFF for ; Wed, 6 Jan 2016 16:40:42 +0000 (UTC) From: "Michael Sterrett" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Sterrett" Message-ID: <1452098430.0561df10cd59698cb93018c085fd91443f6d3f84.mr_bones_@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl2-mixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild X-VCS-Directories: media-libs/sdl2-mixer/ X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett X-VCS-Revision: 0561df10cd59698cb93018c085fd91443f6d3f84 X-VCS-Branch: master Date: Wed, 6 Jan 2016 16:40:42 +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: f8f598f6-c30d-4ce4-b89a-35e5455b4bac X-Archives-Hash: 0a22f6de8eaa75972529610bb634da09 commit: 0561df10cd59698cb93018c085fd91443f6d3f84 Author: Michael Sterrett gentoo org> AuthorDate: Wed Jan 6 16:40:10 2016 +0000 Commit: Michael Sterrett gentoo org> CommitDate: Wed Jan 6 16:40:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0561df10 media-libs/sdl2-mixer: fix building with newer autotools (bug #571064) Package-Manager: portage-2.2.26 media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild b/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild index 4814ca8..42d3ee2 100644 --- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild +++ b/media-libs/sdl2-mixer/sdl2-mixer-2.0.1.ebuild @@ -54,6 +54,8 @@ S=${WORKDIR}/${MY_P} src_prepare() { # upstream patch to fix building with both smpeg and mad mp3 support (bug #570804) epatch "${FILESDIR}"/${P}-mp3.patch + sed -i -e 's/configure.in/configure.ac/' Makefile.in || die + mv configure.{in,ac} || die eautoreconf }