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 DD7A41396D0 for ; Mon, 7 Aug 2017 11:36:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBB17E082F; Mon, 7 Aug 2017 11:36:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CAD5AE082F for ; Mon, 7 Aug 2017 11:36:13 +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 C58CF341869 for ; Mon, 7 Aug 2017 11:36:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C0B075EB for ; Mon, 7 Aug 2017 11:36:11 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1502105790.98dae2a3693024efe75dad89d45c78d9d0c5ae50.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/named-readtables/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/named-readtables/named-readtables-0.9-r1.ebuild dev-lisp/named-readtables/named-readtables-9999.ebuild X-VCS-Directories: dev-lisp/named-readtables/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 98dae2a3693024efe75dad89d45c78d9d0c5ae50 X-VCS-Branch: master Date: Mon, 7 Aug 2017 11:36:11 +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-Archives-Salt: fb2eac75-e47e-4e8d-a801-613762989db3 X-Archives-Hash: 1df83e1974fec86adea9a442930f994c commit: 98dae2a3693024efe75dad89d45c78d9d0c5ae50 Author: Chema Alonso Josa gentoo org> AuthorDate: Mon Aug 7 11:36:30 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Aug 7 11:36:30 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=98dae2a3 dev-lisp/named-readtables: Uses dodoc for installing doc dev-lisp/named-readtables/named-readtables-0.9-r1.ebuild | 4 ++-- dev-lisp/named-readtables/named-readtables-9999.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lisp/named-readtables/named-readtables-0.9-r1.ebuild b/dev-lisp/named-readtables/named-readtables-0.9-r1.ebuild index 46a7bb41..ea9f0367 100644 --- a/dev-lisp/named-readtables/named-readtables-0.9-r1.ebuild +++ b/dev-lisp/named-readtables/named-readtables-0.9-r1.ebuild @@ -12,10 +12,10 @@ SRC_URI="http://common-lisp.net/project/editor-hints/releases/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" +IUSE="doc" src_install() { common-lisp-install-sources *.lisp tests/*.lisp common-lisp-install-asdf - dohtml doc/${PN}.html + use doc && dodoc doc/${PN}.html } diff --git a/dev-lisp/named-readtables/named-readtables-9999.ebuild b/dev-lisp/named-readtables/named-readtables-9999.ebuild index 66478d07..2a0c8fb4 100644 --- a/dev-lisp/named-readtables/named-readtables-9999.ebuild +++ b/dev-lisp/named-readtables/named-readtables-9999.ebuild @@ -16,5 +16,5 @@ IUSE="doc" src_install() { common-lisp-install-sources src test common-lisp-install-asdf - use doc && dohtml doc/${PN}.html + use doc && dodoc doc/${PN}.html }