blob: f9dcf752aa0fef80d3ba2bde9a74d59dbf1ecc46 (
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.4.2.ebuild,v 1.6 2007/04/06 00:21:59 vapier Exp $
inherit eutils flag-o-matic
################################################################################
# BUSYBOX ALTERNATE CONFIG MINI-HOWTO
#
# Busybox can be modified in many different ways. Here's a few ways to do it:
#
# (1) Emerge busybox with FEATURES=keepwork so the work directory won't
# get erased afterwards. Add a definition like ROOT=/my/root/path to the
# start of the line if you're installing to somewhere else than the root
# directory. This command will save the default configuration to
# ${PORTAGE_CONFIGROOT} (or ${ROOT} if ${PORTAGE_CONFIGROOT} is not
# defined), and it will tell you that it has done this. Note the location
# where the config file was saved.
#
# FEATURES=keepwork USE=savedconfig emerge busybox
#
# (2) Go to the work directory and change the configuration of busybox using its
# menuconfig feature.
#
# cd /var/tmp/portage/busybox*/work
# make menuconfig
#
#
# (3) Save your configuration to the default location and copy it to the
# savedconfig location as follows. Replace X.X.X by the version of
# busybox, and change the path if you're overriding ${ROOT} or
# ${PORTAGE_CONFIGROOT}. The file should overwrite the default config
# file that was written by the ebuild during step 1.
#
# cp .config /etc/portage/savedconfig/busybox-X.X.X.config
#
# (4) Execute the same command as in step 1 to build the new busybox config;
# the FEATURES=keepwork option is probably no longer necessary unless you
# want to modify the configuration further.
#
################################################################################
#
# (1) Alternatively skip the above steps and simply emerge busybox with
# USE=savedconfig and edit the file it saves by hand. Then remerge bb as
# needed.
#
################################################################################
#SNAPSHOT=20040726
SNAPSHOT=""
DESCRIPTION="Utilities for rescue and embedded systems"
HOMEPAGE="http://www.busybox.net/"
if [[ -n ${SNAPSHOT} ]] ; then
MY_P=${PN}
SRC_URI="http://www.busybox.net/downloads/snapshots/${PN}-${SNAPSHOT}.tar.bz2"
else
MY_P=${PN}-${PV/_/-}
SRC_URI="http://www.busybox.net/downloads/${MY_P}.tar.bz2"
fi
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="debug static savedconfig make-symlinks selinux"
RESTRICT="test"
DEPEND="selinux? ( sys-libs/libselinux )"
S=${WORKDIR}/${MY_P}
busybox_config_option() {
case $1 in
y) sed -i -e "s:.*CONFIG_$2.*set:CONFIG_$2=y:g" .config;;
n) sed -i -e "s:CONFIG_$2=y:# CONFIG_$2 is not set:g" .config;;
*) use $1 \
&& busybox_config_option y $2 \
|| busybox_config_option n $2
return 0
;;
esac
einfo $(grep "CONFIG_$2[= ]" .config)
}
src_unpack() {
unset KBUILD_OUTPUT #88088
unpack ${MY_P}.tar.bz2
cd "${S}"
# patches go here!
epatch "${FILESDIR}"/1.4.0/bb.patch
epatch "${FILESDIR}"/1.4.0/selinux-link.patch
# work around broken ass powerpc compilers
use ppc64 && append-flags -mminimal-toc
# flag cleanup
sed -i \
-e 's: -Werror : :' \
-e 's:-Os -falign-functions=1 -falign-jumps=1 -falign-loops=1::' \
-e 's:-fomit-frame-pointer::' \
Makefile.flags
sed -i 's:-Wl,--gc-sections::' Makefile
sed -i "/^CFLAGS.*:=/s:$: ${CFLAGS}:" Makefile
echo "CROSS_COMPILE := ${CHOST}-" >> Makefile.flags
# check for a busybox config before making one of our own.
# if one exist lets return and use it.
# fine grained config control for user defined busybox configs.
# [package]-[version]-[revision].config
# [package]-[version].config
# [package].config
if use savedconfig ; then
local conf root
[[ -r .config ]] && rm .config
for conf in {${PF},${P},${PN}}{,-${CHOST}} ; do
for root in "${PORTAGE_CONFIGROOT}" "${ROOT}" / ; do
configfile=${root}etc/portage/savedconfig/${conf}.config
if [[ -r ${configfile} ]] ; then
einfo "Found your ${configfile} and using it."
cp ${configfile} "${S}"/.config
yes "" | make oldconfig > /dev/null
return 0
fi
done
done
ewarn "Could not locate user configfile, so we will save a default one"
fi
# setup the config file
make allyesconfig > /dev/null
busybox_config_option n DMALLOC
busybox_config_option n FEATURE_SUID_CONFIG
busybox_config_option n BUILD_AT_ONCE
busybox_config_option n BUILD_LIBBUSYBOX
# If these are not set and we are using a uclibc/busybox setup
# all calls to system() will fail.
busybox_config_option y FEATURE_SH_IS_ASH
busybox_config_option n FEATURE_SH_IS_NONE
busybox_config_option static STATIC
busybox_config_option debug DEBUG
use debug \
&& busybox_config_option y NO_DEBUG_LIB \
&& busybox_config_option n DMALLOC \
&& busybox_config_option n EFENCE
busybox_config_option selinux SELINUX
# default a bunch of uncommon options to off
for opt in LOCALE_SUPPORT TFTP FTP{GET,PUT} IPCALC TFTP HUSH \
LASH MSH INETD DPKG RPM2CPIO RPM FOLD LOGNAME OD CRONTAB \
UUDECODE UUENCODE SULOGIN DC DEBUG_YANK_SUSv2 DEBUG_INIT \
DEBUG_CROND_OPTION FEATURE_UDHCP_DEBUG TASKSET
do
busybox_config_option n ${opt}
done
make oldconfig > /dev/null
}
src_compile() {
unset KBUILD_OUTPUT #88088
emake busybox || die "build failed"
if ! use static ; then
mv busybox_unstripped{,.bak}
emake CONFIG_STATIC=y busybox || die "static build failed"
mv busybox_unstripped bb
mv busybox_unstripped{.bak,}
fi
}
src_install() {
unset KBUILD_OUTPUT #88088
into /
newbin busybox_unstripped busybox || die
use static \
&& dosym busybox /bin/bb \
|| dobin bb
dosym bb /bin/busybox.static
# bundle up the symlink files for use later
emake install || die
rm _install/bin/busybox
tar cf busybox-links.tar -C _install . || : #;die
insinto /usr/share/${PN}
doins busybox-links.tar || die
newins .config ${PF}.config || die
dodoc AUTHORS README TODO
cd docs || die
docinto txt
dodoc *.txt
docinto pod
dodoc *.pod
dohtml *.html *.sgml
cd ../examples || die
docinto examples
dodoc inittab depmod.pl *.conf *.script undeb unrpm
cd bootfloppy || die
docinto bootfloppy
dodoc * etc/* etc/init.d/* 2>/dev/null
}
pkg_preinst() {
if use make-symlinks && [[ ! ${VERY_BRAVE_OR_VERY_DUMB} == "yes" ]] && [[ ${ROOT} == "/" ]] ; then
ewarn "setting USE=make-symlinks and emerging to / is very dangerous."
ewarn "it WILL overwrite lots of system programs like: ls bash awk grep (bug 60805 for full list)."
ewarn "If you are creating a binary only and not merging this is probably ok."
ewarn "set env VERY_BRAVE_OR_VERY_DUMB=yes if this is realy what you want."
die "silly options will destroy your system"
fi
if use make-symlinks ; then
mv "${D}"/usr/share/${PN}/busybox-links.tar "${T}"/ || die
fi
if use savedconfig ; then
mv "${D}"/usr/share/${PN}/${PF}.config "${T}"/ || die
fi
}
pkg_postinst() {
if use make-symlinks ; then
cd "${T}" || die
mkdir _install
tar xf busybox-links.tar -C _install || die
cp -vpPR _install/* "${ROOT}"/ || die "copying links for ${x} failed"
fi
if use savedconfig ; then
local config_dir="${PORTAGE_CONFIGROOT:-${ROOT}}/etc/portage/savedconfig"
einfo "Saving this build config to ${config_dir}/${PF}.config"
einfo "Read this ebuild for more info on how to take advantage of this option"
mkdir -p "${config_dir}"
cp "${T}"/${PF}.config "${config_dir}"/${PF}.config
return 0
fi
echo
einfo "This ebuild has support for user defined configs"
einfo "Please read this ebuild for more details and re-emerge as needed"
einfo "if you want to add or remove functionality for ${PN}"
echo
}
|