summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2010-11-29 14:40:06 +0000
committerChristian Faulhammer <fauli@gentoo.org>2010-11-29 14:40:06 +0000
commit69796bc021b285ef58882f2bee835bdd2e4127f8 (patch)
treea5c104ba54ebce0bbd2e418616dbae7bf78a4469 /app-editors
parentport to EAPI 3 (diff)
downloadgentoo-2-69796bc021b285ef58882f2bee835bdd2e4127f8.tar.gz
gentoo-2-69796bc021b285ef58882f2bee835bdd2e4127f8.tar.bz2
gentoo-2-69796bc021b285ef58882f2bee835bdd2e4127f8.zip
clean up
(Portage version: 2.1.9.24/cvs/Linux i686)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/jed/ChangeLog5
-rw-r--r--app-editors/jed/jed-0.99.18.ebuild74
2 files changed, 4 insertions, 75 deletions
diff --git a/app-editors/jed/ChangeLog b/app-editors/jed/ChangeLog
index 187847d307d5..a4f9173b0f5e 100644
--- a/app-editors/jed/ChangeLog
+++ b/app-editors/jed/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/jed
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jed/ChangeLog,v 1.59 2010/05/23 18:20:09 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jed/ChangeLog,v 1.60 2010/11/29 14:40:06 fauli Exp $
+
+ 29 Nov 2010; Christian Faulhammer <fauli@gentoo.org> -jed-0.99.18.ebuild:
+ clean up
23 May 2010; Pacho Ramos <pacho@gentoo.org> jed-0.99.19.ebuild:
stable amd64, bug 307509
diff --git a/app-editors/jed/jed-0.99.18.ebuild b/app-editors/jed/jed-0.99.18.ebuild
deleted file mode 100644
index 080d7ad84ec8..000000000000
--- a/app-editors/jed/jed-0.99.18.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jed/jed-0.99.18.ebuild,v 1.16 2009/01/04 19:46:08 ulm Exp $
-
-inherit versionator
-
-MY_P=${PN}-$(replace_version_separator 2 '-')
-DESCRIPTION="Console S-Lang-based editor"
-HOMEPAGE="http://www.jedsoft.org/jed/"
-SRC_URI="ftp://space.mit.edu/pub/davis/jed/v0.99/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE="X gpm truetype"
-
-RDEPEND=">=sys-libs/slang-2
- X? ( x11-libs/libX11
- truetype? ( x11-libs/libXext
- x11-libs/libXft
- x11-libs/libXrender
- >=media-libs/freetype-2.0 ) )
- gpm? ( sys-libs/gpm )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
- export JED_ROOT=/usr/share/jed
-
- econf --prefix=${JED_ROOT} \
- --bindir=/usr/bin || die
-
- if use gpm ; then
- sed -i -e '/^#[A-Z]*MOUSE/s/#//' src/Makefile
- fi
-
- if use X && use truetype ; then
- sed -i -e '/^#XRENDERFONTLIBS/s/#//' \
- -e '/^ALL_CFLAGS/i\' \
- -e 'xterm_C_FLAGS = -DXJED_HAS_XRENDERFONT `freetype-config --cflags`' \
- src/Makefile
- fi
-
- emake clean || die
- emake || die
-
- if use X ; then
- emake xjed || die
- fi
-}
-
-src_install() {
- # make install in ${S} claims everything is up-to-date,
- # so we manually cd ${S}/src before installing
- cd "${S}/src"
- emake DESTDIR="${D}" install || die
-
- cd "${S}"
- dodoc INSTALL INSTALL.unx README changes.txt doc/manual/jed.tex
- newdoc doc/README AUTHORS
-
- doinfo info/jed*
-
- insinto /etc
- doins lib/jed.conf
-
- # replace IDE mode with EMACS mode
- sed -i -e 's/\(_Jed_Default_Emulation = \).*/\1"emacs";/' \
- "${D}"/etc/jed.conf || die "patching jed.conf failed"
-
- rm -rf "${D}"/usr/share/jed/info
- # can't rm usr/share/jed/doc -- used internally by jed/xjed
-}