# Copyright 2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit elisp IUSE="java" DESCRIPTION="ECB is a source code browser for Emacs" HOMEPAGE="http://ecb.sourceforge.net/" SRC_URI="mirror://sourceforge/ecb/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" DEPEND="virtual/emacs >=app-emacs/speedbar-0.14_beta4 >=app-emacs/semantic-1.4 >=app-emacs/eieio-0.17 java? ( app-emacs/jde )" S="${WORKDIR}/${P}" src_unpack() { unpack ${A} epatch ${FILESDIR}/ecb-help.el-${P}-gentoo.diff sed -ie "s,@ECB_INFO@,/usr/share/info/ecb.info.gz,g" ${S}/ecb-help.el sed -ie "s,@ECB_HTML@,/usr/share/doc/${P}/html/ecb.html,g" ${S}/ecb-help.el } src_compile() { local my_loadpath="${SITELISP}/semantic ${SITELISP}/eieio" [ "`use java`" ] \ && my_loadpath="${my_loadpath} ${SITELISP}/elib ${SITELISP}/jde/lisp" make \ LOADPATH="${my_loadpath}" \ || die make online-help \ LOADPATH="${my_loadpath}" \ || die } src_install() { elisp-install ${PN} *.el *.elc elisp-site-file-install ${FILESDIR}/70ecb-gentoo.el dodoc NEWS README RELEASE_NOTES doinfo info-help/ecb.info* dohtml html-help/*.html } pkg_postinst() { elisp-site-regen } pkg_postrm() { elisp-site-regen }