blob: 3670bceb98eb68f365d39254019381188c52546a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/sh-utils/sh-utils-2.0.11-r4.ebuild,v 1.2 2002/04/07 03:14:29 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Your standard GNU shell utilities"
SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${P}.tar.gz"
DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
#
# patch to remove Stallman's su/wheel group rant and to add processor
# information in uname output
patch -p0 < ${FILESDIR}/${P}-gentoo.diff
rm doc/sh-utils.info
#This next line prevents our patched (and updated-mtime) uname.c from forcing a
#uname.1 man page regeneration, which requires perl (not available when creating
#a new build image... and we don't want this package dependent on perl anyway.
#This problem can be fixed by fixing our patch at a future date.
touch -d "20 Aug 1999" src/uname.c
}
src_compile() {
local myconf
use nls || myconf="--disable-nls"
CFLAGS="${CFLAGS}" ./configure --host=${CHOST} --build=${CHOST} \
--prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
--without-included-regex ${myconf} || die
if [ -z "`use static`" ]
then
emake || die
else
emake LDFLAGS=-static || die
fi
}
src_install() {
make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die
rm -rf ${D}/usr/lib
dodir /bin
cd ${D}/usr/bin
mv date echo false pwd stty su true uname sleep ${D}/bin
if [ -z "`use build`" ]
then
# We must use hostname from net-base
rm ${D}/usr/bin/hostname
cd ${S}
dodoc AUTHORS COPYING ChangeLog ChangeLog.0 NEWS README THANKS TODO
else
rm -rf ${D}/usr/share
fi
#we use the /bin/su from the sys-apps/shadow package
rm ${D}/bin/su
rm ${D}/usr/share/man/man1/su.1.gz
#we use the /usr/bin/uptime from the sys-apps/procps package
rm ${D}/usr/bin/uptime
rm ${D}/usr/share/man/man1/uptime.1.gz
}
|