summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-06-07 03:02:59 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-06-07 03:02:59 +0000
commitf51c3e25611b7fc23208be83de8edf6b936c51a0 (patch)
treef477af695caab98198df7aa3d6a0329388aedffe /dev-util
parentPer bug #224505, we need to check FEATURES in src_install, as ASLTDIR will no... (diff)
downloadgentoo-2-f51c3e25611b7fc23208be83de8edf6b936c51a0.tar.gz
gentoo-2-f51c3e25611b7fc23208be83de8edf6b936c51a0.tar.bz2
gentoo-2-f51c3e25611b7fc23208be83de8edf6b936c51a0.zip
Remove old ebuilds to make bug #221535 happy.
(Portage version: 2.1.5.4)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/re2c/ChangeLog9
-rw-r--r--dev-util/re2c/files/0.9.1-patch221
-rw-r--r--dev-util/re2c/re2c-0.10.2.ebuild41
-rw-r--r--dev-util/re2c/re2c-0.10.4.ebuild41
-rw-r--r--dev-util/re2c/re2c-0.11.0.ebuild40
-rw-r--r--dev-util/re2c/re2c-0.11.3.ebuild40
-rw-r--r--dev-util/re2c/re2c-0.9.1.ebuild34
-rw-r--r--dev-util/re2c/re2c-0.9.10.ebuild37
-rw-r--r--dev-util/re2c/re2c-0.9.11.ebuild41
-rw-r--r--dev-util/re2c/re2c-0.9.11_rc1.ebuild40
-rw-r--r--dev-util/re2c/re2c-0.9.3.ebuild33
-rw-r--r--dev-util/re2c/re2c-0.9.7.ebuild33
-rw-r--r--dev-util/re2c/re2c-0.9.8.ebuild33
-rw-r--r--dev-util/re2c/re2c-0.9.9.ebuild37
14 files changed, 8 insertions, 672 deletions
diff --git a/dev-util/re2c/ChangeLog b/dev-util/re2c/ChangeLog
index 53f9e6644aa1..6133d4aa6bb8 100644
--- a/dev-util/re2c/ChangeLog
+++ b/dev-util/re2c/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for dev-util/re2c
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v 1.47 2008/02/19 02:56:54 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v 1.48 2008/06/07 03:02:59 robbat2 Exp $
+
+ 07 Jun 2008; Robin H. Johnson <robbat2@gentoo.org> -files/0.9.1-patch,
+ -re2c-0.9.1.ebuild, -re2c-0.9.3.ebuild, -re2c-0.9.10.ebuild,
+ -re2c-0.9.7.ebuild, -re2c-0.9.8.ebuild, -re2c-0.9.9.ebuild,
+ -re2c-0.9.11_rc1.ebuild, -re2c-0.9.11.ebuild, -re2c-0.10.2.ebuild,
+ -re2c-0.10.4.ebuild, -re2c-0.11.0.ebuild, -re2c-0.11.3.ebuild:
+ Remove old ebuilds to make bug #221535 happy.
*re2c-0.13.2 (19 Feb 2008)
diff --git a/dev-util/re2c/files/0.9.1-patch b/dev-util/re2c/files/0.9.1-patch
deleted file mode 100644
index 71ae21a31943..000000000000
--- a/dev-util/re2c/files/0.9.1-patch
+++ /dev/null
@@ -1,221 +0,0 @@
-diff -rNd -U 7 re2c-0.9.1-orig/Makefile re2c-0.9.1/Makefile
---- re2c-0.9.1-orig/Makefile 2003-06-03 10:54:04.000000000 -0700
-+++ re2c-0.9.1/Makefile 2003-06-03 10:56:13.000000000 -0700
-@@ -1,19 +1,19 @@
- # $Log: 0.9.1-patch,v $
- # Revision 1.1 2006/01/30 13:22:24 blubb
- # no need to gzip smallish patches
- # (Portage version: 2.1_pre3-r1)
- #
- #Revision 1.1 1994/04/08 16:30:37 peter
- #Initial revision
- #
-
--BIN = /usr/local/bin
--MAN = /usr/local/man
-+BIN = /usr/bin
-+MAN = /usr/share/man
-
--%.o : %.cc ; $(CC) -o $@ $(CFLAGS) -c $<
-+%.o : %.cc ; $(CXX) -o $@ $(CXXFLAGS) -c $<
-+%.o : %.c ; $(CC) -o $@ $(CFLAGS) -c $<
- %.cc : %.y ; $(YACC) $(YFLAGS) $<; mv $(YTAB).c $@
- %.cc : %.l ; $(LEX) $(LFLAGS) $<; mv $(LEXYY).c $@
--
- %.cc: %.re
- re2c -s $< >$@
-
- SOURCES = code.cc dfa.cc main.cc parser.y actions.cc scanner.re substr.cc\
- translate.cc
- OBJS = code.o dfa.o main.o parser.o actions.o scanner.o substr.o\
- translate.o
-diff -rNd -U 7 re2c-0.9.1-orig/scanner.cc re2c-0.9.1/scanner.cc
---- re2c-0.9.1-orig/scanner.cc 2003-06-03 10:54:04.000000000 -0700
-+++ re2c-0.9.1/scanner.cc 2003-06-03 10:54:21.000000000 -0700
-@@ -8,42 +8,42 @@
- #include "parser.h"
- #include "y.tab.h"
-
- extern YYSTYPE yylval;
-
- #define BSIZE 8192
-
--#define YYCTYPE uchar
-+#define YYCTYPE char
- #define YYCURSOR cursor
- #define YYLIMIT lim
- #define YYMARKER ptr
- #define YYFILL(n) {cursor = fill(cursor);}
-
- #define RETURN(i) {cur = cursor; return i;}
-
-
- Scanner::Scanner(int i) : in(i),
- bot(NULL), tok(NULL), ptr(NULL), cur(NULL), pos(NULL), lim(NULL),
- top(NULL), eof(NULL), tchar(0), tline(0), cline(1) {
- ;
- }
-
--uchar *Scanner::fill(uchar *cursor){
-+char *Scanner::fill(char *cursor){
- if(!eof){
- uint cnt = tok - bot;
- if(cnt){
- memcpy(bot, tok, lim - tok);
- tok = bot;
- ptr -= cnt;
- cursor -= cnt;
- pos -= cnt;
- lim -= cnt;
- }
- if((top - lim) < BSIZE){
-- uchar *buf = new uchar[(lim - bot) + BSIZE];
-+ char *buf = new char[(lim - bot) + BSIZE];
- memcpy(buf, tok, lim - tok);
- tok = buf;
- ptr = &buf[ptr - bot];
- cursor = &buf[cursor - bot];
- pos = &buf[pos - bot];
- lim = &buf[lim - bot];
- top = &lim[BSIZE];
-@@ -58,15 +58,15 @@
- return cursor;
- }
-
- #line 68
-
-
- int Scanner::echo(ostream &out){
-- uchar *cursor = cur;
-+ char *cursor = cur;
- tok = cursor;
- echo:
- {
- YYCTYPE yych;
- unsigned int yyaccept;
- goto yy0;
- yy1: ++YYCURSOR;
-@@ -113,15 +113,15 @@
- }
- #line 83
-
- }
-
-
- int Scanner::scan(){
-- uchar *cursor = cur;
-+ char *cursor = cur;
- uint depth;
-
- scan:
- tchar = cursor - pos;
- tline = cline;
- tok = cursor;
- {
-diff -rNd -U 7 re2c-0.9.1-orig/scanner.h re2c-0.9.1/scanner.h
---- re2c-0.9.1-orig/scanner.h 2003-06-03 10:54:04.000000000 -0700
-+++ re2c-0.9.1/scanner.h 2003-06-03 10:54:22.000000000 -0700
-@@ -2,18 +2,18 @@
- #define _scanner_h
-
- #include "token.h"
-
- class Scanner {
- private:
- int in;
-- uchar *bot, *tok, *ptr, *cur, *pos, *lim, *top, *eof;
-+ char *bot, *tok, *ptr, *cur, *pos, *lim, *top, *eof;
- uint tchar, tline, cline;
- private:
-- uchar *fill(uchar*);
-+ char *fill(char*);
- public:
- Scanner(int);
- int echo(ostream&);
- int scan();
- void fatal(char*);
- SubStr token();
- uint line();
-diff -rNd -U 7 re2c-0.9.1-orig/scanner.re re2c-0.9.1/scanner.re
---- re2c-0.9.1-orig/scanner.re 2003-06-03 10:54:04.000000000 -0700
-+++ re2c-0.9.1/scanner.re 2003-06-03 10:54:23.000000000 -0700
-@@ -6,42 +6,42 @@
- #include "parser.h"
- #include "y.tab.h"
-
- extern YYSTYPE yylval;
-
- #define BSIZE 8192
-
--#define YYCTYPE uchar
-+#define YYCTYPE char
- #define YYCURSOR cursor
- #define YYLIMIT lim
- #define YYMARKER ptr
- #define YYFILL(n) {cursor = fill(cursor);}
-
- #define RETURN(i) {cur = cursor; return i;}
-
-
- Scanner::Scanner(int i) : in(i),
- bot(NULL), tok(NULL), ptr(NULL), cur(NULL), pos(NULL), lim(NULL),
- top(NULL), eof(NULL), tchar(0), tline(0), cline(1) {
- ;
- }
-
--uchar *Scanner::fill(uchar *cursor){
-+char *Scanner::fill(char *cursor){
- if(!eof){
- uint cnt = tok - bot;
- if(cnt){
- memcpy(bot, tok, lim - tok);
- tok = bot;
- ptr -= cnt;
- cursor -= cnt;
- pos -= cnt;
- lim -= cnt;
- }
- if((top - lim) < BSIZE){
-- uchar *buf = new uchar[(lim - bot) + BSIZE];
-+ char *buf = new char[(lim - bot) + BSIZE];
- memcpy(buf, tok, lim - tok);
- tok = buf;
- ptr = &buf[ptr - bot];
- cursor = &buf[cursor - bot];
- pos = &buf[pos - bot];
- lim = &buf[lim - bot];
- top = &lim[BSIZE];
-@@ -64,15 +64,15 @@
- dstring = "\"" ((esc \ ["] ) | "\\" dot)* "\"";
- sstring = "'" ((esc \ ['] ) | "\\" dot)* "'" ;
- letter = [a-zA-Z];
- digit = [0-9];
- */
-
- int Scanner::echo(ostream &out){
-- uchar *cursor = cur;
-+ char *cursor = cur;
- tok = cursor;
- echo:
- /*!re2c
- "/*!re2c" { out.write(tok, &cursor[-7] - tok);
- tok = cursor;
- RETURN(1); }
- "\n" { if(cursor == eof) RETURN(0);
-@@ -81,15 +81,15 @@
- goto echo; }
- any { goto echo; }
- */
- }
-
-
- int Scanner::scan(){
-- uchar *cursor = cur;
-+ char *cursor = cur;
- uint depth;
-
- scan:
- tchar = cursor - pos;
- tline = cline;
- tok = cursor;
- /*!re2c
diff --git a/dev-util/re2c/re2c-0.10.2.ebuild b/dev-util/re2c/re2c-0.10.2.ebuild
deleted file mode 100644
index 98170dd4cdee..000000000000
--- a/dev-util/re2c/re2c-0.10.2.ebuild
+++ /dev/null
@@ -1,41 +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.10.2.ebuild,v 1.1 2006/05/11 07:30:46 robbat2 Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://re2c.sourceforge.net/"
-MY_PV="${PV/_/.}"
-MY_P="${PN}-${MY_PV}"
-SRC_URI="mirror://sourceforge/${PN}/${MY_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}"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
- EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-0.9.11-gcc41.patch
-}
-
-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"
-}
diff --git a/dev-util/re2c/re2c-0.10.4.ebuild b/dev-util/re2c/re2c-0.10.4.ebuild
deleted file mode 100644
index 6b0bd4ce9016..000000000000
--- a/dev-util/re2c/re2c-0.10.4.ebuild
+++ /dev/null
@@ -1,41 +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.10.4.ebuild,v 1.6 2006/08/10 11:20:05 nigoro Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://re2c.sourceforge.net/"
-MY_PV="${PV/_/.}"
-MY_P="${PN}-${MY_PV}"
-SRC_URI="mirror://sourceforge/${PN}/${MY_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}"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
- EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-0.9.11-gcc41.patch
-}
-
-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"
-}
diff --git a/dev-util/re2c/re2c-0.11.0.ebuild b/dev-util/re2c/re2c-0.11.0.ebuild
deleted file mode 100644
index 41ce29bc4687..000000000000
--- a/dev-util/re2c/re2c-0.11.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.11.0.ebuild,v 1.1 2007/02/17 12:07:56 lisa Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://re2c.sourceforge.net/"
-MY_PV="${PV/_/.}"
-MY_P="${PN}-${MY_PV}"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="virtual/libc"
-DEPEND="${RDEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
- EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-0.9.11-gcc41.patch
-}
-
-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"
-}
diff --git a/dev-util/re2c/re2c-0.11.3.ebuild b/dev-util/re2c/re2c-0.11.3.ebuild
deleted file mode 100644
index 446ba6049086..000000000000
--- a/dev-util/re2c/re2c-0.11.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.11.3.ebuild,v 1.2 2007/05/05 12:01:31 jer Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://re2c.sourceforge.net/"
-MY_PV="${PV/_/.}"
-MY_P="${PN}-${MY_PV}"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="virtual/libc"
-DEPEND="${RDEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
- EPATCH_OPTS="-p1 -d ${S}" epatch "${FILESDIR}"/${PN}-0.9.11-gcc41.patch
-}
-
-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"
-}
diff --git a/dev-util/re2c/re2c-0.9.1.ebuild b/dev-util/re2c/re2c-0.9.1.ebuild
deleted file mode 100644
index 4053eafd9349..000000000000
--- a/dev-util/re2c/re2c-0.9.1.ebuild
+++ /dev/null
@@ -1,34 +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.1.ebuild,v 1.7 2006/01/30 13:22:24 blubb Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://www.tildeslash.org/re2c/"
-SRC_URI="http://www.tildeslash.org/re2c/${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-DEPEND=">=dev-util/byacc-1.9
- !>=sys-devel/gcc-3.3.2"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
- epatch ${FILESDIR}/${PV}-patch
-}
-
-src_compile() {
- emake -e || die
-}
-
-src_install() {
- dobin re2c || die "dobin failed"
- doman re2c.1
- dodoc CHANGELOG NO_WARRANTY README doc/*
-}
diff --git a/dev-util/re2c/re2c-0.9.10.ebuild b/dev-util/re2c/re2c-0.9.10.ebuild
deleted file mode 100644
index 1074148dcae5..000000000000
--- a/dev-util/re2c/re2c-0.9.10.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.9.10.ebuild,v 1.2 2005/11/26 17:45:33 tgall 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="~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"
-}
diff --git a/dev-util/re2c/re2c-0.9.11.ebuild b/dev-util/re2c/re2c-0.9.11.ebuild
deleted file mode 100644
index 742eaaa2f941..000000000000
--- a/dev-util/re2c/re2c-0.9.11.ebuild
+++ /dev/null
@@ -1,41 +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.11.ebuild,v 1.3 2006/05/09 16:32:14 squinky86 Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://re2c.sourceforge.net/"
-MY_PV="${PV/_/.}"
-MY_P="${PN}-${MY_PV}"
-SRC_URI="mirror://sourceforge/${PN}/${MY_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}"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A} || die
- # Fix permissions
- chmod -R u+rw ${S}
- epatch "${FILESDIR}"/${P}-gcc41.patch
-}
-
-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"
-}
diff --git a/dev-util/re2c/re2c-0.9.11_rc1.ebuild b/dev-util/re2c/re2c-0.9.11_rc1.ebuild
deleted file mode 100644
index cb63da934c05..000000000000
--- a/dev-util/re2c/re2c-0.9.11_rc1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.9.11_rc1.ebuild,v 1.1 2005/12/12 05:05:04 robbat2 Exp $
-
-inherit eutils
-
-DESCRIPTION="tool for generating C-based recognizers from regular expressions"
-HOMEPAGE="http://re2c.sourceforge.net/"
-MY_PV="${PV/_/.}"
-MY_P="${PN}-${MY_PV}"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="virtual/libc"
-DEPEND="|| ( >=dev-util/byacc-1.9 >=sys-devel/bison-2.0 )
- ${RDEPEND}"
-S="${WORKDIR}/${MY_P}"
-
-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"
-}
diff --git a/dev-util/re2c/re2c-0.9.3.ebuild b/dev-util/re2c/re2c-0.9.3.ebuild
deleted file mode 100644
index 95a863d56b61..000000000000
--- a/dev-util/re2c/re2c-0.9.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2005 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.4 2005/07/03 18:30:42 robbat2 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="~ppc x86"
-IUSE=""
-
-DEPEND=">=dev-util/byacc-1.9"
-
-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
- dodoc README doc/*
-}
diff --git a/dev-util/re2c/re2c-0.9.7.ebuild b/dev-util/re2c/re2c-0.9.7.ebuild
deleted file mode 100644
index f71311d514b5..000000000000
--- a/dev-util/re2c/re2c-0.9.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.9.7.ebuild,v 1.1 2005/07/03 18:30:42 robbat2 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="~ppc ~x86"
-IUSE=""
-
-DEPEND=">=dev-util/byacc-1.9"
-
-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
- dodoc README doc/*
-}
diff --git a/dev-util/re2c/re2c-0.9.8.ebuild b/dev-util/re2c/re2c-0.9.8.ebuild
deleted file mode 100644
index 20a8da844fc2..000000000000
--- a/dev-util/re2c/re2c-0.9.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.9.8.ebuild,v 1.1 2005/07/19 21:43:41 robbat2 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="~ppc ~x86"
-IUSE=""
-
-DEPEND=">=dev-util/byacc-1.9"
-
-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
- dodoc README doc/*
-}
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"
-}