From bf1e389a2632e668c3ffdcd8092609aab6b72e9b Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Tue, 30 Jan 2024 01:14:54 +0100 Subject: dev-lang/oorexx: new package; add 5.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- dev-lang/oorexx/oorexx-5.0.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 dev-lang/oorexx/oorexx-5.0.0.ebuild (limited to 'dev-lang/oorexx/oorexx-5.0.0.ebuild') diff --git a/dev-lang/oorexx/oorexx-5.0.0.ebuild b/dev-lang/oorexx/oorexx-5.0.0.ebuild new file mode 100644 index 000000000000..51c81bc9f4f2 --- /dev/null +++ b/dev-lang/oorexx/oorexx-5.0.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +APP_REVISION=12583 + +inherit cmake + +DESCRIPTION="Open source implementation of Object Rexx" +HOMEPAGE="https://www.oorexx.org/about.html + https://sourceforge.net/projects/oorexx/" +SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}-${APP_REVISION}.tar.gz" +S="${WORKDIR}/${P}" + +LICENSE="CPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + sys-libs/ncurses:= + virtual/libcrypt:= +" +DEPEND=" + ${RDEPEND} +" + +PATCHES=( "${FILESDIR}/${PN}-5.0.0-man.patch" ) + +src_unpack() { + default + + # HACK: Dance around cmake.eclass S directory requirements. + mv "${WORKDIR}" "${T}/${P}" || die + mkdir -p "${WORKDIR}" || die + mv "${T}/${P}" "${S}" || die +} -- cgit v1.2.3-65-gdbad