summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-09-07 13:28:02 +0000
committerJohannes Huber <johu@gentoo.org>2012-09-07 13:28:02 +0000
commit43f8e6672dca3061e18c16603ba09606146a65b0 (patch)
tree9d0f43affb96e417d528cadd18c635a70e34db54 /app-shells/esh
parentStable for x86, wrt bug #433191 (diff)
downloadgentoo-2-43f8e6672dca3061e18c16603ba09606146a65b0.tar.gz
gentoo-2-43f8e6672dca3061e18c16603ba09606146a65b0.tar.bz2
gentoo-2-43f8e6672dca3061e18c16603ba09606146a65b0.zip
Remove old.
(Portage version: 2.2.0_alpha124/cvs/Linux x86_64)
Diffstat (limited to 'app-shells/esh')
-rw-r--r--app-shells/esh/ChangeLog5
-rw-r--r--app-shells/esh/esh-0.8.5-r1.ebuild56
2 files changed, 4 insertions, 57 deletions
diff --git a/app-shells/esh/ChangeLog b/app-shells/esh/ChangeLog
index 17532cc30906..9ddac6a9c840 100644
--- a/app-shells/esh/ChangeLog
+++ b/app-shells/esh/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/esh
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.28 2012/09/07 13:26:57 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/ChangeLog,v 1.29 2012/09/07 13:28:02 johu Exp $
+
+ 07 Sep 2012; Johannes Huber <johu@gentoo.org> -esh-0.8.5-r1.ebuild:
+ Remove old.
07 Sep 2012; Johannes Huber <johu@gentoo.org> esh-0.8.5-r2.ebuild:
Stable for x86, wrt bug #433191
diff --git a/app-shells/esh/esh-0.8.5-r1.ebuild b/app-shells/esh/esh-0.8.5-r1.ebuild
deleted file mode 100644
index b803cf2b6a65..000000000000
--- a/app-shells/esh/esh-0.8.5-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/esh/esh-0.8.5-r1.ebuild,v 1.4 2012/03/18 15:36:43 armin76 Exp $
-
-EAPI="2"
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="A UNIX Shell with a simplified Scheme syntax"
-HOMEPAGE="http://slon.ttk.ru/esh/"
-SRC_URI="http://slon.ttk.ru/esh/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE="debug"
-
-DEPEND=">=sys-libs/ncurses-5.1
- >=sys-libs/readline-4.1"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- sed -i \
- -e 's|-g ||' \
- -e 's|-DMEM_DEBUG ||' \
- -e 's|^CFLAGS|&+|g' \
- -e 's|^LIB=|LIB= -lncurses |' \
- -e 's|$(CC) |&$(CFLAGS) $(LDFLAGS) |g' \
- -e 's:-ltermcap::' \
- Makefile || die "sed Makefile"
- }
-src_compile() {
- # For some reason, this tarball has binary files in it for x86.
- # Make clean so we can rebuild for our arch and optimization.
- emake clean
-
- use debug && append-flags -DMEM_DEBUG
-
- emake \
- CC="$(tc-getCC)" \
- LDFLAGS="${LDFLAGS}" \
- || die "emake failed"
-}
-
-src_install() {
- dobin esh || die
- doinfo doc/esh.info
- dodoc CHANGELOG CREDITS GC_README HEADER READLINE-HACKS TODO
- dohtml doc/*.html
- docinto examples
- dodoc examples/*
- insinto /usr/share/emacs/site-lisp/
- doins emacs/esh-mode.el
-}