summaryrefslogtreecommitdiff
path: root/dev-lang/gforth/gforth-0.7.3.ebuild
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2018-05-13 11:58:13 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2018-05-13 11:58:21 +0100
commitddfdb6835cbdefdb41016dd5896713eb7d87786c (patch)
tree06e465bedec97d57e2581c1cb065c27cd24a2633 /dev-lang/gforth/gforth-0.7.3.ebuild
parent56550aeb807a1481dfb7b71cb7c8dd43fbd29ef2 (diff)
downloadgentoo-ddfdb6835cbdefdb41016dd5896713eb7d87786c.tar.gz
gentoo-ddfdb6835cbdefdb41016dd5896713eb7d87786c.tar.bz2
gentoo-ddfdb6835cbdefdb41016dd5896713eb7d87786c.zip
dev-lang/gforth: reenable build-time checks
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'dev-lang/gforth/gforth-0.7.3.ebuild')
-rw-r--r--dev-lang/gforth/gforth-0.7.3.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/dev-lang/gforth/gforth-0.7.3.ebuild b/dev-lang/gforth/gforth-0.7.3.ebuild
deleted file mode 100644
index bcb4ec21a59f..000000000000
--- a/dev-lang/gforth/gforth-0.7.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp-common eutils
-
-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-fbsd ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris"
-IUSE="emacs"
-
-DEPEND="dev-libs/ffcall
- emacs? ( virtual/emacs )"
-RDEPEND="${DEPEND}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-0.7.0-make-elc.patch"
- epatch_user
-}
-
-src_configure() {
- # May want to add a USE flag for --enable-force-cdiv, if necessary
- # At this point I do not know when that is appropriate, and I don't
- # want to add an ebuild-specific USE flag without understanding.
- econf \
- --without-check \
- $(use emacs || echo "--without-lispdir")
-}
-
-src_compile() {
- # Parallel make breaks here
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- 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
-}