diff options
Diffstat (limited to 'dev-lang/tinycobol')
-rw-r--r-- | dev-lang/tinycobol/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lang/tinycobol/files/tinycobol-0.63.patch | 15 | ||||
-rw-r--r-- | dev-lang/tinycobol/tinycobol-0.63.ebuild | 44 |
3 files changed, 6 insertions, 61 deletions
diff --git a/dev-lang/tinycobol/ChangeLog b/dev-lang/tinycobol/ChangeLog index 6ae0903be9fe..4d1d06341d03 100644 --- a/dev-lang/tinycobol/ChangeLog +++ b/dev-lang/tinycobol/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/tinycobol -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/ChangeLog,v 1.13 2008/12/08 22:54:43 phosphan Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/ChangeLog,v 1.14 2009/07/17 17:29:17 phosphan Exp $ + + 17 Jul 2009; Patrick Kursawe <phosphan@gentoo.org> + -files/tinycobol-0.63.patch, -tinycobol-0.63.ebuild: + Removed obsolete version. *tinycobol-0.64 (08 Dec 2008) diff --git a/dev-lang/tinycobol/files/tinycobol-0.63.patch b/dev-lang/tinycobol/files/tinycobol-0.63.patch deleted file mode 100644 index c7e6d7d05eb4..000000000000 --- a/dev-lang/tinycobol/files/tinycobol-0.63.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- compiler/scan.l 2005-07-21 14:57:46.000000000 +0200 -+++ compiler/scan.l.new 2007-02-26 13:41:01.000000000 +0100 -@@ -58,7 +58,12 @@ - the token returned by the real lexer (yylex2) - */ - int prev_token=0; -+#ifdef YY_USE_PROTOS - #define YY_DECL int yylex2 YY_PROTO((void)) -+#else -+#define YY_PROTO(proto) (void) -+#define YY_DECL int yylex2(void) -+#endif - %} - - AnyNoDQuote [^"\t\n] diff --git a/dev-lang/tinycobol/tinycobol-0.63.ebuild b/dev-lang/tinycobol/tinycobol-0.63.ebuild deleted file mode 100644 index eefb455e5b25..000000000000 --- a/dev-lang/tinycobol/tinycobol-0.63.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tinycobol/tinycobol-0.63.ebuild,v 1.2 2008/12/08 22:54:43 phosphan Exp $ - -inherit eutils - -DESCRIPTION="COBOL for linux" -HOMEPAGE="http://tiny-cobol.sourceforge.net/" -SRC_URI="mirror://sourceforge/tiny-cobol/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -IUSE="" -KEYWORDS="~x86 ~ppc" - -RDEPEND=">=dev-libs/glib-2.0 - sys-libs/db" - -DEPEND="${RDEPEND} - sys-devel/flex" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}.patch -} - -src_compile() { - econf || die - make || die "make failed" -} - -src_install() { - dodir /usr/bin - dodir /usr/man/man1 - dodir /usr/lib - dodir /usr/share/htcobol - make prefix="${D}/usr" install - dodoc AUTHORS ChangeLog README STATUS - cd "${D}"/usr/lib - rm libhtcobol.so libhtcobol.so.0 - ln -s libhtcobol.so.0.* libhtcobol.so.0 - ln -s libhtcobol.so.0 libhtcobol.so -} |