From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4C9C113888F for ; Sat, 31 Oct 2015 09:41:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1709121C003; Sat, 31 Oct 2015 09:41:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9FAE21C003 for ; Sat, 31 Oct 2015 09:41:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85F57340766 for ; Sat, 31 Oct 2015 09:41:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B17A71BE5 for ; Sat, 31 Oct 2015 09:41:30 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1446284451.415e8dc7428b8e0c904e1f6d9315f31b177767ba.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/pms/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/pms/pms-5-r2.ebuild app-doc/pms/pms-9999.ebuild X-VCS-Directories: app-doc/pms/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 415e8dc7428b8e0c904e1f6d9315f31b177767ba X-VCS-Branch: master Date: Sat, 31 Oct 2015 09:41:30 +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: fce00765-b063-46db-91a4-28845b795788 X-Archives-Hash: 993563acde8124f917c44fd391bef6bd commit: 415e8dc7428b8e0c904e1f6d9315f31b177767ba Author: Ulrich Müller gentoo org> AuthorDate: Sat Oct 31 09:40:51 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Oct 31 09:40:51 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415e8dc7 app-doc/pms: Use dodoc instead of dohtml. Package-Manager: portage-2.2.23 app-doc/pms/pms-5-r2.ebuild | 5 +++-- app-doc/pms/pms-9999.ebuild | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app-doc/pms/pms-5-r2.ebuild b/app-doc/pms/pms-5-r2.ebuild index f0f73a7..8f7c7a2 100644 --- a/app-doc/pms/pms-5-r2.ebuild +++ b/app-doc/pms/pms-5-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -38,7 +38,8 @@ src_compile() { src_install() { dodoc pms.pdf eapi-cheatsheet.pdf if use html; then - dohtml *.html pms.css $(shopt -s nullglob; echo *.png) + docinto html + dodoc *.html pms.css $(shopt -s nullglob; echo *.png) dosym {..,/usr/share/doc/${PF}/html}/eapi-cheatsheet.pdf fi } diff --git a/app-doc/pms/pms-9999.ebuild b/app-doc/pms/pms-9999.ebuild index 20ca87f..10f044a 100644 --- a/app-doc/pms/pms-9999.ebuild +++ b/app-doc/pms/pms-9999.ebuild @@ -36,7 +36,8 @@ src_compile() { src_install() { dodoc pms.pdf eapi-cheatsheet.pdf if use html; then - dohtml *.html pms.css $(shopt -s nullglob; echo *.png) + docinto html + dodoc *.html pms.css $(shopt -s nullglob; echo *.png) dosym {..,/usr/share/doc/${PF}/html}/eapi-cheatsheet.pdf fi }