diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-07 16:05:19 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-07 16:05:19 +0000 |
commit | 8c2f9b5d58d2c8ba17ecd94571dc41b82919228f (patch) | |
tree | e3f2ab2acadd83ad2269d388593e02ee4a4107e3 /sys-devel/flex | |
parent | Maintainence and FHS 2.1 fixes for RC4 (diff) | |
download | gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.tar.gz gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.tar.bz2 gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.zip |
Maintainence and FHS 2.1 fixes for RC4
Diffstat (limited to 'sys-devel/flex')
-rw-r--r-- | sys-devel/flex/flex-2.5.4a-r2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-devel/flex/flex-2.5.4a-r2.ebuild b/sys-devel/flex/flex-2.5.4a-r2.ebuild new file mode 100644 index 000000000000..ebf35f43a280 --- /dev/null +++ b/sys-devel/flex/flex-2.5.4a-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.4a-r2.ebuild,v 1.1 2001/02/07 16:05:19 achim Exp $ + +P=flex-2.5.4a +A=${P}.tar.gz +S=${WORKDIR}/flex-2.5.4 +DESCRIPTION="GNU lexical analyser generator" +SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/non-gnu/flex/${A} + ftp://prep.ai.mit.edu/non-gnu/flex/${A}" +HOMEPAGE="http://www.gnu.org/software/flex/flex.html" + + +DEPEND="virtual/glibc" + + +src_compile() { + + try ./configure --prefix=/usr --host=${CHOST} + try make ${MAKEOPTS} + +} + +src_install() { + + try make prefix=${D}/usr mandir=${D}/usr/share/man/man1 install + dodoc COPYING NEWS README + +} + + |