blob: 8799af941e2e7dd9f5886e135eba1ae39eae5997 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.4a-r6.ebuild,v 1.2 2005/02/15 06:21:40 kito Exp $
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="GNU lexical analyser generator"
HOMEPAGE="http://lex.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tar.gz
http://dev.gentoo.org/~vapier/dist/${P}-autoconf.patch.bz2
mirror://gentoo/${P}-autoconf.patch.bz2"
LICENSE="FLEX"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-macos"
IUSE="build static"
RDEPEND="virtual/libc"
S=${WORKDIR}/${P/a/}
src_unpack() {
unpack ${A}
cd ${S}
# Some Redhat patches to fix various problems
epatch ${FILESDIR}/flex-2.5.4-glibc22.patch
epatch ${FILESDIR}/flex-2.5.4a-gcc3.patch
epatch ${FILESDIR}/flex-2.5.4a-gcc31.patch
epatch ${FILESDIR}/flex-2.5.4a-skel.patch
# included autotools are crusty, lets polish em up
epatch ${WORKDIR}/${P}-autoconf.patch
}
src_compile() {
tc-export AR CC RANLIB
use static && append-ldflags -static
econf || die "econf failed"
emake -j1 .bootstrap || die "emake bootstrap failed"
emake || die "emake failed"
}
src_test() {
make bigcheck || die "Test phase failed"
}
src_install() {
make install DESTDIR="${D}" || die "make install failed"
if use build ; then
rm -r "${D}"/usr/{include,lib,share}
else
dodoc NEWS README
fi
dosym flex /usr/bin/lex
}
|