diff options
-rw-r--r-- | app-editors/nedit/files/digest-nedit-5.1.1-r1 | 1 | ||||
-rw-r--r-- | app-editors/nedit/nedit-5.1.1-r1.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/app-editors/nedit/files/digest-nedit-5.1.1-r1 b/app-editors/nedit/files/digest-nedit-5.1.1-r1 new file mode 100644 index 000000000000..a1f68ad0c88d --- /dev/null +++ b/app-editors/nedit/files/digest-nedit-5.1.1-r1 @@ -0,0 +1 @@ +MD5 dba0970c60debada237ca852b5f57ec8 nedit-5.1.1-src.tar.gz diff --git a/app-editors/nedit/nedit-5.1.1-r1.ebuild b/app-editors/nedit/nedit-5.1.1-r1.ebuild new file mode 100644 index 000000000000..cbf6cb2636a1 --- /dev/null +++ b/app-editors/nedit/nedit-5.1.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.1.1-r1.ebuild,v 1.1 2001/04/11 02:45:29 achim Exp $ + +A=${P}-src.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="NEdit is a multi-purpose text editor for the X Window System" +SRC_URI="ftp://ftp.nedit.org/pub/v5_1_1/${A}" +HOMEPAGE="http://nedit.org/" + +DEPEND="virtual/glibc + >=dev-util/yacc-1.9.1 + >=x11-libs/openmotif-2.1.30" + +RDEPEND="virtual/glibc + >=x11-libs/openmotif-2.1.30" + +src_unpack() { + + unpack ${A} + cd ${S}/makefiles + cp Makefile.linux Makefile.orig + sed -e "s:-O:${CFLAGS}:" Makefile.orig > Makefile.linux + +} + +src_compile() { + + try make linux + +} + +src_install () { + + into /usr/X11R6 + dobin source/nc source/nedit + newman nedit.man nedit.1 + newman nc.man nc.1 + dodoc README ReleaseNotes nedit.doc + +} + |