summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2004-02-26 03:16:01 +0000
committerSeemant Kulleen <seemant@gentoo.org>2004-02-26 03:16:01 +0000
commitdc80fe49fd702e6a66a80674f9f9a62b75ff8bfd (patch)
tree7bd4615ea413b447832daf6979f525b9484fb3ad /app-editors/jove
parentKEYWORDS+=~sparc -- took latexer long enough to add this ;P (Manifest recommit) (diff)
downloadgentoo-2-dc80fe49fd702e6a66a80674f9f9a62b75ff8bfd.tar.gz
gentoo-2-dc80fe49fd702e6a66a80674f9f9a62b75ff8bfd.tar.bz2
gentoo-2-dc80fe49fd702e6a66a80674f9f9a62b75ff8bfd.zip
Jonathan's Own Version of Emacs, as requested by: David Boggs <boggs@boggs.palo-alto.ca.us> vi email
Diffstat (limited to 'app-editors/jove')
-rw-r--r--app-editors/jove/ChangeLog10
-rw-r--r--app-editors/jove/Manifest2
-rw-r--r--app-editors/jove/files/digest-jove-4.16.0.582
-rw-r--r--app-editors/jove/jove-4.16.0.58.ebuild49
4 files changed, 63 insertions, 0 deletions
diff --git a/app-editors/jove/ChangeLog b/app-editors/jove/ChangeLog
new file mode 100644
index 000000000000..30e7b7e22fa0
--- /dev/null
+++ b/app-editors/jove/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for app-editors/jove
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.1 2004/02/26 03:16:01 seemant Exp $
+
+*jove-4.16.0.58 (25 Feb 2004)
+
+ 25 Feb 2004; Seemant Kulleen <seemant@gentoo.org> jove-4.16.0.58.ebuild:
+ Jonathan's Own Version of Emacs, as requested by: David Boggs
+ <boggs@boggs.palo-alto.ca.us> vi email
+
diff --git a/app-editors/jove/Manifest b/app-editors/jove/Manifest
new file mode 100644
index 000000000000..9359c45816ae
--- /dev/null
+++ b/app-editors/jove/Manifest
@@ -0,0 +1,2 @@
+MD5 d99835c5319638e5bd32706a6df651c2 jove-4.16.0.58.ebuild 727
+MD5 8baf28d599f64760c600ce6949101837 files/digest-jove-4.16.0.58 139
diff --git a/app-editors/jove/files/digest-jove-4.16.0.58 b/app-editors/jove/files/digest-jove-4.16.0.58
new file mode 100644
index 000000000000..60402732b292
--- /dev/null
+++ b/app-editors/jove/files/digest-jove-4.16.0.58
@@ -0,0 +1,2 @@
+MD5 4abbb4b988f2755ac81c32ac72f1f996 jove_4.16.0.58.orig.tar.gz 447828
+MD5 8b2de7379dd199ac27e1b2e880160e7b jove_4.16.0.58-1.diff.gz 10956
diff --git a/app-editors/jove/jove-4.16.0.58.ebuild b/app-editors/jove/jove-4.16.0.58.ebuild
new file mode 100644
index 000000000000..1a240d242ed5
--- /dev/null
+++ b/app-editors/jove/jove-4.16.0.58.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.58.ebuild,v 1.1 2004/02/26 03:16:01 seemant Exp $
+
+IUSE="X"
+
+S=${WORKDIR}
+DESCRIPTION="Jonathan's Own Version of Emacs -- a light emacs-like editor without LISP bindings"
+HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
+SRC_URI="http://ftp.debian.org/debian/pool/main/j/${PN}/${P/-/_}.orig.tar.gz
+ http://ftp.debian.org/debian/pool/main/j/${PN}/${P/-/_}-1.diff.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~x86"
+
+DEPEND="sys-libs/ncurses
+ X? ( x11-libs/xview )"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ epatch ${DISTDIR}/${PN}_${PV}-1.diff.gz
+
+ sed -i \
+ -e "s:^OPTFLAGS =.*:OPTFLAGS = ${CFLAGS}:" \
+ -e "s:-ltermcap:-lncurses:" \
+ Makefile
+}
+
+src_compile() {
+ emake || die
+
+ if use X
+ then
+ emake XJOVEJOME=/usr makexjove || die
+ fi
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+
+ if use X
+ then
+ make DESTDIR=${D} XJOVEHOME=${D}/usr MANDIR=${D}/usr/share/man/man1 installxjove || die
+ fi
+
+ keepdir /var/lib/jove/preserve
+}