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 941FB138334 for ; Mon, 15 Jul 2019 11:12:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 728D9E0952; Mon, 15 Jul 2019 11:12:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 549BAE0952 for ; Mon, 15 Jul 2019 11:12:26 +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 A22B1346FE1 for ; Mon, 15 Jul 2019 11:12:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 032A5266 for ; Mon, 15 Jul 2019 11:12:22 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1563189134.9b344adb823c331166e60d7b7297834ca71157a9.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sooperlooper/, media-sound/sooperlooper/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/sooperlooper/files/sooperlooper-1.7.3-tinfo.patch media-sound/sooperlooper/sooperlooper-1.7.3-r2.ebuild X-VCS-Directories: media-sound/sooperlooper/ media-sound/sooperlooper/files/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9b344adb823c331166e60d7b7297834ca71157a9 X-VCS-Branch: master Date: Mon, 15 Jul 2019 11:12:22 +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: d2b63e7a-d390-4cf7-96c0-e944312783e1 X-Archives-Hash: e8d9f3901a820b5b02e33aaf38934c06 commit: 9b344adb823c331166e60d7b7297834ca71157a9 Author: Lars Wendler gentoo org> AuthorDate: Mon Jul 15 11:11:53 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jul 15 11:12:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b344adb media-sound/sooperlooper: Fixed build with sys-libs/ncurses[tinfo] Thanks-to: Jeroen Roovers gentoo.org> Closes: https://bugs.gentoo.org/683738 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Lars Wendler gentoo.org> .../files/sooperlooper-1.7.3-tinfo.patch | 22 ++++++++++++++++++++++ .../sooperlooper/sooperlooper-1.7.3-r2.ebuild | 3 ++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/media-sound/sooperlooper/files/sooperlooper-1.7.3-tinfo.patch b/media-sound/sooperlooper/files/sooperlooper-1.7.3-tinfo.patch new file mode 100644 index 00000000000..82694f46383 --- /dev/null +++ b/media-sound/sooperlooper/files/sooperlooper-1.7.3-tinfo.patch @@ -0,0 +1,22 @@ +https://bugs.gentoo.org/683738 + +Thanks-to: Jeroen Roovers + +--- a/configure.ac ++++ b/configure.ac +@@ -214,10 +216,11 @@ + AC_SUBST(LOSC_CFLAGS) + + dnl curses +- AC_CHECK_LIB(ncurses,initscr,have_ncurses=yes,[AC_MSG_WARN([******** you don't have the ncurses library correctly installed])]) +- +- NCURSES_LIBS=-lncurses +- AC_SUBST(NCURSES_LIBS) ++ PKG_CHECK_MODULES([NCURSES], [ncurses], [have_ncurses=yes], ++ AC_CHECK_LIB(ncurses, initscr, have_ncurses=yes, ++ [AC_MSG_WARN([******** you don't have the ncurses library correctly installed])] ++ ) ++ ) + + dnl sigc++ + PKG_CHECK_MODULES(SIGCPP, sigc++-2.0 >= 2.2.10) diff --git a/media-sound/sooperlooper/sooperlooper-1.7.3-r2.ebuild b/media-sound/sooperlooper/sooperlooper-1.7.3-r2.ebuild index 5d2301bfa9d..62c837de9ed 100644 --- a/media-sound/sooperlooper/sooperlooper-1.7.3-r2.ebuild +++ b/media-sound/sooperlooper/sooperlooper-1.7.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -40,6 +40,7 @@ PATCHES=( "${FILESDIR}"/${P}-wx3.0.patch "${FILESDIR}"/${P}-libsigc28.patch "${FILESDIR}"/${P}-clash.patch + "${FILESDIR}"/${P}-tinfo.patch ) src_prepare() {