summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-02-12 16:28:22 +0000
committerUlrich Müller <ulm@gentoo.org>2011-02-12 16:28:22 +0000
commit91003655826d97c4a5713d83e8c18e325ac19df5 (patch)
tree1a20f505fbc0702af37b4e5af36687b7319ce19d /app-editors
parentalpha/ia64/s390/sh/sparc stable wrt #344827 (diff)
downloadgentoo-2-91003655826d97c4a5713d83e8c18e325ac19df5.tar.gz
gentoo-2-91003655826d97c4a5713d83e8c18e325ac19df5.tar.bz2
gentoo-2-91003655826d97c4a5713d83e8c18e325ac19df5.zip
Version bump. Update HOMEPAGE and SRC_URI.
(Portage version: 2.1.9.39/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/e3/ChangeLog9
-rw-r--r--app-editors/e3/e3-2.8.ebuild39
2 files changed, 46 insertions, 2 deletions
diff --git a/app-editors/e3/ChangeLog b/app-editors/e3/ChangeLog
index d12a4e19beca..8c405afa04b2 100644
--- a/app-editors/e3/ChangeLog
+++ b/app-editors/e3/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-editors/e3
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.32 2010/03/30 22:39:27 fauli Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.33 2011/02/12 16:28:22 ulm Exp $
+
+*e3-2.8 (12 Feb 2011)
+
+ 12 Feb 2011; Ulrich Mueller <ulm@gentoo.org> +e3-2.8.ebuild:
+ Version bump. Update HOMEPAGE and SRC_URI.
30 Mar 2010; Christian Faulhammer <fauli@gentoo.org> e3-2.7.1.ebuild:
fix HOMEPAGE and SRC_URI
diff --git a/app-editors/e3/e3-2.8.ebuild b/app-editors/e3/e3-2.8.ebuild
new file mode 100644
index 000000000000..cbb7a7e93326
--- /dev/null
+++ b/app-editors/e3/e3-2.8.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.8.ebuild,v 1.1 2011/02/12 16:28:22 ulm Exp $
+
+EAPI=3
+
+DESCRIPTION="Very tiny editor in ASM with emacs, pico, wordstar, and vi keybindings"
+HOMEPAGE="http://sites.google.com/site/e3editor/"
+SRC_URI="http://sites.google.com/site/e3editor/Home/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+RESTRICT="strip"
+
+DEPEND=">=dev-lang/nasm-2.09.04"
+RDEPEND=""
+
+src_compile() {
+ if use amd64; then
+ emake 64 || die
+ else
+ emake 32 || die
+ fi
+}
+
+src_install() {
+ dobin e3 || die
+ dosym e3 /usr/bin/e3em
+ dosym e3 /usr/bin/e3ne
+ dosym e3 /usr/bin/e3pi
+ dosym e3 /usr/bin/e3vi
+ dosym e3 /usr/bin/e3ws
+
+ newman e3.man e3.1 || die
+ dohtml e3.html || die
+ dodoc ChangeLog README README_OLD
+}