diff options
author | Lisa M. Seelye <lisa@gentoo.org> | 2004-07-10 19:25:29 +0000 |
---|---|---|
committer | Lisa M. Seelye <lisa@gentoo.org> | 2004-07-10 19:25:29 +0000 |
commit | 37b60a6d3875ed5fad9ce543761cc270aa74ac3e (patch) | |
tree | 21db0bd7447c0ee187b472fb5f2ec428178fdf4a /dev-util/re2c/re2c-0.9.3.ebuild | |
parent | version bump for bug #54427 (diff) | |
download | historical-37b60a6d3875ed5fad9ce543761cc270aa74ac3e.tar.gz historical-37b60a6d3875ed5fad9ce543761cc270aa74ac3e.tar.bz2 historical-37b60a6d3875ed5fad9ce543761cc270aa74ac3e.zip |
version bump. please test with >sys-devel/gcc-3.3.2 - see bug #43449 for details. closes bug #54735.
Diffstat (limited to 'dev-util/re2c/re2c-0.9.3.ebuild')
-rw-r--r-- | dev-util/re2c/re2c-0.9.3.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-util/re2c/re2c-0.9.3.ebuild b/dev-util/re2c/re2c-0.9.3.ebuild new file mode 100644 index 000000000000..c9625130479f --- /dev/null +++ b/dev-util/re2c/re2c-0.9.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.9.3.ebuild,v 1.1 2004/07/10 19:25:29 lisa Exp $ + +inherit eutils + +DESCRIPTION="re2c is a tool for generating C-based recognizers from regular expressions." +HOMEPAGE="http://re2c.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=dev-util/byacc-1.9" + +src_unpack() { + unpack ${A} || die + # Fix permissions + chmod -R u+rw ${S} +} + +src_compile() { + # This gets our C(XX)FLAGS in + export EXTRA_EMAKE="-e" + econf || die + emake || die +} + +src_install() { + dobin re2c || die "dobin failed" + doman re2c.1 + dodoc EADME doc/* +} |