blob: 698ba29a639a54c93edc5fba4ac391b70c1789f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/darwin-miscutils/darwin-miscutils-5-r1.ebuild,v 1.5 2010/03/05 18:04:28 grobian Exp $
EAPI="3"
inherit toolchain-funcs eutils
MISC_VER=23
SHELL_VER=118
DEV_VER=48
DESCRIPTION="Miscellaneous commands used on Darwin/Mac OS X systems, Leopard"
HOMEPAGE="http://www.opensource.apple.com/"
SRC_URI="http://www.opensource.apple.com/darwinsource/tarballs/other/misc_cmds-${MISC_VER}.tar.gz
http://www.opensource.apple.com/darwinsource/tarballs/other/shell_cmds-${SHELL_VER}.tar.gz
http://www.opensource.apple.com/darwinsource/tarballs/other/developer_cmds-${DEV_VER}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
DEPEND=""
RDEPEND=""
S=${WORKDIR}
src_prepare() {
epatch "${FILESDIR}"/${P}-w.patch
epatch "${FILESDIR}"/${P}-error.patch
epatch "${FILESDIR}"/${P}-stdlib.patch
}
src_compile() {
local TS=${S}/misc_cmds-${MISC_VER}
# tsort is provided by coreutils
for t in leave units calendar; do
cd "${TS}/${t}"
echo "in ${TS}/${t}:"
echo "$(tc-getCC) -o ${t}" *.c
$(tc-getCC) -o ${t} *.c || die "failed to compile $t"
done
# compile cal separately
cd "${TS}/ncal"
echo "in ${TS}/ncal:"
local flags
flags[0]=-I.
flags[1]=-D__FBSDID=__RCSID
flags[2]=-Wsystem-headers
echo "$(tc-getCC) ${flags[@]} -c calendar.c"
$(tc-getCC) ${flags[@]} -c calendar.c || die "failed to compile cal"
echo "$(tc-getCC) ${flags[@]} -c easter.c"
$(tc-getCC) ${flags[@]} -c easter.c || die "failed to compile cal"
echo "$(tc-getCC) ${flags[@]} -c ncal.c"
$(tc-getCC) ${flags[@]} -c ncal.c || die "failed to compile cal"
echo "$(tc-getCC) ${flags[@]} -o cal calendar.o easter.o ncal.o"
$(tc-getCC) ${flags[@]} -o cal calendar.o easter.o ncal.o || die "failed to compile cal"
TS=${S}/shell_cmds-${SHELL_VER}
# only pick those tools not provided by coreutils, findutils
for t in \
alias apply getopt hostname jot kill \
lastcomm renice shlock time whereis;
do
echo "in ${TS}/${t}:"
echo "$(tc-getCC) -o ${t} ${t}.c"
cd "${TS}/${t}"
$(tc-getCC) -o ${t} ${t}.c || die "failed to compile $t"
done
# script and killall need additonal flags
for t in \
killall script
do
echo "in ${TS}/${t}:"
echo "$(tc-getCC) -D__FBSDID=__RCSID -o ${t} ${t}.c"
cd "${TS}/${t}"
$(tc-getCC) -D__FBSDID=__RCSID -o ${t} ${t}.c || die "failed to compile $t"
done
cd "${TS}/su"
echo "in ${TS}/su:"
echo "$(tc-getCC) -lpam -o su su.c"
$(tc-getCC) -lpam -o su su.c || die "failed to compile su"
cd "${TS}/w"
echo "in ${TS}/w:"
echo "$(tc-getCC) -DHAVE_UTMPX=1 -lresolv -o w w.c pr_time.c proc_compare.c"
$(tc-getCC) -DHAVE_UTMPX=1 -lresolv -o w w.c pr_time.c proc_compare.c \
|| die "failed to compile w"
TS=${S}/developer_cmds-${DEV_VER}
# only pick those tools that do not conflict (no ctags and indent)
# do not install lorder, mkdep and vgrind as they are a non-prefix-aware
# shell scripts
# don't install rpcgen, as it is heavily related to the OS it runs
# on (and this is the Leopard version)
for t in asa error hexdump unifdef what ; do
echo "in ${TS}/${t}:"
cd "${TS}/${t}"
sed -i -e '/^__FBSDID/d' *.c
echo "$(tc-getCC) -o ${t}" *.c
$(tc-getCC) -o ${t} *.c || die "failed to compile $t"
done
}
src_install() {
mkdir -p "${ED}"/bin
mkdir -p "${ED}"/usr/bin
local TS=${S}/misc_cmds-${MISC_VER}
for t in leave units calendar ; do
cp "${TS}/${t}/${t}" "${ED}"/usr/bin/
doman "${TS}/${t}/${t}.1"
done
# copy cal separately
cp "${TS}/ncal/cal" "${ED}"/usr/bin/
dosym /usr/bin/cal /usr/bin/ncal
doman "${TS}/ncal/ncal.1"
dosym /usr/share/man/man1/ncal.1 /usr/share/man/man1/cal.1
TS=${S}/shell_cmds-${SHELL_VER}
for t in \
alias apply getopt jot killall lastcomm \
renice script shlock su time w whereis;
do
cp "${TS}/${t}/${t}" "${ED}"/usr/bin/
[[ -f "${TS}/${t}/${t}.1" ]] && doman "${TS}/${t}/${t}.1"
[[ -f "${TS}/${t}/${t}.8" ]] && doman "${TS}/${t}/${t}.8"
done
cp "${TS}/w/w" "${ED}"/usr/bin/uptime
doman "${TS}/w/uptime.1"
for t in hostname kill; do
cp "${TS}/${t}/${t}" "${ED}"/bin/
doman "${TS}/${t}/${t}.1"
done
TS=${S}/developer_cmds-${DEV_VER}
for t in asa error hexdump unifdef what ; do
cp "${TS}/${t}/${t}" "${ED}"/usr/bin/
doman "${TS}/${t}/${t}.1"
done
}
|