summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2021-07-17 12:21:36 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2021-07-17 12:22:29 +0100
commita05b147b84c2f3177f6d9524d0974b51e5741970 (patch)
treeaaef898e4f270fa26d40de272463141c9a4d899e /dev-lang
parentdev-lang/crystal: drop old (diff)
downloadgentoo-a05b147b84c2f3177f6d9524d0974b51e5741970.tar.gz
gentoo-a05b147b84c2f3177f6d9524d0974b51e5741970.tar.bz2
gentoo-a05b147b84c2f3177f6d9524d0974b51e5741970.zip
dev-lang/gforth: drop old
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/gforth/gforth-0.7.3-r1.ebuild65
1 files changed, 0 insertions, 65 deletions
diff --git a/dev-lang/gforth/gforth-0.7.3-r1.ebuild b/dev-lang/gforth/gforth-0.7.3-r1.ebuild
deleted file mode 100644
index ddf2c89a40a8..000000000000
--- a/dev-lang/gforth/gforth-0.7.3-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit elisp-common
-
-DESCRIPTION="GNU Forth is a fast and portable implementation of the ANSI Forth language"
-HOMEPAGE="https://www.gnu.org/software/gforth"
-SRC_URI="mirror://gnu/gforth/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
-IUSE="+check emacs"
-
-DEPEND="dev-libs/ffcall
- emacs? ( >=app-editors/emacs-23.1:* )"
-RDEPEND="${DEPEND}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.7.0-make-elc.patch
- "${FILESDIR}"/${PN}-0.7.3-rdynamic.patch
- "${FILESDIR}"/${PN}-0.7.3-rdynamic-auto.patch
-)
-
-src_prepare() {
- default
-
- # We patches both configure and configure.ac.
- # Avoid reruining aclocal.
- touch aclocal.m4 configure || die
-}
-
-src_configure() {
- econf \
- $(use emacs || echo "--without-lispdir") \
- $(use_with check)
-}
-
-src_compile() {
- # Parallel make breaks here
- emake -j1
-}
-
-src_install() {
- default
-
- dodoc AUTHORS BUGS ChangeLog NEWS* README* ToDo doc/glossaries.doc doc/*.ps
-
- if use emacs; then
- elisp-install ${PN} gforth.el gforth.elc
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- fi
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}