Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/darwin-miscutils/
Date: Fri, 23 Dec 2016 10:38:48
Message-Id: 1482489520.72fa5d07a043757cc209c6b18634d8a275d78b59.grobian@gentoo
1 commit: 72fa5d07a043757cc209c6b18634d8a275d78b59
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 23 10:38:31 2016 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 23 10:38:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72fa5d07
7
8 sys-apps/darwin-miscutils: hexdump moved to shell_cmds
9
10 Package-Manager: portage-2.3.0
11
12 sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild | 16 ++++++++--------
13 1 file changed, 8 insertions(+), 8 deletions(-)
14
15 diff --git a/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild b/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild
16 index c7b0efb..3c2869b 100644
17 --- a/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild
18 +++ b/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild
19 @@ -76,19 +76,19 @@ src_compile() {
20 TS=${S}/shell_cmds-${SHELL_VER}
21 # only pick those tools not provided by coreutils, findutils
22 for t in \
23 - apply getopt hostname jot kill killall \
24 + apply getopt hexdump hostname jot kill killall \
25 lastcomm renice script shlock time whereis;
26 do
27 echo "in ${TS}/${t}:"
28 - echo "$(tc-getCC) ${flags[@]} -o ${t} ${t}.c"
29 + echo "$(tc-getCC) ${flags[@]} -o ${t} *.c"
30 cd "${TS}/${t}"
31 - $(tc-getCC) ${flags[@]} -o ${t} ${t}.c || die "failed to compile $t"
32 + $(tc-getCC) ${flags[@]} -o ${t} *.c || die "failed to compile $t"
33 done
34 cd "${TS}/w"
35 sed -i -e '/#include <libutil.h>/d' w.c || die
36 echo "in ${TS}/w:"
37 - echo "$(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w w.c pr_time.c proc_compare.c"
38 - $(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w w.c pr_time.c proc_compare.c \
39 + echo "$(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w *.c"
40 + $(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w *.c \
41 || die "failed to compile w"
42
43 TS=${S}/developer_cmds-${DEV_VER}
44 @@ -97,7 +97,7 @@ src_compile() {
45 # shell scripts
46 # don't install rpcgen, as it is heavily related to the OS it runs
47 # on (and this is the Sierra version)
48 - for t in asa hexdump unifdef what ; do
49 + for t in asa unifdef what ; do
50 echo "in ${TS}/${t}:"
51 cd "${TS}/${t}" || die
52 echo "$(tc-getCC) ${flags[@]} -o ${t}" *.c
53 @@ -131,7 +131,7 @@ src_install() {
54
55 TS=${S}/shell_cmds-${SHELL_VER}
56 for t in \
57 - apply getopt jot killall lastcomm \
58 + apply getopt hexdump hostname jot killall lastcomm \
59 renice script shlock time w whereis;
60 do
61 cp "${TS}/${t}/${t}" "${ED}"/usr/bin/
62 @@ -146,7 +146,7 @@ src_install() {
63 done
64
65 TS=${S}/developer_cmds-${DEV_VER}
66 - for t in asa hexdump unifdef what ; do
67 + for t in asa unifdef what ; do
68 cp "${TS}/${t}/${t}" "${ED}"/usr/bin/
69 doman "${TS}/${t}/${t}.1"
70 done