From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1005720-garchives=archives.gentoo.org@lists.gentoo.org> 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 1E2D31382C5 for <garchives@archives.gentoo.org>; Sun, 25 Feb 2018 20:21:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72E5CE0823; Sun, 25 Feb 2018 20:21:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4DB15E0823 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Feb 2018 20:21:26 +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 3620A335C38 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Feb 2018 20:21:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 856D31E1 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Feb 2018 20:21:23 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" <jer@gentoo.org> Message-ID: <1519590081.846199f922b0b1c92a3f9808222b7bb9962972b7.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/bzflag/files/, games-action/bzflag/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/bzflag/bzflag-2.4.12.ebuild games-action/bzflag/files/bzflag-2.4.12-tinfo.patch X-VCS-Directories: games-action/bzflag/files/ games-action/bzflag/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 846199f922b0b1c92a3f9808222b7bb9962972b7 X-VCS-Branch: master Date: Sun, 25 Feb 2018 20:21:23 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a70f43f8-7112-4464-8b18-38207efb0381 X-Archives-Hash: 5041e53f4f62048601c56574711b6939 commit: 846199f922b0b1c92a3f9808222b7bb9962972b7 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Sun Feb 25 20:20:32 2018 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Sun Feb 25 20:21:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=846199f9 games-action/bzflag: Fix compiling against sys-libs/ncurses[tinfo] (bug #632022). Package-Manager: Portage-2.3.24, Repoman-2.3.6 games-action/bzflag/bzflag-2.4.12.ebuild | 4 ++-- games-action/bzflag/files/bzflag-2.4.12-tinfo.patch | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/games-action/bzflag/bzflag-2.4.12.ebuild b/games-action/bzflag/bzflag-2.4.12.ebuild index 909cc844079..26da58b1979 100644 --- a/games-action/bzflag/bzflag-2.4.12.ebuild +++ b/games-action/bzflag/bzflag-2.4.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -24,9 +24,9 @@ DEPEND=" virtual/opengl ) upnp? ( net-libs/miniupnpc )" RDEPEND=${DEPEND} - PATCHES=( "${FILESDIR}"/${P}-configure.patch + "${FILESDIR}"/${P}-tinfo.patch ) src_prepare() { diff --git a/games-action/bzflag/files/bzflag-2.4.12-tinfo.patch b/games-action/bzflag/files/bzflag-2.4.12-tinfo.patch new file mode 100644 index 00000000000..aa43980b9b6 --- /dev/null +++ b/games-action/bzflag/files/bzflag-2.4.12-tinfo.patch @@ -0,0 +1,15 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -125,7 +125,11 @@ + BZ_CONFIGURE_STAGE([arguments], [1 of 9]) + + # provide a with-curses option, test for curses +-MP_WITH_CURSES ++PKG_CHECK_MODULES(ncurses, ncurses, ++ [CURSES_LIB="$ncurses_LIBS"] ++ AC_DEFINE(HAVE_NCURSES_H, , [Use the header file ncurses.h]), ++ AC_MSG_ERROR([Could not find ncurses])) ++AC_SUBST(CURSES_LIB) + + # check for SDL option (enabled by default now) + AC_ARG_WITH(SDL, AS_HELP_STRING([--without-SDL | --with-SDL={1,2}],[Do not use Simple DirectMedia Layer or force using a specific version (by default tries 2, then 1, then resorts to native platform code if available]), sdl_version="$withval", sdl_version="detect")