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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DA7315806E for ; Sat, 20 May 2023 10:15:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C275E0819; Sat, 20 May 2023 10:15:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BEC1E0819 for ; Sat, 20 May 2023 10:15:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 24D76340EC1 for ; Sat, 20 May 2023 10:14:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 854F0A67 for ; Sat, 20 May 2023 10:14:57 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1684577688.06bc40cd1d9dd3447c22c41b0af4b9583030584b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libwpg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libwpg/libwpg-0.3.4.ebuild X-VCS-Directories: app-text/libwpg/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 06bc40cd1d9dd3447c22c41b0af4b9583030584b X-VCS-Branch: master Date: Sat, 20 May 2023 10:14:57 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9df616cf-729a-4d3e-aa53-91aed3682fd5 X-Archives-Hash: 90d6f9a254a8b6df550ee46356b318f1 commit: 06bc40cd1d9dd3447c22c41b0af4b9583030584b Author: David Seifert gentoo org> AuthorDate: Sat May 20 10:14:48 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sat May 20 10:14:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06bc40cd app-text/libwpg: add boost to DEPEND Closes: https://bugs.gentoo.org/906252 Signed-off-by: David Seifert gentoo.org> app-text/libwpg/libwpg-0.3.4.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-text/libwpg/libwpg-0.3.4.ebuild b/app-text/libwpg/libwpg-0.3.4.ebuild index 72c73c9ef298..8aed99081503 100644 --- a/app-text/libwpg/libwpg-0.3.4.ebuild +++ b/app-text/libwpg/libwpg-0.3.4.ebuild @@ -10,13 +10,16 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 MPL-2.0 )" SLOT="0.3" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86" -IUSE="doc static-libs" +IUSE="doc" RDEPEND=" app-text/libwpd:0.10[tools] dev-libs/librevenge " -DEPEND="${RDEPEND}" +DEPEND=" + ${RDEPEND} + dev-libs/boost +" BDEPEND=" virtual/pkgconfig doc? ( app-doc/doxygen ) @@ -26,12 +29,11 @@ src_configure() { local myeconfargs=( --program-suffix=-${SLOT} $(use_with doc docs) - $(use_enable static-libs static) ) econf "${myeconfargs[@]}" } src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die }