diff options
author | 2003-02-15 18:21:58 +0000 | |
---|---|---|
committer | 2003-02-15 18:21:58 +0000 | |
commit | 6d69b8d61c7a9e3f0856bb85aee4565e49202153 (patch) | |
tree | f1473b776fb7d53302b2a59bd2c0de691c6ec610 /app-editors/nedit/nedit-5.4_pre20030213.ebuild | |
parent | fixoid (diff) | |
download | gentoo-2-6d69b8d61c7a9e3f0856bb85aee4565e49202153.tar.gz gentoo-2-6d69b8d61c7a9e3f0856bb85aee4565e49202153.tar.bz2 gentoo-2-6d69b8d61c7a9e3f0856bb85aee4565e49202153.zip |
New test version and added CC=${CC} to the make line
Diffstat (limited to 'app-editors/nedit/nedit-5.4_pre20030213.ebuild')
-rw-r--r-- | app-editors/nedit/nedit-5.4_pre20030213.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app-editors/nedit/nedit-5.4_pre20030213.ebuild b/app-editors/nedit/nedit-5.4_pre20030213.ebuild new file mode 100644 index 000000000000..9c5e227f16ff --- /dev/null +++ b/app-editors/nedit/nedit-5.4_pre20030213.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.4_pre20030213.ebuild,v 1.1 2003/02/15 18:21:58 raker Exp $ + +inherit eutils + +S=${WORKDIR}/${PN} +DESCRIPTION="NEdit is a multi-purpose text editor for the X Window System" +SRC_URI="mirror://gentoo/${P}.tar.gz" +HOMEPAGE="http://nedit.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc" + +RDEPEND="spell? ( app-text/aspell )" + +DEPEND="${RDEPEND} + dev-util/yacc + virtual/motif" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/nedit-5.3-gentoo.diff + + cp ${S}/makefiles/Makefile.linux ${T} + sed "s:-O:${CFLAGS} -D__LINUX__:" \ + ${T}/Makefile.linux > ${S}/makefiles/Makefile.linux +} + +src_compile() { + make CC=${CC} linux || die +} + +src_install () { + into /usr + dobin source/nedit + exeinto /usr/bin + newexe source/nc neditc + newman doc/nedit.man nedit.1 + newman doc/nc.man neditc.1 + + dodoc README ReleaseNotes ChangeLog COPYRIGHT + cd doc + dodoc *.txt nedit.doc README.FAQ NEdit.ad + dohtml *.{dtd,xsl,xml,html,awk} +} |