blob: 0712f70296145bb5850fdeff74da057dbe2e9627 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-0.50.ebuild,v 1.2 2001/05/09 02:59:45 achim Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Utilities for rescue and embedded systems"
SRC_URI="ftp://oss.lineo.com/busybox/${A}"
HOMEPAGE="http://busybox.lineo.com/"
src_unpack() {
unpack ${A}
cp ${FILESDIR}/Config.h ${S}/Config.h
}
src_compile() {
export OPT="`echo $CFLAGS|sed 's:.*\(-O.\).*:\1:'`"
export CFLAGS_EXTRA=${CFLAGS/-O?/}
unset CFLAGS
echo $CFLAGS_EXTRA $OPT
try make CFLAGS_EXTRA=\"${CFLAGS_EXTRA}\" OPTIMIZATION=$OPT
}
src_install () {
into /
dobin busybox
into /usr
dodoc AUTHORS Changelog LICENSE README TODO
cd docs
doman *.1
docinto txt
dodoc *.txt
docinto sgml
dodoc *.sgml
docinto pod
dodoc *.pod
cd busybox.lineo.com
docinto html
dodoc *.html
docinto html/images
dodoc images/*
}
|