diff options
Diffstat (limited to 'app-editors/joe')
-rw-r--r-- | app-editors/joe/joe-2.9.5.ebuild | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/app-editors/joe/joe-2.9.5.ebuild b/app-editors/joe/joe-2.9.5.ebuild index a84b95058359..5fc03e3269f8 100644 --- a/app-editors/joe/joe-2.9.5.ebuild +++ b/app-editors/joe/joe-2.9.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-2.9.5.ebuild,v 1.3 2002/07/11 06:30:12 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/joe/joe-2.9.5.ebuild,v 1.4 2002/07/25 19:25:49 kabau Exp $ S=${WORKDIR}/${P} DESCRIPTION="A free ASCII-Text Screen Editor for UNIX" @@ -8,36 +8,39 @@ SRC_URI="http://ftp1.sourceforge.net/joe-editor/${P}.tgz" HOMEPAGE="http://sourceforge.net/projects/joe-editor/" DEPEND=">=sys-libs/ncurses-5.2-r2" +RDEPEND="" - +SLOT="0" +KEYWORDS="x86" +LICENSE="GPL-1" src_unpack() { - unpack ${A} - cd ${S} - cp Makefile Makefile.orig - sed -e "s/-O2/${CFLAGS}/" Makefile.orig > Makefile + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed -e "s/-O2/${CFLAGS}/" Makefile.orig > Makefile } src_compile() { - try make joe termidx + make joe termidx || die } src_install() { - into /usr - dobin joe - doman joe.1 - dolib joerc - for i in jmacs jstar jpico rjoe - do - dosym joe /usr/bin/$i - dosym joe.1.gz /usr/share/man/man1/$i.1.gz - dolib ${i}rc - done - - dodoc copying INFO LIST README TODO VERSION + into /usr + dobin joe + doman joe.1 + dolib joerc + for i in jmacs jstar jpico rjoe + do + dosym joe /usr/bin/$i + dosym joe.1.gz /usr/share/man/man1/$i.1.gz + dolib ${i}rc + done + + dodoc copying INFO LIST README TODO VERSION } |