summaryrefslogtreecommitdiff
blob: d5a539f759578677adfbb542208586233ea8b403 (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
29
30
31
32
33
34
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.7.1.ebuild,v 1.4 2008/01/24 19:49:48 opfer Exp $

DESCRIPTION="Very tiny editor in ASM with emacs, pico, wordstar, and vi keybindings"
HOMEPAGE="http://freshmeat.net/projects/e3/
	http://mitglied.lycos.de/albkleine/"
SRC_URI="http://mitglied.lycos.de/albkleine/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RESTRICT="strip"

DEPEND="x86? ( >=dev-lang/nasm-0.98.39-r3 )
	amd64? ( >=dev-lang/yasm-0.6.1 )"
RDEPEND=""

src_compile() {
	local target=""
	use amd64 && target="yasm64"
	emake ${target} || die "emake failed"
}

src_install() {
	dobin e3 || die "dobin failed"
	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
}