blob: 281ff3d7ad03ec97b7c4a474d374c235378af5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/semantic/semantic-1.4.4.ebuild,v 1.1 2003/09/21 02:57:30 mkennedy Exp $
inherit elisp
IUSE=""
DESCRIPTION="The Semantic Bovinator is a lexer, parser-generator, and parser written in Emacs Lisp"
HOMEPAGE="http://cedet.sourceforge.net/semantic.shtml"
SRC_URI="mirror://sourceforge/cedet/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="virtual/emacs
>=app-emacs/speedbar-0.14_beta4
>=app-emacs/eieio-0.17"
S="${WORKDIR}/${P}"
src_compile() {
make LOADPATH="${SITELISP}/speedbar ${SITELISP}/eieio" || die
}
src_install() {
elisp-install ${PN} *.el *.elc *.bnf
elisp-site-file-install ${FILESDIR}/60semantic-gentoo.el
dodoc ChangeLog NEWS INSTALL
doinfo semantic.info*
}
|