Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: /
Date: Tue, 12 Mar 2019 19:38:38
Message-Id: 1552419482.7d0500007c1840902c7e89f245278e508bd45ef1.ulm@gentoo
1 commit: 7d0500007c1840902c7e89f245278e508bd45ef1
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 12 19:37:35 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 19:38:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d050000
7
8 skel.ebuild: Elaborate on CHOST type build-time dependencies.
9
10 Flip order of RDEPEND and DEPEND, so that it agrees with the devmanual.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 skel.ebuild | 14 ++++++++------
15 1 file changed, 8 insertions(+), 6 deletions(-)
16
17 diff --git a/skel.ebuild b/skel.ebuild
18 index 88d4d177e85..77337142ec3 100644
19 --- a/skel.ebuild
20 +++ b/skel.ebuild
21 @@ -78,18 +78,20 @@ IUSE="gnome X"
22 #RESTRICT="strip"
23
24
25 -# Build-time dependencies, such as
26 -# ssl? ( >=dev-libs/openssl-0.9.6b )
27 -# >=dev-lang/perl-5.6.1-r1
28 +# Run-time dependencies. Must be defined to whatever this depends on to run.
29 +# Example:
30 +# ssl? ( >=dev-libs/openssl-1.0.2q:0= )
31 +# >=dev-lang/perl-5.24.3-r1
32 # It is advisable to use the >= syntax show above, to reflect what you
33 # had installed on your system when you tested the package. Then
34 # other users hopefully won't be caught without the right version of
35 # a dependency.
36 -#DEPEND=""
37 +#RDEPEND=""
38
39 -# Run-time dependencies. Must be defined to whatever this depends on to run.
40 +# Build-time dependencies that need to be binary compatible with the system
41 +# being built (CHOST). These include libraries that we link against.
42 # The below is valid if the same run-time depends are required to compile.
43 -RDEPEND="${DEPEND}"
44 +#DEPEND="${RDEPEND}"
45
46 # Build-time dependencies that are executed during the emerge process, and
47 # only need to be present in the native build system (CBUILD). Example: