summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/re2c/re2c-0.9.9.ebuild')
-rw-r--r--dev-util/re2c/re2c-0.9.9.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-util/re2c/re2c-0.9.9.ebuild b/dev-util/re2c/re2c-0.9.9.ebuild
deleted file mode 100644
index c4b9f5567ebb..000000000000
--- a/dev-util/re2c/re2c-0.9.9.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.9.9.ebuild,v 1.9 2006/01/21 23:13:53 weeve Exp $
-
-inherit eutils
-
-DESCRIPTION="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="amd64 ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND="virtual/libc"
-DEPEND="|| ( >=dev-util/byacc-1.9 >=sys-devel/bison-2.0 )
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
-}
-
-src_compile() {
- econf || die
- emake -e || die
-}
-
-src_install() {
- dobin re2c || die "dobin failed"
- doman re2c.1 || die "doman failed"
- dodoc README CHANGELOG doc/* && \
- docinto examples && \
- dodoc examples/*.c examples/*.re || die "docs failed"
-}