From f037d8ec055e342e73d24b691cffff35f8e41caa Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 14 Jul 2021 05:04:38 +0100 Subject: dev-lang/regina-rexx: add missing libcrypt dependency Closes: https://bugs.gentoo.org/801973 Signed-off-by: Sam James --- dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild | 44 ----------------------- dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild | 46 ++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 44 deletions(-) delete mode 100644 dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild create mode 100644 dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild (limited to 'dev-lang/regina-rexx') diff --git a/dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild b/dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild deleted file mode 100644 index bc100fa59cf2..000000000000 --- a/dev-lang/regina-rexx/regina-rexx-3.9.1-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Portable Rexx interpreter" -HOMEPAGE="https://regina-rexx.sourceforge.io/" -SRC_URI="mirror://sourceforge/${PN}/Regina-REXX-${PV}.tar.gz" - -LICENSE="LGPL-2.1 MPL-1.0" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" - -S="${WORKDIR}/Regina-REXX-${PV}" - -PATCHES=( "${FILESDIR}"/${PN}-3.9.1-makefile.patch ) - -src_prepare() { - default - mv configure.{in,ac} || die - eautoconf -} - -src_compile() { - emake -j1 -} - -src_install() { - emake -j1 DESTDIR="${D}" install - DOCS=( BUGS HACKERS.txt README.Unix README_SAFE TODO ) - einstalldocs - - newinitd "${FILESDIR}"/rxstack-r1 rxstack -} - -pkg_postinst() { - elog "You may want to run" - elog - elog "\trc-update add rxstack default" - elog - elog "to enable Rexx queues (optional)." -} diff --git a/dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild b/dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild new file mode 100644 index 000000000000..b09080ce292b --- /dev/null +++ b/dev-lang/regina-rexx/regina-rexx-3.9.1-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Portable Rexx interpreter" +HOMEPAGE="https://regina-rexx.sourceforge.io/" +SRC_URI="mirror://sourceforge/${PN}/Regina-REXX-${PV}.tar.gz" +S="${WORKDIR}/Regina-REXX-${PV}" + +LICENSE="LGPL-2.1 MPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="virtual/libcrypt:=" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-3.9.1-makefile.patch ) + +src_prepare() { + default + mv configure.{in,ac} || die + eautoconf +} + +src_compile() { + emake -j1 +} + +src_install() { + emake -j1 DESTDIR="${D}" install + DOCS=( BUGS HACKERS.txt README.Unix README_SAFE TODO ) + einstalldocs + + newinitd "${FILESDIR}"/rxstack-r1 rxstack +} + +pkg_postinst() { + elog "You may want to run" + elog + elog "\trc-update add rxstack default" + elog + elog "to enable Rexx queues (optional)." +} -- cgit v1.2.3-65-gdbad