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 2776C138334 for ; Tue, 16 Apr 2019 21:02:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 017ACE09B0; Tue, 16 Apr 2019 21:02:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D2AF1E09B0 for ; Tue, 16 Apr 2019 21:02:22 +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 2EB7B34147A for ; Tue, 16 Apr 2019 21:02:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E6AC452 for ; Tue, 16 Apr 2019 21:02:19 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1555448526.39bac3ef9d5155ad74b16255db0a71421410485f.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xmlsec/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/xmlsec/xmlsec-1.2.28.ebuild X-VCS-Directories: dev-libs/xmlsec/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 39bac3ef9d5155ad74b16255db0a71421410485f X-VCS-Branch: master Date: Tue, 16 Apr 2019 21:02:19 +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: 18c16afb-bebc-41d4-9b24-40ce7fa762b4 X-Archives-Hash: 55bb2517dd60d491cf96e45d7280896a commit: 39bac3ef9d5155ad74b16255db0a71421410485f Author: Alon Bar-Lev gentoo org> AuthorDate: Tue Apr 16 21:01:54 2019 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Tue Apr 16 21:02:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39bac3ef dev-libs/xmlsec: cleanup ebuild Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-libs/xmlsec/xmlsec-1.2.28.ebuild | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/dev-libs/xmlsec/xmlsec-1.2.28.ebuild b/dev-libs/xmlsec/xmlsec-1.2.28.ebuild index 1e5834c6fbb..50ec11983a8 100644 --- a/dev-libs/xmlsec/xmlsec-1.2.28.ebuild +++ b/dev-libs/xmlsec/xmlsec-1.2.28.ebuild @@ -42,26 +42,17 @@ PATCHES=( "${FILESDIR}/${P}-test.patch" ) -src_prepare() { - default - # conditionally install extra documentation - if ! use doc ; then - sed -i '/^SUBDIRS/s/docs//' Makefile.am || die - eautoreconf - fi -} - src_configure() { econf \ - --enable-pkgconfig \ - --with-html-dir=/usr/share/doc/${PF}/html \ + $(use_enable doc docs) \ $(use_enable static-libs static) \ $(use_with gcrypt) \ $(use_with gnutls) \ - $(use_with nss) \ $(use_with nss nspr) \ + $(use_with nss) \ $(use_with openssl) \ - $(use_enable openssl aes) + --enable-mans \ + --enable-pkgconfig } src_test() {