blob: fcca1d01914f08a68fb5d9323f86e3684f1a4def (
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-2004 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.ebuild,v 1.8 2004/03/25 03:09:10 kumba Exp $
IUSE=""
inherit flag-o-matic
MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A free ASCII-Text Screen Editor for UNIX"
SRC_URI="mirror://sourceforge/joe-editor/${MY_P}.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/joe-editor/"
SLOT="0"
KEYWORDS="x86 ~ppc sparc alpha mips amd64"
LICENSE="GPL-1"
DEPEND=">=sys-libs/ncurses-5.2-r2"
PROVIDE="virtual/editor"
# Bug 34609 (joe 2.9.8 editor seg-faults on 'find and replace' when compiled with -Os)
replace-flags "-Os" "-O2"
src_compile() {
econf || die
make || die
}
src_install() {
einstall || die
dodoc COPYING INFO LIST README TODO VERSION
}
|