diff options
author | Fabian Groffen <grobian@gentoo.org> | 2016-12-23 11:38:31 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2016-12-23 11:38:40 +0100 |
commit | 72fa5d07a043757cc209c6b18634d8a275d78b59 (patch) | |
tree | b1243dc8cd919bf0e6c9d13dc0f414e9b6a4bbea /sys-apps | |
parent | sci-biology/clustal-omega: Version Bump (diff) | |
download | gentoo-72fa5d07a043757cc209c6b18634d8a275d78b59.tar.gz gentoo-72fa5d07a043757cc209c6b18634d8a275d78b59.tar.bz2 gentoo-72fa5d07a043757cc209c6b18634d8a275d78b59.zip |
sys-apps/darwin-miscutils: hexdump moved to shell_cmds
Package-Manager: portage-2.3.0
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild b/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild index c7b0efbd34fa..3c2869b16b46 100644 --- a/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild +++ b/sys-apps/darwin-miscutils/darwin-miscutils-11.ebuild @@ -76,19 +76,19 @@ src_compile() { TS=${S}/shell_cmds-${SHELL_VER} # only pick those tools not provided by coreutils, findutils for t in \ - apply getopt hostname jot kill killall \ + apply getopt hexdump hostname jot kill killall \ lastcomm renice script shlock time whereis; do echo "in ${TS}/${t}:" - echo "$(tc-getCC) ${flags[@]} -o ${t} ${t}.c" + echo "$(tc-getCC) ${flags[@]} -o ${t} *.c" cd "${TS}/${t}" - $(tc-getCC) ${flags[@]} -o ${t} ${t}.c || die "failed to compile $t" + $(tc-getCC) ${flags[@]} -o ${t} *.c || die "failed to compile $t" done cd "${TS}/w" sed -i -e '/#include <libutil.h>/d' w.c || die echo "in ${TS}/w:" - echo "$(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w w.c pr_time.c proc_compare.c" - $(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w w.c pr_time.c proc_compare.c \ + echo "$(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w *.c" + $(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 -lresolv -o w *.c \ || die "failed to compile w" TS=${S}/developer_cmds-${DEV_VER} @@ -97,7 +97,7 @@ src_compile() { # shell scripts # don't install rpcgen, as it is heavily related to the OS it runs # on (and this is the Sierra version) - for t in asa hexdump unifdef what ; do + for t in asa unifdef what ; do echo "in ${TS}/${t}:" cd "${TS}/${t}" || die echo "$(tc-getCC) ${flags[@]} -o ${t}" *.c @@ -131,7 +131,7 @@ src_install() { TS=${S}/shell_cmds-${SHELL_VER} for t in \ - apply getopt jot killall lastcomm \ + apply getopt hexdump hostname jot killall lastcomm \ renice script shlock time w whereis; do cp "${TS}/${t}/${t}" "${ED}"/usr/bin/ @@ -146,7 +146,7 @@ src_install() { done TS=${S}/developer_cmds-${DEV_VER} - for t in asa hexdump unifdef what ; do + for t in asa unifdef what ; do cp "${TS}/${t}/${t}" "${ED}"/usr/bin/ doman "${TS}/${t}/${t}.1" done |