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 72DD01382C5 for ; Thu, 27 May 2021 07:14:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EE37E1525; Thu, 27 May 2021 07:14:13 +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 704D6E1525 for ; Thu, 27 May 2021 07:14:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1D89233BE34 for ; Thu, 27 May 2021 07:14:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FCC247 for ; Thu, 27 May 2021 07:14:10 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1622099597.3e9d0916afc604cd06a2201650d0b7b29b7ae753.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/patchutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/patchutils/patchutils-0.4.2.ebuild X-VCS-Directories: dev-util/patchutils/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3e9d0916afc604cd06a2201650d0b7b29b7ae753 X-VCS-Branch: master Date: Thu, 27 May 2021 07:14:10 +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: 73da027a-cb11-44c7-a4d3-57af5d68741f X-Archives-Hash: f79f21875a5a80d02acacb198e51e56c commit: 3e9d0916afc604cd06a2201650d0b7b29b7ae753 Author: Lars Wendler gentoo org> AuthorDate: Thu May 27 07:13:17 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu May 27 07:13:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e9d0916 dev-util/patchutils: Added "pcre" USE flag Closes: https://bugs.gentoo.org/792366 Signed-off-by: Lars Wendler gentoo.org> dev-util/patchutils/patchutils-0.4.2.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-util/patchutils/patchutils-0.4.2.ebuild b/dev-util/patchutils/patchutils-0.4.2.ebuild index c1491c87fe5..95086f63a11 100644 --- a/dev-util/patchutils/patchutils-0.4.2.ebuild +++ b/dev-util/patchutils/patchutils-0.4.2.ebuild @@ -10,4 +10,11 @@ SRC_URI="http://cyberelk.net/tim/data/patchutils/stable/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" -IUSE="" +IUSE="pcre" + +RDEPEND="pcre? ( dev-libs/libpcre2:= )" +DEPEND="${RDEPEND}" + +src_configure() { + econf $(use_with pcre pcre2) +}