blob: 8fc117c802ee859db6120d795ca3181fbf14ed31 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/supersed/supersed-3.58-r2.ebuild,v 1.11 2003/09/07 00:57:02 msterret Exp $
IUSE="nls static build"
MY_P=sed-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="An enhanced version of sed which sports greater speed and the use of perl regular expressions than GNU sed."
SRC_URI="http://queen.rett.polimi.it/~paolob/seders/ssed/${MY_P}.tar.gz"
HOMEPAGE="http://queen.rett.polimi.it/~paolob/seders/ssed/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ppc sparc alpha"
DEPEND="dev-libs/libpcre
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}/doc
mv sed-in.texi sed-in.texi.orig
sed -e "s:sed:ssed:g" \
-e "s:sss:ss:g" \
sed-in.texi.orig > sed-in.texi
rm *.info*
}
src_compile() {
local myconf
use nls || myconf="--disable-nls"
use static \
&& myconf="${myconf} --disable-html" \
|| myconf="${myconf} --enable-html"
if [ -f /bin/sed ]
then
echo "simple conf"
econf ${myconf} || die
else
echo "bootstrap"
./bootstrap.sh
econf ${myconf} || die
fi
rm -f ${S}/doc/sed.info*
if [ -z "`use static`" ]
then
emake || die
else
emake LDFLAGS=-static || die
fi
}
src_install() {
# choose any name, but sed for now. If supersed is chosen to replace
# good ol' sed, that will work too.
newname="ssed"
into /
newbin sed/sed ${newname}
dodir /usr/bin
dosym ../../bin/${newname} /usr/bin/${newname}
if [ -z "`use build`" ]
then
localsed="${D}/bin/${newname}"
cd doc
# this could be more elaborate, but for little point (the infos will
# still refer to 'sed') This hack just makes the info work at all.
doinfo ${newname}.info*
dodir /usr/share/man/man1
dosym sed.1.gz /usr/share/man/man1/ssed.1.gz
cd ${S}
dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS
fi
}
|