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 729F2138331 for ; Tue, 13 Sep 2016 08:46:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C215E0A84; Tue, 13 Sep 2016 08:46:22 +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 1CA67E0A84 for ; Tue, 13 Sep 2016 08:46:22 +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 E30C234069F for ; Tue, 13 Sep 2016 08:46:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B201246F for ; Tue, 13 Sep 2016 08:46:19 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1473756340.04ca133096356768248a6ab45183e5b074be2652.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pms/pms-0.42-r2.ebuild X-VCS-Directories: media-sound/pms/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 04ca133096356768248a6ab45183e5b074be2652 X-VCS-Branch: master Date: Tue, 13 Sep 2016 08:46:19 +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: 79364bd4-3e86-4e4f-8987-3f8cdbf96557 X-Archives-Hash: 3f2dd342dd6f5f2db0aadde1affa8430 commit: 04ca133096356768248a6ab45183e5b074be2652 Author: Mykyta Holubakha gmail com> AuthorDate: Thu Sep 8 19:24:21 2016 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue Sep 13 08:45:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ca1330 media-sound/pms: fix numerous QA issues in 0.42-r2 specify correct license fix ncurses slot depend add missing virtual/libintl depend and sys-devel/gettext rdepend use tc-getPKG_CONFIG from toolchain funcs Signed-off-by: Marek Szuba gentoo.org> media-sound/pms/pms-0.42-r2.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/media-sound/pms/pms-0.42-r2.ebuild b/media-sound/pms/pms-0.42-r2.ebuild index d1f9729..13e7ff0 100644 --- a/media-sound/pms/pms-0.42-r2.ebuild +++ b/media-sound/pms/pms-0.42-r2.ebuild @@ -4,24 +4,26 @@ EAPI=6 -inherit eutils autotools flag-o-matic +inherit autotools eutils flag-o-matic toolchain-funcs DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++" HOMEPAGE="https://ambientsound.github.io/pms/" SRC_URI="https://github.com/ambientsound/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-3" +LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="regex" RDEPEND=" - sys-libs/ncurses:= + sys-libs/ncurses:0= dev-libs/glib:2 + virtual/libintl regex? ( dev-libs/boost:= ) " DEPEND=" virtual/pkgconfig + sys-devel/gettext ${RDEPEND} " @@ -44,8 +46,8 @@ src_prepare() { src_configure() { # fixes build with ncurses[tinfo], bug #526530 - append-cflags $(pkg-config --cflags ncursesw) - append-libs $(pkg-config --libs ncursesw) + append-cflags $($(tc-getPKG_CONFIG) --cflags ncursesw) + append-libs $($(tc-getPKG_CONFIG) --libs ncursesw) econf \ $(use_enable regex)