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 094D5138334 for ; Sat, 7 Jul 2018 02:03:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A859E0AEC; Sat, 7 Jul 2018 02:03:28 +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 0BA64E0AEC for ; Sat, 7 Jul 2018 02:03:26 +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 7D5CE335C8C for ; Sat, 7 Jul 2018 02:03:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDFA1363 for ; Sat, 7 Jul 2018 02:03:23 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1530928976.c7f012d40c5238950ee3df63e1f862916316458f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/protobuf-c/protobuf-c-1.3.0-r1.ebuild X-VCS-Directories: dev-libs/protobuf-c/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: c7f012d40c5238950ee3df63e1f862916316458f X-VCS-Branch: master Date: Sat, 7 Jul 2018 02:03:23 +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: 2cb56524-0ec7-41cb-94cf-8a91e8801512 X-Archives-Hash: d115502949e70b9b283dca1b6c8954ba commit: c7f012d40c5238950ee3df63e1f862916316458f Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Fri Jul 6 21:23:33 2018 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jul 7 02:02:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f012d4 dev-libs/protobuf-c: Install static library only with USE="static-libs". Minor cleanup. dev-libs/protobuf-c/protobuf-c-1.3.0-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/protobuf-c/protobuf-c-1.3.0-r1.ebuild b/dev-libs/protobuf-c/protobuf-c-1.3.0-r1.ebuild index 260f81c9689..bed34d3628b 100644 --- a/dev-libs/protobuf-c/protobuf-c-1.3.0-r1.ebuild +++ b/dev-libs/protobuf-c/protobuf-c-1.3.0-r1.ebuild @@ -9,7 +9,7 @@ MY_PV="${PV/_/-}" MY_P="${PN}-${MY_PV}" DESCRIPTION="Protocol Buffers implementation in C" -HOMEPAGE="https://github.com/protobuf-c/protobuf-c/" +HOMEPAGE="https://github.com/protobuf-c/protobuf-c" SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.gz" LICENSE="BSD-2" @@ -20,7 +20,6 @@ IUSE="static-libs test" RDEPEND=">=dev-libs/protobuf-2.6.0:0=[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} - test? ( ${AUTOTOOLS_DEPEND} ) virtual/pkgconfig[${MULTILIB_USEDEP}]" PATCHES=( @@ -32,7 +31,7 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default - if ! use test ; then + if ! use test; then eapply "${FILESDIR}"/${PN}-1.3.0-no-build-tests.patch fi @@ -41,5 +40,6 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" \ - econf "${myeconfargs[@]}" + econf \ + $(use_enable static-libs static) }