blob: 023f82a50c933adc49bc306002673306173d75fe (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4.ebuild,v 1.16 2004/07/15 03:34:18 agriffis Exp $
IUSE="bootstrap nls"
inherit eutils gnuconfig
S="${WORKDIR}/${PN}-1.4"
DESCRIPTION="GNU macro processor"
SRC_URI="ftp://ftp.seindal.dk/gnu/${PN}-1.4.tar.gz
mirror://gentoo/m4_1.4-15.diff.gz"
HOMEPAGE="http://www.gnu.org/software/m4/m4.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ppc sparc alpha mips hppa ia64"
DEPEND="virtual/libc
!bootstrap? ( >=sys-devel/libtool-1.3.5-r2 )
nls? ( sys-devel/gettext )"
RDEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${DISTDIR}/${PN}_1.4-15.diff.gz
gnuconfig_update
}
src_compile() {
local myconf=
use nls || myconf="--disable-nls"
./configure --host=${CHOST} \
--prefix=/usr \
--enable-changeword \
${myconf} || die
emake || 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 BACKLOG ChangeLog COPYING NEWS README* THANKS TODO
}
|