Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-lang/open-cobol
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/open-cobol/ChangeLog,v 1.12 2008/03/17 16:12:20 coldwind Exp $
*open-cobol-1.0 (17 Mar 2008)
17 Mar 2008; Santiago M. Mola
+open-cobol-1.0.ebuild:
Version bump for #213602, thanks to Chi-Thanh Christopher Nguyen
17 Mar 2008; Santiago M. Mola
Add maintainer-needed to metadata.xml.
*open-cobol-0.32 (01 Sep 2007)
01 Sep 2007; Christian Faulhammer
+files/open-cobol-0.32-gmp-configure.patch, +open-cobol-0.32.ebuild:
vvesion bump plus fix for configure issue, see bug 157815, fix by Chi-Thanh
Christopher Nguyen
04 Feb 2007; Diego Pettenò
Regenerate digest in Manifest2 format.
*open-cobol-0.30 (03 Jan 2005)
03 Jan 2005; MATSUU Takuto
Version bumped.
15 Jun 2004; David Holm
Added to ~ppc.
25 Apr 2004; Aron Griffis
Add die following econf for bug 48950
13 Mar 2004; Michael Sterrett
Don't assign default to S; header fix
*open-cobol-0.23 (19 Jun 2003)
19 Jun 2003; George Shapovalov
initial release (#21481)
an open-source COBOL compiler
ebuild submitted by MATSUU Takuto
DIST open-cobol-1.0.tar.gz 934641 RMD160 28c666885e46aeaed0f12b425b1f11a5125db490 SHA1 4c0930a74e92014317b2f237aaedc90acc2b72df SHA256 15a36e4823b09938b25e947dcd0fad1b7b1ba2978591bb220a18c2bed32daf06
EBUILD open-cobol-1.0.ebuild 871 RMD160 faf75f5221b104afde41d027964d94cd4aec5376 SHA1 791d849d2fdc28c70c145797b6c4b84376f02a00 SHA256 6066f97c726da80237adb8af6f4040bbf05cdd14c041d2602df02785152f8c9b
MISC ChangeLog 1639 RMD160 bab887e21d874f3b45761cae6b35d0c6806b21ec SHA1 7b2a3a876d8cbf86722dedc4ade8a98f86214658 SHA256 f3972f33f106ecfb19fd99c5a87808e32d5a3548d475dc38a7ab31579104a453
MISC metadata.xml 241 RMD160 dbd39e15096a9c09432225b4dee87bcadcb33907 SHA1 1beb1a93e4526085c26b282271027ad508b29059 SHA256 950a704ea9fcebef2e688e8bd6e0f0d292c967e246d58e4778b9955b1d615ab4
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/open-cobol/open-cobol-1.0.ebuild,v 1.2 2008/05/12 07:45:19 drac Exp $
inherit eutils
DESCRIPTION="an open-source COBOL compiler"
HOMEPAGE="http://www.open-cobol.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="berkdb nls readline"
RDEPEND="dev-libs/gmp
berkdb? ( =sys-libs/db-4* )
sys-libs/ncurses
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
sys-devel/libtool"
src_compile() {
econf \
$(use_with berkdb db) \
$(use_enable nls) \
$(use_with readline) || die "econf failed."
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README
}