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: Mon, 07 Jul 2014 14:10:39
Message-Id: 1404742221.04e815ff6d8540cbfdb912a6567c7a68905e891d.kensington@gentoo
1 commit: 04e815ff6d8540cbfdb912a6567c7a68905e891d
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 7 14:10:21 2014 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 7 14:10:21 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=04e815ff
7
8 [eclass] Spelling.
9
10 ---
11 eclass/cmake-utils.eclass | 12 ++++++------
12 1 file changed, 6 insertions(+), 6 deletions(-)
13
14 diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass
15 index f261729..1b3283c 100644
16 --- a/eclass/cmake-utils.eclass
17 +++ b/eclass/cmake-utils.eclass
18 @@ -647,7 +647,7 @@ enable_cmake-utils_src_install() {
19 # @DESCRIPTION:
20 # Apply ebuild and user patches.
21 cmake-utils_src_prepare() {
22 - _execute_optionaly "src_prepare" "$@"
23 + _execute_optionally "src_prepare" "$@"
24 }
25
26 # @FUNCTION: cmake-utils_src_configure
27 @@ -655,7 +655,7 @@ cmake-utils_src_prepare() {
28 # General function for configuring with cmake. Default behaviour is to start an
29 # out-of-source build.
30 cmake-utils_src_configure() {
31 - _execute_optionaly "src_configure" "$@"
32 + _execute_optionally "src_configure" "$@"
33 }
34
35 # @FUNCTION: cmake-utils_src_compile
36 @@ -663,25 +663,25 @@ cmake-utils_src_configure() {
37 # General function for compiling with cmake.
38 # Automatically detects the build type. All arguments are passed to emake.
39 cmake-utils_src_compile() {
40 - _execute_optionaly "src_compile" "$@"
41 + _execute_optionally "src_compile" "$@"
42 }
43
44 # @FUNCTION: cmake-utils_src_test
45 # @DESCRIPTION:
46 # Function for testing the package. Automatically detects the build type.
47 cmake-utils_src_test() {
48 - _execute_optionaly "src_test" "$@"
49 + _execute_optionally "src_test" "$@"
50 }
51
52 # @FUNCTION: cmake-utils_src_install
53 # @DESCRIPTION:
54 # Function for installing the package. Automatically detects the build type.
55 cmake-utils_src_install() {
56 - _execute_optionaly "src_install" "$@"
57 + _execute_optionally "src_install" "$@"
58 }
59
60 # Optionally executes phases based on WANT_CMAKE variable/USE flag.
61 -_execute_optionaly() {
62 +_execute_optionally() {
63 local phase="$1" ; shift
64 if [[ ${WANT_CMAKE} = always ]]; then
65 enable_cmake-utils_${phase} "$@"