blob: 283d168b5a662e7da98efeb9b2fb34c8b90d501b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4p-r1.ebuild,v 1.7 2003/09/05 02:03:56 msterret Exp $
inherit gnuconfig
IUSE="nls"
MY_P="${P/p/ppre2}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="GNU macro processor"
SRC_URI="ftp://ftp.seindal.dk/gnu/${MY_P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/m4/m4.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa arm"
DEPEND="virtual/glibc
dev-lang/perl
nls? ( sys-devel/gettext )
>=sys-devel/libtool-1.3.5-r2"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cp ${S}/tests/mkconfig.sh ${S}/tests/mkconfig.sh.orig
sed '2s:^:#:' < ${S}/tests/mkconfig.sh.orig > ${S}/tests/mkconfig.sh
use alpha && gnuconfig_update
}
src_compile() {
local myconf=
use nls || myconf="--disable-nls"
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-modules \
--host=${CHOST} \
${myconf} || die
make ${MAKEOPTS} || die
}
src_install() {
make prefix=${D}/usr \
libexecdir=${D}/usr/lib \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
# rm -rf ${D}/usr/include
dodoc AUTHORS BACKLOG ChangeLog COPYING NEWS README* THANKS TODO
docinto modules
dodoc modules/README modules/TODO
docinto html
dohtml examples/WWW/*.htm
# mkconfig.sh creates this file in other revisions...
# It shouldn't be there, so we delete it.
rm -f /tmp/env
}
|