From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-lang/open-cobol/Manifest | 1 + dev-lang/open-cobol/metadata.xml | 11 ++++++++++ dev-lang/open-cobol/open-cobol-1.1.ebuild | 34 +++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 dev-lang/open-cobol/Manifest create mode 100644 dev-lang/open-cobol/metadata.xml create mode 100644 dev-lang/open-cobol/open-cobol-1.1.ebuild (limited to 'dev-lang/open-cobol') diff --git a/dev-lang/open-cobol/Manifest b/dev-lang/open-cobol/Manifest new file mode 100644 index 000000000000..e65ab858fc83 --- /dev/null +++ b/dev-lang/open-cobol/Manifest @@ -0,0 +1 @@ +DIST open-cobol-1.1.tar.gz 1007791 SHA256 6ae7c02eb8622c4ad55097990e9b1688a151254407943f246631d02655aec320 SHA512 eb06cec456425ba5f4a091ae4ac0bfd14f38549bc147c606a022804f602102df6dbf0d399614f0eda49d50dee17eef55087748853a8cc8bdd1248f94fd09110c WHIRLPOOL 2c1331ddd218007434af9f7d39bb10a4a2e21165549f991d9de3e8af92a16157f9c9ede5d64ec2746e64d4c46d661472950326c0a634fe10c5edbf9169dd574d diff --git a/dev-lang/open-cobol/metadata.xml b/dev-lang/open-cobol/metadata.xml new file mode 100644 index 000000000000..d8dae7344450 --- /dev/null +++ b/dev-lang/open-cobol/metadata.xml @@ -0,0 +1,11 @@ + + + + + patrick@gentoo.org + Patrick Lauer + + + open-cobol + + diff --git a/dev-lang/open-cobol/open-cobol-1.1.ebuild b/dev-lang/open-cobol/open-cobol-1.1.ebuild new file mode 100644 index 000000000000..2038ac0b6b2c --- /dev/null +++ b/dev-lang/open-cobol/open-cobol-1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils + +DESCRIPTION="an open-source COBOL compiler" +HOMEPAGE="http://www.opencobol.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 +} -- cgit v1.2.3-65-gdbad