Gentoo Archives: gentoo-user

From: Alan McKinnon <alan.mckinnon@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] fail: kde-base/kdelibs-4.10.5-r1
Date: Sun, 28 Jul 2013 16:37:49
Message-Id: 51F5483B.3050303@gmail.com
In Reply to: Re: [gentoo-user] fail: kde-base/kdelibs-4.10.5-r1 by Alain Didierjean
1 On 28/07/2013 17:59, Alain Didierjean wrote:
2 >
3 >
4 > ----- Mail original -----
5 >> De: "Alan McKinnon" <alan.mckinnon@×××××.com>
6 >> À: gentoo-user@l.g.o
7 >> Envoyé: Dimanche 28 Juillet 2013 10:59:37
8 >> Objet: Re: [gentoo-user] fail: kde-base/kdelibs-4.10.5-r1
9 >>
10 >> On 28/07/2013 10:56, Alain Didierjean wrote:
11 >>> the above lib won't compile with a "emake error". Is it me or
12 >>> anyone else had that type of problem ?
13 >>>
14 >>
15 >>
16 >> It's just you.
17 >>
18 >> Please post emerge output.
19 >>
20 >
21 > Thanks. Emerge output: emake error.
22 > I could'nt find an emake executable. Which package contains such a beast ?
23 >
24
25
26 No package explicity claims it:
27
28 $ ls -al /usr/lib64/portage/bin/ebuild-helpers/emake
29 -rwxr-xr-x 1 root root 922 Jul 26 16:16
30 /usr/lib64/portage/bin/ebuild-helpers/emake
31
32 $ equery belongs /usr/lib64/portage/bin/ebuild-helpers/emake
33 * Searching for /usr/lib64/portage/bin/ebuild-helpers/emake ...
34 alanm@khamul ~
35
36
37 genlop -l shows the package emerged at that time is portage. I don't
38 quite figure yet how the file got created and not recorded as belonging
39 to portage.
40
41 Maybe your's has the wrong permissions or ownership?
42
43
44 Here's the content of the file just in case:
45
46 #!/bin/bash
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 #
50 # emake: Supplies some default parameters to GNU make. At the moment the
51 # only parameter supplied is -jN, where N is a number of
52 # parallel processes that should be ideal for the running host
53 # (e.g. on a single-CPU machine, N=2). The MAKEOPTS variable
54 # is set in make.globals. We don't source make.globals
55 # here because emake is only called from an ebuild.
56
57 source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
58
59 if [[ $PORTAGE_QUIET != 1 ]] ; then
60 (
61 for arg in ${MAKE:-make} $MAKEOPTS $EXTRA_EMAKE "$@" ; do
62 [[ ${arg} == *" "* ]] \
63 && printf "'%s' " "${arg}" \
64 || printf "%s " "${arg}"
65 done
66 printf "\n"
67 ) >&2
68 fi
69
70 ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"
71 ret=$?
72 [[ $ret -ne 0 ]] && __helpers_die "${0##*/} failed"
73 exit $ret
74
75
76
77
78 --
79 Alan McKinnon
80 alan.mckinnon@×××××.com

Replies

Subject Author
Re: [gentoo-user] fail: kde-base/kdelibs-4.10.5-r1 Neil Bothwick <neil@××××××××××.uk>