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 DD02D138334 for ; Sat, 11 May 2019 05:52:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA49DE084E; Sat, 11 May 2019 05:51:59 +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 BBD0BE084E for ; Sat, 11 May 2019 05:51:59 +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 1B84534400C for ; Sat, 11 May 2019 05:51:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 943EF452 for ; Sat, 11 May 2019 05:51:55 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1557553844.5ce72a11698272faeaa9d45cea677bc7c15a8a21.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libyaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libyaml/libyaml-0.2.2.ebuild X-VCS-Directories: dev-libs/libyaml/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 5ce72a11698272faeaa9d45cea677bc7c15a8a21 X-VCS-Branch: master Date: Sat, 11 May 2019 05:51:55 +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: b2ff23e2-a442-4eec-848d-5f021fc791f1 X-Archives-Hash: 457b5bc68fb3533a29576c72e5272654 commit: 5ce72a11698272faeaa9d45cea677bc7c15a8a21 Author: Tim Harder gentoo org> AuthorDate: Sat May 11 05:41:44 2019 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat May 11 05:50:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ce72a11 dev-libs/libyaml: fix doc build support Also, stop installing example code. Closes: https://bugs.gentoo.org/685594 Signed-off-by: Tim Harder gentoo.org> dev-libs/libyaml/libyaml-0.2.2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/libyaml/libyaml-0.2.2.ebuild b/dev-libs/libyaml/libyaml-0.2.2.ebuild index b6373be87d0..84ef1799655 100644 --- a/dev-libs/libyaml/libyaml-0.2.2.ebuild +++ b/dev-libs/libyaml/libyaml-0.2.2.ebuild @@ -32,13 +32,13 @@ src_configure() { econf $(use_enable static-libs static) } +src_compile() { + emake + use doc && emake html +} + src_install() { use doc && HTML_DOCS=( doc/html/. ) default - find "${D}" -name '*.la' -delete || die - - docinto examples - dodoc tests/example-*.c - docompress -x /usr/share/doc/${PF}/examples }