summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2004-03-09 14:25:42 +0000
committerHeinrich Wendel <lanius@gentoo.org>2004-03-09 14:25:42 +0000
commit00f9970e4f99d46e2f1c55e554ae505a39ebc0c8 (patch)
tree8f162461ea3c7abbe8643b2f1adbfdd736289145 /app-editors/nedit
parentClosing #43779. (Manifest recommit) (diff)
downloadgentoo-2-00f9970e4f99d46e2f1c55e554ae505a39ebc0c8.tar.gz
gentoo-2-00f9970e4f99d46e2f1c55e554ae505a39ebc0c8.tar.bz2
gentoo-2-00f9970e4f99d46e2f1c55e554ae505a39ebc0c8.zip
version bump, bug #44035
Diffstat (limited to 'app-editors/nedit')
-rw-r--r--app-editors/nedit/ChangeLog7
-rw-r--r--app-editors/nedit/Manifest4
-rw-r--r--app-editors/nedit/files/digest-nedit-5.41
-rw-r--r--app-editors/nedit/nedit-5.4.ebuild37
4 files changed, 47 insertions, 2 deletions
diff --git a/app-editors/nedit/ChangeLog b/app-editors/nedit/ChangeLog
index 62a5e01556c2..836bf0f13e94 100644
--- a/app-editors/nedit/ChangeLog
+++ b/app-editors/nedit/ChangeLog
@@ -1,6 +1,6 @@
# ChangeLog for app-editors/nedit
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/ChangeLog,v 1.21 2004/03/07 04:47:11 geoman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/ChangeLog,v 1.22 2004/03/09 14:25:42 lanius Exp $
06 Mar 2004; Stephen P. Becker <geoman@gentoo.org>
nedit-5.4_pre20030213.ebuild:
@@ -10,6 +10,11 @@
nedit-5.4_pre20030213.ebuild:
Stable on sparc
+*nedit-5.4 (09 Mar 2004)
+
+ 09 Mar 2004; Heinrich Wendel <lanius@gentoo.org> nedit-5.4.ebuild:
+ version bump, bug #44035
+
23 Jan 2004; Heinrich Wendel <lanius@gentoo.org> nedit-5.3-r1.ebuild,
nedit-5.3-r2.ebuild, nedit-5.4_pre20030213.ebuild:
fix xfree dep; remove 5.3-r1
diff --git a/app-editors/nedit/Manifest b/app-editors/nedit/Manifest
index fb4882927d95..42045c8f7d0f 100644
--- a/app-editors/nedit/Manifest
+++ b/app-editors/nedit/Manifest
@@ -1,6 +1,8 @@
MD5 309788ce67cf850ba696aea07d8e7cb0 nedit-5.3-r2.ebuild 1064
MD5 33639fa520c0784ca62f335d7b6a7eed nedit-5.4_pre20030213.ebuild 1080
-MD5 d7302f3badd5b984aa331820c42e9acf ChangeLog 3463
+MD5 329f03252233ef558a9f9548e069d4e7 nedit-5.4.ebuild 904
+MD5 4acfa130a4ad0764d51a39f77efa4dc8 ChangeLog 3586
MD5 d67d5d17a4951126595fe2eb36897f15 files/digest-nedit-5.3-r2 68
MD5 f1de401822d203ac95aa0366234fb63a files/nedit-5.3-gentoo.diff 2629
MD5 670415ebfa4cdbe202a201f5fabba73c files/digest-nedit-5.4_pre20030213 74
+MD5 4223c3125634eaecc7bd7556581cc29b files/digest-nedit-5.4 69
diff --git a/app-editors/nedit/files/digest-nedit-5.4 b/app-editors/nedit/files/digest-nedit-5.4
new file mode 100644
index 000000000000..32f407e2d36a
--- /dev/null
+++ b/app-editors/nedit/files/digest-nedit-5.4
@@ -0,0 +1 @@
+MD5 57acc7c1c5959ad376b243d550f1926a nedit-5.4-source.tar.gz 1226732
diff --git a/app-editors/nedit/nedit-5.4.ebuild b/app-editors/nedit/nedit-5.4.ebuild
new file mode 100644
index 000000000000..c486a4edd712
--- /dev/null
+++ b/app-editors/nedit/nedit-5.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2004 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.ebuild,v 1.1 2004/03/09 14:25:42 lanius Exp $
+
+DESCRIPTION="multi-purpose text editor for the X Window System"
+HOMEPAGE="http://nedit.org/"
+SRC_URI="mirror://sourceforge/nedit/${P}-source.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc ~sparc ~mips"
+IUSE="spell"
+
+RDEPEND="spell? ( virtual/aspell-dict )
+ x11-base/xfree"
+
+DEPEND="${RDEPEND}
+ dev-util/yacc
+ x11-libs/openmotif"
+
+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}
+}