summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2008-12-04 23:03:16 +0000
committerUlrich Müller <ulm@gentoo.org>2008-12-04 23:03:16 +0000
commita5a93f86ff7099ff4422544a25244a2801dedb96 (patch)
treec5c71e63a1307df08e250e12f9a506231cb7a79b /app-editors/jove
parentBump to 1.4.3. Allow building against system libasyncns, bug #236844. (diff)
downloadgentoo-2-a5a93f86ff7099ff4422544a25244a2801dedb96.tar.gz
gentoo-2-a5a93f86ff7099ff4422544a25244a2801dedb96.tar.bz2
gentoo-2-a5a93f86ff7099ff4422544a25244a2801dedb96.zip
Remove old.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r4 i686)
Diffstat (limited to 'app-editors/jove')
-rw-r--r--app-editors/jove/ChangeLog5
-rw-r--r--app-editors/jove/jove-4.16.0.70.3.ebuild51
2 files changed, 4 insertions, 52 deletions
diff --git a/app-editors/jove/ChangeLog b/app-editors/jove/ChangeLog
index e5f1aeaa274f..b5ae27dfafa6 100644
--- a/app-editors/jove/ChangeLog
+++ b/app-editors/jove/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/jove
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.25 2008/12/04 22:45:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.26 2008/12/04 23:03:16 ulm Exp $
+
+ 04 Dec 2008; Ulrich Mueller <ulm@gentoo.org> -jove-4.16.0.70.3.ebuild:
+ Remove old.
04 Dec 2008; Markus Meier <maekke@gentoo.org> jove-4.16.0.70.3.1.ebuild:
amd64/x86 stable, bug #249659
diff --git a/app-editors/jove/jove-4.16.0.70.3.ebuild b/app-editors/jove/jove-4.16.0.70.3.ebuild
deleted file mode 100644
index e7ca62c7cb38..000000000000
--- a/app-editors/jove/jove-4.16.0.70.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.70.3.ebuild,v 1.5 2008/12/02 20:17:37 ssuominen Exp $
-
-inherit eutils flag-o-matic
-
-MY_P=${P/-/_}
-MY_DIFFP=${MY_P%.*}-${MY_P##*.}.diff
-MY_P=${MY_P%.*}
-
-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="mirror://debian/pool/main/j/${PN}/${MY_P}.orig.tar.gz
- mirror://debian/pool/main/j/${PN}/${MY_DIFFP}.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="unix98"
-
-RDEPEND="sys-libs/ncurses"
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4"
-
-S=${WORKDIR}/${MY_P/_/}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${WORKDIR}/${MY_DIFFP}"
-
- sed -i \
- -e "s:-ltermcap:-lncurses:" \
- -e "s:^OPTFLAGS =.*:OPTFLAGS = ${CFLAGS}:" \
- Makefile
-# -e 's:^SYSDEFS =.*:SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500":' \
-}
-
-src_compile() {
- local myconf
- if use unix98; then
- emake SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" || die "emake failed."
- else
- emake || die "emake failed."
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
- keepdir /var/lib/jove/preserve
-}