Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: eclass/
Date: Tue, 11 Feb 2014 11:42:35
Message-Id: 1392118858.83ca991b207eaec0d84e537030cb07c6cc2a557d.kensington@gentoo
1 commit: 83ca991b207eaec0d84e537030cb07c6cc2a557d
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 11:40:58 2014 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 11:40:58 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=83ca991b
7
8 [eclass] Improve variables documentation.
9
10 ---
11 eclass/kde-frameworks.eclass | 16 ++++++++--------
12 1 file changed, 8 insertions(+), 8 deletions(-)
13
14 diff --git a/eclass/kde-frameworks.eclass b/eclass/kde-frameworks.eclass
15 index dc4699a..e8f84d3 100644
16 --- a/eclass/kde-frameworks.eclass
17 +++ b/eclass/kde-frameworks.eclass
18 @@ -31,8 +31,8 @@ EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_
19
20 # @ECLASS-VARIABLE: QT_MINIMAL
21 # @DESCRIPTION:
22 -# Determine version of qt we enforce as minimal for the package.
23 -QT_MINIMAL="${QT_MINIMAL:-5.2.0}"
24 +# Minimal Qt version to require for the package.
25 +: ${QT_MINIMAL:=5.2.0}
26
27 # @ECLASS-VARIABLE: FRAMEWORKS_AUTODEPS
28 # @DESCRIPTION:
29 @@ -42,21 +42,21 @@ QT_MINIMAL="${QT_MINIMAL:-5.2.0}"
30
31 # @ECLASS-VARIABLE: FRAMEWORKS_DEBUG
32 # @DESCRIPTION:
33 -# If set to "false", do nothing.
34 -# For any other value, add debug to IUSE.
35 +# If set to "false", unconditionally build with -DNDEBUG.
36 +# Otherwise, add debug to IUSE to control building with that flag.
37 : ${FRAMEWORKS_DEBUG:=true}
38
39 # @ECLASS-VARIABLE: FRAMEWORKS_DOXYGEN
40 # @DESCRIPTION:
41 # If set to "false", do nothing.
42 -# For any other value, add doc to IUSE, add a dependency on doxygen,
43 -# and generate and install API documentation.
44 +# Otherwise, add "doc" to IUSE, add appropriate dependencies, and generate and
45 +# install API documentation.
46 : ${FRAMEWORKS_DOXYGEN:=true}
47
48 # @ECLASS-VARIABLE: FRAMEWORKS_EXAMPLES
49 # @DESCRIPTION:
50 -# If set to "false", do nothing.
51 -# For any other value, add examples to IUSE.
52 +# If set to "false", unconditionally ignore a top-level examples subdirectory.
53 +# Otherwise, add "examples" to IUSE to toggle adding that subdirectory.
54 : ${FRAMEWORKS_EXAMPLES:=false}
55
56 # @ECLASS-VARIABLE: FRAMEWORKS_TEST