From e3132c6c4534d01bbbd64aa0bca9e15bbc008884 Mon Sep 17 00:00:00 2001 From: Martin Holzer Date: Thu, 17 Apr 2003 22:53:41 +0000 Subject: Version bumped. Changed SRC_URI to gentoo mirror --- sys-devel/flex/flex-2.5.31.ebuild | 45 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 sys-devel/flex/flex-2.5.31.ebuild (limited to 'sys-devel/flex/flex-2.5.31.ebuild') diff --git a/sys-devel/flex/flex-2.5.31.ebuild b/sys-devel/flex/flex-2.5.31.ebuild new file mode 100644 index 000000000000..1914a72ba3fb --- /dev/null +++ b/sys-devel/flex/flex-2.5.31.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.31.ebuild,v 1.1 2003/04/17 22:53:29 mholzer Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="GNU lexical analyser generator" +SRC_URI="mirror://sourceforge/lex/${P}.tar.bz2" +HOMEPAGE="http://www.gnu.org/software/flex/flex.html" + +SLOT="0" +LICENSE="FLEX" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" + +DEPEND="virtual/glibc + nls? ( sys-devel/gettext )" + + +src_compile() { + myconf="" + + use nls || myconf="--disable-nls" + + econf ${myconf} || die + + if [ -z "`use static`" ] + then + emake || make || die + else + emake LDFLAGS=-static || die + fi +} + +src_install() { + einstall || die + + if [ -z "`use build`" ] + then + dodoc AUTHORS COPYING ChangeLog NEWS ONEWS README* RoadMap THANKS TODO + else + rm -rf ${D}/usr/share ${D}/usr/include ${D}/usr/lib + fi + + dosym flex /usr/bin/lex +} + -- cgit v1.2.3-65-gdbad