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 0FD601382C5 for ; Mon, 14 May 2018 06:18:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3831E085E; Mon, 14 May 2018 06:18:02 +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 BA188E085E for ; Mon, 14 May 2018 06:18:01 +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 0FF0E335C5A for ; Mon, 14 May 2018 06:18:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2D3940 for ; Mon, 14 May 2018 06:17:57 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1526278658.c436198877f735cdd1ce86e0e6322cbab499b9f5.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsdl2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild X-VCS-Directories: media-libs/libsdl2/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: c436198877f735cdd1ce86e0e6322cbab499b9f5 X-VCS-Branch: master Date: Mon, 14 May 2018 06:17:57 +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: 2ed29eae-e70d-4f04-8307-a59ddff8610b X-Archives-Hash: 73a42613097fac662db1eb482cfead5f commit: c436198877f735cdd1ce86e0e6322cbab499b9f5 Author: Tupone Alfredo gentoo org> AuthorDate: Mon May 14 06:17:38 2018 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon May 14 06:17:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4361988 media-libs/libsdl2: Fix include path for wrapped header Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild b/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild index e94f3842e77..146a715fd97 100644 --- a/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild +++ b/media-libs/libsdl2/libsdl2-2.0.8-r2.ebuild @@ -74,6 +74,9 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default sed -i -e 's/configure.in/configure.ac/' Makefile.in || die + sed -i \ + -e 's:SDL_platform:SDL2/SDL_platform:' \ + include/SDL_config.h.in || die mv configure.{in,ac} || die AT_M4DIR="/usr/share/aclocal acinclude" eautoreconf }