summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild')
-rw-r--r--app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild b/app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild
deleted file mode 100644
index 28b8fc0..0000000
--- a/app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A very minimal imitation of the famous GNU Emacs editor"
-HOMEPAGE="http://hunter.apana.org.au/~cjb/Code/"
-SRC_URI="http://hunter.apana.org.au/~cjb/Code/ersatz.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-PROVIDE="virtual/editor"
-
-S="${WORKDIR}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-gentoo.patch
- sed -i -e "s%/usr/local/share/%/usr/share/doc/${PF}/%" ee.1 \
- || die "sed failed"
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" \
- CFLAGS="-Wall ${CFLAGS}" \
- LFLAGS="-lncurses" || die "emake failed"
-}
-
-src_install() {
- dobin ee
- doman ee.1
- dodoc ChangeLog ERSATZ.keys README || die "dodoc failed"
-}