Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/functions/src_install/
Date: Thu, 09 Jan 2020 19:13:04
Message-Id: 1578597090.afc9e4df73a0c17be4ed1e7c63beb8f87ce4d1ae.ulm@gentoo
1 commit: afc9e4df73a0c17be4ed1e7c63beb8f87ce4d1ae
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 13 11:54:58 2015 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 9 19:11:30 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=afc9e4df
7
8 ebuild-writing/functions/src_install: Don't mention einstall.
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 ebuild-writing/functions/src_install/text.xml | 12 +++++-------
13 1 file changed, 5 insertions(+), 7 deletions(-)
14
15 diff --git a/ebuild-writing/functions/src_install/text.xml b/ebuild-writing/functions/src_install/text.xml
16 index 19b3cee..434e01c 100644
17 --- a/ebuild-writing/functions/src_install/text.xml
18 +++ b/ebuild-writing/functions/src_install/text.xml
19 @@ -112,16 +112,14 @@ if you hit an error.
20 </note>
21
22 <p>
23 - Sometimes this will end up installing a few things into strange
24 - places. If and only if this is the case, the <c>einstall</c>
25 - function can be used. It is usually necessary to include additional
26 - <c>dodoc</c> statements for the <c>README</c>, <c>ChangeLog</c>, etc
27 - in these cases:
28 +Usually the package's build system will not install the <c>README</c>,
29 +<c>ChangeLog</c>, etc. files, so it is necessary to include additional
30 +<c>dodoc</c> statements for them:
31 </p>
32
33 <codesample lang="ebuild">
34 - einstall
35 - dodoc README CHANGES
36 + emake DESTDIR="${D}" install
37 + dodoc README CHANGES
38 </codesample>
39
40 <note>