From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1050084-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 9C8ED138334
	for <garchives@archives.gentoo.org>; Wed,  3 Oct 2018 15:07:44 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4A3ECE0A93;
	Wed,  3 Oct 2018 15:07:42 +0000 (UTC)
Received: from smtp.gentoo.org (unknown [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 1B603E0A93
	for <gentoo-commits@lists.gentoo.org>; Wed,  3 Oct 2018 15:07:39 +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 EC93A335D13
	for <gentoo-commits@lists.gentoo.org>; Wed,  3 Oct 2018 15:07:15 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id DC456397
	for <gentoo-commits@lists.gentoo.org>; Wed,  3 Oct 2018 15:07:13 +0000 (UTC)
From: "Andreas Sturmlechner" <asturm@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, "Andreas Sturmlechner" <asturm@gentoo.org>
Message-ID: <1538579210.9802ef6befad2a64360cc9ee86c6dd7ef8f2a46b.asturm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/raptor/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/raptor/raptor-2.0.15-r1.ebuild
X-VCS-Directories: media-libs/raptor/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: 9802ef6befad2a64360cc9ee86c6dd7ef8f2a46b
X-VCS-Branch: master
Date: Wed,  3 Oct 2018 15:07:13 +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: 11c2c763-5bba-48bd-be01-9a11b42eee96
X-Archives-Hash: bdec070cb5d20994305f27652d9e39da

commit:     9802ef6befad2a64360cc9ee86c6dd7ef8f2a46b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  3 15:06:50 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Oct  3 15:06:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9802ef6b

media-libs/raptor: Better configure

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 media-libs/raptor/raptor-2.0.15-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/media-libs/raptor/raptor-2.0.15-r1.ebuild b/media-libs/raptor/raptor-2.0.15-r1.ebuild
index 55dca5e226b..b9c2939587e 100644
--- a/media-libs/raptor/raptor-2.0.15-r1.ebuild
+++ b/media-libs/raptor/raptor-2.0.15-r1.ebuild
@@ -49,14 +49,13 @@ src_configure() {
 	# FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!
 
 	local myeconfargs=(
-		--with-www=xml
 		--with-html-dir="${EPREFIX}"/usr/share/gtk-doc/html
+		$(usex curl --with-www=curl --with-www=xml)
 		$(use_enable debug)
 		$(use_with json yajl)
 		$(use_enable static-libs static)
-		$(usex unicode "--with-icu-config="${EPREFIX}"/usr/bin/icu-config" '')
+		$(usex unicode --with-icu-config="${EPREFIX}"/usr/bin/icu-config '')
 	)
-	use curl && myeconfargs+=( --with-www=curl )
 
 	econf "${myeconfargs[@]}"
 }