# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.23.ebuild,v 1.6 2003/03/25 21:00:31 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="GNU lexical analyser generator" SRC_URI="http://unc.dl.sourceforge.net/sourceforge/lex/${P}.tar.bz2" HOMEPAGE="http://lex.sourceforge.net/" 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 }