blob: c4d5b988c7aceefed4d0f12358dea28157ab218d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-2.9.8_pre1.ebuild,v 1.5 2003/01/06 10:41:54 seemant Exp $
MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A free ASCII-Text Screen Editor for UNIX"
SRC_URI="mirror://sourceforge/joe-editor/${MY_P}.tgz"
HOMEPAGE="http://sourceforge.net/projects/joe-editor/"
SLOT="0"
KEYWORDS="~x86 ppc ~sparc "
LICENSE="GPL-1"
DEPEND=">=sys-libs/ncurses-5.2-r2"
PROVIDE="virtual/editor"
src_compile() {
econf
make || die
}
src_install() {
einstall
dodoc COPYING INFO LIST README TODO VERSION
}
|