From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1280403-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 4A66113835A for <garchives@archives.gentoo.org>; Mon, 10 May 2021 09:35:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EE02E079E; Mon, 10 May 2021 09:35:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [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 62D5BE079E for <gentoo-commits@lists.gentoo.org>; Mon, 10 May 2021 09:35:01 +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 EB256340FB7 for <gentoo-commits@lists.gentoo.org>; Mon, 10 May 2021 09:34:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49D27644 for <gentoo-commits@lists.gentoo.org>; Mon, 10 May 2021 09:34:58 +0000 (UTC) From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org> Message-ID: <1620639272.a7cb56cec9707622e9ea44ad9422d3486a410f00.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrohttpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild X-VCS-Directories: net-libs/libmicrohttpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a7cb56cec9707622e9ea44ad9422d3486a410f00 X-VCS-Branch: master Date: Mon, 10 May 2021 09:34:58 +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: 813293f2-043f-40bd-ae5e-a92a8c281ee8 X-Archives-Hash: 50fdf5116e0a56936b48305b0fa7bf82 commit: a7cb56cec9707622e9ea44ad9422d3486a410f00 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon May 10 09:34:32 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon May 10 09:34:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7cb56ce net-libs/libmicrohttpd: misc fixes * Move pkgconfig out of DEPEND into BDEPEND * Missing || die * Use array for DOCS Signed-off-by: Sam James <sam <AT> gentoo.org> net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild index b8632317780..6e40bbf9a52 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.73.ebuild @@ -10,6 +10,7 @@ MY_P="${P/_/}" DESCRIPTION="Small C library to run an HTTP server as part of another application" HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/" SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" +S="${WORKDIR}"/${MY_P} LICENSE="LGPL-2.1" SLOT="0/12" @@ -17,21 +18,15 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc IUSE="+epoll ssl static-libs test thread-names" RESTRICT="!test? ( test )" -BDEPEND=" - ssl? ( virtual/pkgconfig ) - test? ( virtual/pkgconfig ) - " - RDEPEND="ssl? ( >net-libs/gnutls-2.12.20:= )" - DEPEND="${RDEPEND} test? ( net-misc/curl[ssl?] ) +" +BDEPEND=" virtual/pkgconfig - " - -S=${WORKDIR}/${MY_P} +" -DOCS="AUTHORS NEWS README ChangeLog" +DOCS=( AUTHORS NEWS README ChangeLog ) multilib_src_configure() { ECONF_SOURCE="${S}" \ @@ -57,5 +52,7 @@ multilib_src_configure() { multilib_src_install_all() { default - use static-libs || find "${ED}" -name '*.la' -delete + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi }