blob: 7854d01fab1ddf37f28796cc66a4bcd43d28160b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.7.0.ebuild,v 1.8 2007/07/07 11:28:42 opfer Exp $
DESCRIPTION="Very tiny editor in ASM with emacs, pico, wordstar, and vi keybindings"
HOMEPAGE="http://www.sax.de/~adlibit/"
SRC_URI="http://www.sax.de/~adlibit/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 x86"
IUSE=""
RESTRICT="strip"
DEPEND="dev-lang/nasm"
RDEPEND=""
PROVIDE="virtual/editor"
src_install() {
use amd64 && newbin "${S}/bin/Linux_x86-64/e3-64" e3
use x86 && newbin "${S}/bin/Linux/e3" 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
newman e3.man e3.1
}
|