summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-07-16 17:27:57 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-07-16 17:27:57 +0000
commit62891f5d44eccc143591f629b2062cb0ceecb92c (patch)
tree4096d8f92d10a0e5294a41a4552b6b202ad5857e /app-emacs/ecb
parentclean up (diff)
downloadgentoo-2-62891f5d44eccc143591f629b2062cb0ceecb92c.tar.gz
gentoo-2-62891f5d44eccc143591f629b2062cb0ceecb92c.tar.bz2
gentoo-2-62891f5d44eccc143591f629b2062cb0ceecb92c.zip
clean up
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-emacs/ecb')
-rw-r--r--app-emacs/ecb/ChangeLog5
-rw-r--r--app-emacs/ecb/ecb-2.32-r3.ebuild55
2 files changed, 4 insertions, 56 deletions
diff --git a/app-emacs/ecb/ChangeLog b/app-emacs/ecb/ChangeLog
index ebca06cc5f57..4c3878f67336 100644
--- a/app-emacs/ecb/ChangeLog
+++ b/app-emacs/ecb/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emacs/ecb
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/ecb/ChangeLog,v 1.42 2009/07/16 16:40:22 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/ecb/ChangeLog,v 1.43 2009/07/16 17:27:57 fauli Exp $
+
+ 16 Jul 2009; Christian Faulhammer <fauli@gentoo.org> -ecb-2.32-r3.ebuild:
+ clean up
16 Jul 2009; nixnut <nixnut@gentoo.org> ecb-2.40.ebuild:
ppc stable #274551
diff --git a/app-emacs/ecb/ecb-2.32-r3.ebuild b/app-emacs/ecb/ecb-2.32-r3.ebuild
deleted file mode 100644
index eeaabd8db350..000000000000
--- a/app-emacs/ecb/ecb-2.32-r3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/ecb/ecb-2.32-r3.ebuild,v 1.3 2009/04/06 20:45:49 maekke Exp $
-
-inherit elisp eutils
-
-DESCRIPTION="Source code browser for Emacs"
-HOMEPAGE="http://ecb.sourceforge.net/"
-SRC_URI="mirror://sourceforge/ecb/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="java"
-
-DEPEND="app-emacs/cedet
- java? ( app-emacs/jde )"
-RDEPEND="${DEPEND}"
-
-SITEFILE="71${PN}-gentoo.el"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-gentoo.patch"
- sed -i -e "s:@PF@:${PF}:" ecb-help.el || die "sed failed"
-}
-
-src_compile() {
- local loadpath=""
- if use java; then
- loadpath="${SITELISP}/elib ${SITELISP}/jde ${SITELISP}/jde/lisp"
- fi
-
- emake CEDET="${SITELISP}/cedet" LOADPATH="${loadpath}" \
- || die "emake failed"
-}
-
-src_install() {
- elisp_src_install
-
- insinto "${SITEETC}/${PN}"
- doins -r ecb-images || die
-
- doinfo info-help/ecb.info* || die
- dohtml html-help/*.html || die
- dodoc NEWS README RELEASE_NOTES || die
-}
-
-pkg_postinst() {
- elisp-site-regen
- elog "ECB is now autoloaded in site-gentoo.el. Add the line"
- elog " (require 'ecb)"
- elog "to your ~/.emacs file to enable all features on Emacs startup."
-}