blob: 7c42dd543ec2347d0629fde9963edcd8729b99d5 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.0-r3.ebuild,v 1.5 2002/10/19 01:52:44 vapier Exp $
IUSE="nls build"
S=${WORKDIR}/${P}
DESCRIPTION="GNU awk pattern-matching language"
SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/gawk/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/gawk/gawk.html"
KEYWORDS="x86 ppc sparc sparc64"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc
nls? ( sys-devel/gettext )"
src_compile() {
local myconf=""
use nls || myconf="${myconf} --disable-nls"
./configure --prefix=/usr \
--libexecdir=/usr/lib/awk \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--host=${CHOST} \
${myconf} || die
emake || die
}
src_install() {
make prefix=${D}/usr \
bindir=${D}/bin \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
libexecdir=${D}/usr/lib/awk \
install || die
cd ${D}/bin
rm -f gawk
ln -s gawk-${PV} gawk
#compat symlink
dodir /usr/bin
cd ${D}/usr/bin
ln -s /bin/gawk-${PV} awk
ln -s /bin/gawk-${PV} gawk
cd ${S}
if [ -z "`use build`" ]
then
dosym gawk.1.gz /usr/share/man/man1/awk.1.gz
dodoc ChangeLog ACKNOWLEDGMENT COPYING FUTURES
dodoc LIMITATIONS NEWS PROBLEMS README
docinto README_d
dodoc README_d/*
docinto atari
dodoc atari/ChangeLog atari/README.1st
docinto awklib
dodoc awklib/ChangeLog
docinto pc
dodoc pc/ChangeLog
docinto posix
dodoc posix/ChangeLog
else
rm -rf ${D}/usr/share
fi
}
|