blob: 473cc92e40fd01a6ffe373d11639b2d1a8f437ae (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.9.ebuild,v 1.9 2004/06/24 22:25:50 agriffis Exp $
inherit gnuconfig
DESCRIPTION="Super-useful stream editor"
HOMEPAGE="http://www.gnu.org/software/sed/sed.html"
SRC_URI="mirror://gnu/sed/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips alpha arm ~hppa amd64 ~ia64 s390"
IUSE="nls static build"
DEPEND="virtual/glibc
nls? ( sys-devel/gettext )"
src_compile() {
# Allow sed to detect mips systems properly
use mips && gnuconfig_update
econf `use_enable nls` || die "Configure failed"
if use static ; then
emake LDFLAGS=-static || die "Static build failed"
else
emake || die "Shared build failed"
fi
}
src_install() {
into /
dobin sed/sed
if ! use build
then
einstall || die "Install failed"
dodoc COPYING NEWS README* THANKS AUTHORS BUGS ChangeLog
docinto examples
dodoc ${FILESDIR}/dos2unix ${FILESDIR}/unix2dos
else
dodir /usr/bin
fi
rm -f ${D}/usr/bin/sed
dosym ../../bin/sed /usr/bin/sed
}
|