summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/lfe/lfe-1.0.ebuild')
-rw-r--r--dev-lang/lfe/lfe-1.0.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-lang/lfe/lfe-1.0.ebuild b/dev-lang/lfe/lfe-1.0.ebuild
deleted file mode 100644
index bfb8337090ea..000000000000
--- a/dev-lang/lfe/lfe-1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib
-
-DESCRIPTION="Lisp-flavoured Erlang"
-HOMEPAGE="http://lfe.github.io/"
-SRC_URI="https://github.com/rvirding/lfe/archive/v${PV}.zip -> ${P}.zip"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-lang/erlang"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- export PATH="${S}/bin:$PATH"
-}
-
-src_compile() {
- emake compile -j1
-}
-
-src_install() {
- dobin bin/lfe
- dobin bin/lfec
- dobin bin/lfescript
- dodir /usr/$(get_libdir)/erlang/lib/lfe/ebin/
- dodir /usr/$(get_libdir)/erlang/lib/lfe/emacs/
- cp -R "${S}/ebin" "${D}/usr/$(get_libdir)/erlang/lib/lfe/"
- cp -R "${S}/emacs" "${D}/usr/$(get_libdir)/erlang/lib/lfe/"
-}