From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1110994-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 C17E3138239 for <garchives@archives.gentoo.org>; Sat, 14 Sep 2019 14:59:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17700E089B; Sat, 14 Sep 2019 14:59:39 +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 F14E6E089B for <gentoo-commits@lists.gentoo.org>; Sat, 14 Sep 2019 14:59:38 +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 D54E234B195 for <gentoo-commits@lists.gentoo.org>; Sat, 14 Sep 2019 14:59:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 043117ED for <gentoo-commits@lists.gentoo.org>; Sat, 14 Sep 2019 14:59:34 +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: <1568472746.ca4eb0acc50c0bf41f1c5526b7b515df34e41258.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/graphviz/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/graphviz/graphviz-2.42.1.ebuild X-VCS-Directories: media-gfx/graphviz/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ca4eb0acc50c0bf41f1c5526b7b515df34e41258 X-VCS-Branch: master Date: Sat, 14 Sep 2019 14:59:34 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3b1f8f43-2b31-4ab0-8cbb-b860d32c87ba X-Archives-Hash: e832f052a8c2eef239da919f41c18bcc commit: ca4eb0acc50c0bf41f1c5526b7b515df34e41258 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat Sep 14 13:05:32 2019 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat Sep 14 14:52:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca4eb0ac media-gfx/graphviz: Inline myconf comments Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> media-gfx/graphviz/graphviz-2.42.1.ebuild | 35 +++++++++++-------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/media-gfx/graphviz/graphviz-2.42.1.ebuild b/media-gfx/graphviz/graphviz-2.42.1.ebuild index 6a0e38d17e8..a26f2b5c6df 100644 --- a/media-gfx/graphviz/graphviz-2.42.1.ebuild +++ b/media-gfx/graphviz/graphviz-2.42.1.ebuild @@ -187,14 +187,6 @@ src_prepare() { src_configure() { local myconf=( --enable-ltdl - --disable-silent-rules - $(use_enable static-libs static) - ) - - # libtool file collision, bug 276609 - myconf+=( --without-included-ltdl --disable-ltdl-install ) - - myconf+=( $(use_with cairo pangocairo) $(use_with devil) $(use_enable gdk-pixbuf) @@ -204,6 +196,7 @@ src_configure() { $(use_with lasi) $(use_with pdf poppler) $(use_with postscript ghostscript) + $(use_enable static-libs static) $(use_with svg rsvg) $(use_with X x) $(use_with X xaw) @@ -215,35 +208,31 @@ src_configure() { --with-libgd --with-sfdp --without-ming - ) - - # new/experimental features, to be tested, disable for now - myconf+=( + # new/experimental features, to be tested, disable for now --with-cgraph --without-glitz --without-ipsepcola --without-smyrna --without-visio - ) - - # Bindings: - myconf+=( + # Bindings: $(use_enable guile) - --disable-io $(use_enable java) + $(use_enable perl) + $(use_enable python python2) + $(use_enable python python3) + $(use_enable ruby) + $(use_enable tcl) + --disable-io --disable-lua --disable-ocaml - $(use_enable perl) --disable-php --disable-python - $(use_enable python python2) - $(use_enable python python3) --disable-r - $(use_enable ruby) --disable-sharp - $(use_enable tcl) + # libtool file collision, bug #276609 + --without-included-ltdl + --disable-ltdl-install ) - econf "${myconf[@]}" }