Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/raptor/
Date: Wed, 03 Oct 2018 15:07:44
Message-Id: 1538579210.9802ef6befad2a64360cc9ee86c6dd7ef8f2a46b.asturm@gentoo
1 commit: 9802ef6befad2a64360cc9ee86c6dd7ef8f2a46b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 3 15:06:50 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 3 15:06:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9802ef6b
7
8 media-libs/raptor: Better configure
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 media-libs/raptor/raptor-2.0.15-r1.ebuild | 5 ++---
14 1 file changed, 2 insertions(+), 3 deletions(-)
15
16 diff --git a/media-libs/raptor/raptor-2.0.15-r1.ebuild b/media-libs/raptor/raptor-2.0.15-r1.ebuild
17 index 55dca5e226b..b9c2939587e 100644
18 --- a/media-libs/raptor/raptor-2.0.15-r1.ebuild
19 +++ b/media-libs/raptor/raptor-2.0.15-r1.ebuild
20 @@ -49,14 +49,13 @@ src_configure() {
21 # FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!
22
23 local myeconfargs=(
24 - --with-www=xml
25 --with-html-dir="${EPREFIX}"/usr/share/gtk-doc/html
26 + $(usex curl --with-www=curl --with-www=xml)
27 $(use_enable debug)
28 $(use_with json yajl)
29 $(use_enable static-libs static)
30 - $(usex unicode "--with-icu-config="${EPREFIX}"/usr/bin/icu-config" '')
31 + $(usex unicode --with-icu-config="${EPREFIX}"/usr/bin/icu-config '')
32 )
33 - use curl && myeconfargs+=( --with-www=curl )
34
35 econf "${myeconfargs[@]}"
36 }