Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog eutils.eclass
Date: Fri, 27 Dec 2013 09:28:47
Message-Id: 20131227092842.388B32004C@flycatcher.gentoo.org
1 mgorny 13/12/27 09:28:42
2
3 Modified: ChangeLog eutils.eclass
4 Log:
5 Document einstalldocs.
6
7 Revision Changes Path
8 1.1089 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1089&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1089&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1088&r2=1.1089
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1088
18 retrieving revision 1.1089
19 diff -u -r1.1088 -r1.1089
20 --- ChangeLog 26 Dec 2013 07:11:48 -0000 1.1088
21 +++ ChangeLog 27 Dec 2013 09:28:41 -0000 1.1089
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1088 2013/12/26 07:11:48 graaff Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1089 2013/12/27 09:28:41 mgorny Exp $
27 +
28 + 27 Dec 2013; Michał Górny <mgorny@g.o> eutils.eclass:
29 + Document einstalldocs.
30
31 26 Dec 2013; Hans de Graaff <graaff@g.o> ruby-ng.eclass:
32 Add support for the ruby21 target.
33
34
35
36 1.429 eclass/eutils.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.429&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.429&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?r1=1.428&r2=1.429
41
42 Index: eutils.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v
45 retrieving revision 1.428
46 retrieving revision 1.429
47 diff -u -r1.428 -r1.429
48 --- eutils.eclass 3 Dec 2013 08:09:49 -0000 1.428
49 +++ eutils.eclass 27 Dec 2013 09:28:42 -0000 1.429
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.428 2013/12/03 08:09:49 vapier Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.429 2013/12/27 09:28:42 mgorny Exp $
55
56 # @ECLASS: eutils.eclass
57 # @MAINTAINER:
58 @@ -1666,6 +1666,30 @@
59 fi
60 }
61
62 +# @FUNCTION: prune_libtool_files
63 +# @DESCRIPTION:
64 +# Install documentation using DOCS and HTML_DOCS.
65 +#
66 +# If DOCS is declared and non-empty, all files listed in it are
67 +# installed. The files must exist, otherwise the function will fail.
68 +# In EAPI 4 and subsequent EAPIs DOCS may specify directories as well,
69 +# in other EAPIs using directories is unsupported.
70 +#
71 +# If DOCS is not declared, the files matching patterns given
72 +# in the default EAPI implementation of src_install will be installed.
73 +# If this is undesired, DOCS can be set to empty value to prevent any
74 +# documentation from being installed.
75 +#
76 +# If HTML_DOCS is declared and non-empty, all files and/or directories
77 +# listed in it are installed as HTML docs (using dohtml).
78 +#
79 +# Both DOCS and HTML_DOCS can either be an array or a whitespace-
80 +# separated list. Whenever directories are allowed, '<directory>/.' may
81 +# be specified in order to install all files within the directory
82 +# without creating a sub-directory in docdir.
83 +#
84 +# Passing additional options to dodoc and dohtml is not supported.
85 +# If you needed such a thing, you need to call those helpers explicitly.
86 einstalldocs() {
87 debug-print-function ${FUNCNAME} "${@}"