summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-devel/flex/flex-2.5.23.ebuild')
-rw-r--r--sys-devel/flex/flex-2.5.23.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/sys-devel/flex/flex-2.5.23.ebuild b/sys-devel/flex/flex-2.5.23.ebuild
deleted file mode 100644
index f0f2a99bf6c0..000000000000
--- a/sys-devel/flex/flex-2.5.23.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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.23.ebuild,v 1.15 2005/01/20 08:25:23 eradicator Exp $
-
-DESCRIPTION="GNU lexical analyser generator"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-HOMEPAGE="http://lex.sourceforge.net/"
-
-SLOT="0"
-LICENSE="FLEX"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha"
-IUSE="build nls static"
-
-DEPEND="virtual/libc
- nls? ( sys-devel/gettext )"
-
-
-src_compile() {
- myconf=""
-
- use nls || myconf="--disable-nls"
-
- econf ${myconf} || die
-
- if ! use static
- then
- emake || make || die
- else
- emake LDFLAGS=-static || die
- fi
-}
-
-src_install() {
- einstall || die
-
- if ! 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
-}