diff options
Diffstat (limited to 'app-editors/e3/e3-2.33.ebuild')
-rw-r--r-- | app-editors/e3/e3-2.33.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/app-editors/e3/e3-2.33.ebuild b/app-editors/e3/e3-2.33.ebuild new file mode 100644 index 000000000000..22cdfe444554 --- /dev/null +++ b/app-editors/e3/e3-2.33.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Tools Team <tools@gentoo.org> +# +# NOTE: this is an x86-only ebuild!!! +# +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.33.ebuild,v 1.1 2002/05/24 06:59:27 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Super Tiny Editor with wordstar, vi, and emacs key bindings" +SRC_URI="http://www.sax.de/~adlibit/${P}.tar.gz" +HOMEPAGE="http://www.sax.de/~adlibit" +DEPEND="dev-lang/nasm" +RDEPEND="sys-apps/sed" + +src_unpack() { + unpack ${A} + cd ${WORKDIR} + patch -p0 < ${FILESDIR}/${PF}-gentoo.diff +} + +src_compile() { + emake || die +} + +src_install () { + dodir /usr/bin + dobin e3 + dosym e3 /usr/bin/e3vi + dosym e3 /usr/bin/e3em + dosym e3 /usr/bin/e3ws + dosym e3 /usr/bin/e3pi + dosym e3 /usr/bin/e3ne + if [ "`use build`" ]; then + # easier-to-remember shell scripts + dobin ${FILESDIR}/vi + # this one is more trouble than its worth --woodchip + # dobin ${FILESDIR}/emacs + dobin ${FILESDIR}/pico + newbin ${FILESDIR}/pico nano + fi + cp e3.man e3.1 + doman e3.1 +} + |