diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-11-16 19:38:33 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-11-16 19:38:33 +0000 |
commit | 66732e0b1cec78e4b32944477a7d998db90effd7 (patch) | |
tree | 34d46f2197f8bbd652c47df52773fbd8b31ce9e2 /app-emacs | |
parent | refine defaults (diff) | |
download | gentoo-2-66732e0b1cec78e4b32944477a7d998db90effd7.tar.gz gentoo-2-66732e0b1cec78e4b32944477a7d998db90effd7.tar.bz2 gentoo-2-66732e0b1cec78e4b32944477a7d998db90effd7.zip |
refine defaults
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/semantic/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/semantic/Manifest | 7 | ||||
-rw-r--r-- | app-emacs/semantic/files/60semantic-gentoo.el | 25 | ||||
-rw-r--r-- | app-emacs/semantic/files/digest-semantic-1.4.4-r1 | 1 | ||||
-rw-r--r-- | app-emacs/semantic/semantic-1.4.4-r1.ebuild | 31 |
5 files changed, 66 insertions, 6 deletions
diff --git a/app-emacs/semantic/ChangeLog b/app-emacs/semantic/ChangeLog index 663ae315cedc..6824aa5890b4 100644 --- a/app-emacs/semantic/ChangeLog +++ b/app-emacs/semantic/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emacs/semantic # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/semantic/ChangeLog,v 1.5 2003/11/01 10:27:03 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/semantic/ChangeLog,v 1.6 2003/11/16 19:38:30 mkennedy Exp $ + +*semantic-1.4.4-r1 (16 Nov 2003) + + 16 Nov 2003; <mkennedy@gentoo.org> semantic-1.4.4-r1.ebuild, + files/60semantic-gentoo.el: + disable global-semantic-sticky-func-mode 01 Nov 2003; Mamoru KOMACHI <usata@gentoo.org> files/60semantic-gentoo.el: Added semantic-util to 60semantic-gentoo.el. This closed bug #30589. diff --git a/app-emacs/semantic/Manifest b/app-emacs/semantic/Manifest index c0928c9681d3..793dcaa2d8bb 100644 --- a/app-emacs/semantic/Manifest +++ b/app-emacs/semantic/Manifest @@ -1,10 +1,9 @@ -MD5 64c6534f7bca12a686fbc5feffbdeb41 ChangeLog 1120 +MD5 5cf53d1801afd2d5662552fb79a0421d ChangeLog 1294 MD5 fcd33d07e4ee719b01157946734f4fe8 metadata.xml 158 MD5 4ea7edeee0c63f20dbf948db7c900571 semantic-1.4.4.ebuild 855 MD5 be2b331c48e53409f2fc85b1243a29aa semantic-1.4.ebuild 997 -MD5 4ea7edeee0c63f20dbf948db7c900571 semantic-1.4.4-r1.ebuild 855 -MD5 620ed957c30d7873a8d7d37755d6ffd3 files/60semantic-gentoo.el 957 +MD5 99c5f85cf728240b74e900e69595652e semantic-1.4.4-r1.ebuild 858 +MD5 897c44f1325a3ed9da30ae5cf3a6f451 files/60semantic-gentoo.el 956 MD5 877171c9053e0a8d070f6d9bf70baee8 files/digest-semantic-1.4 64 MD5 bc0fe7f73f997260a6a65d5149dcb65b files/digest-semantic-1.4.4 66 MD5 bc0fe7f73f997260a6a65d5149dcb65b files/digest-semantic-1.4.4-r1 66 -MD5 e1e45c4c3f27befb4b42074427252b38 files/60semantic-gentoo.el.~1.3.~ 178 diff --git a/app-emacs/semantic/files/60semantic-gentoo.el b/app-emacs/semantic/files/60semantic-gentoo.el index 6c069aaed11c..3a7bf744162f 100644 --- a/app-emacs/semantic/files/60semantic-gentoo.el +++ b/app-emacs/semantic/files/60semantic-gentoo.el @@ -3,5 +3,28 @@ (setq load-path (cons "@SITELISP@" load-path)) (require 'semantic-util) -(setq semantic-load-turn-everything-on t) + +;; To determine what should be done here every semantic release, check +;; semantic-load.el. Here we replicate the (when ... sexp twoards the +;; end of the source. + +;; We turn on everything except foor `global-semantic-stickyfunc-mode' +;; as it seems to be a source of consternation for new and experienced +;; users alike. + +(setq semantic-load-turn-everything-on nil + semantic-load-turn-useful-things-on nil) (require 'semantic-load) + +(global-semantic-show-dirty-mode 1) +(global-senator-minor-mode 1) +(global-semantic-show-unmatched-syntax-mode 1) +(global-semantic-auto-parse-mode 1) +(global-semanticdb-minor-mode 1) +(global-semantic-summary-mode 1) +;; (global-semantic-stickyfunc-mode 1) + +(when (and (eq window-system 'x) + (locate-library "imenu")) + (add-hook 'semantic-init-hooks (lambda () + (imenu-add-to-menubar "TOKENS")))) diff --git a/app-emacs/semantic/files/digest-semantic-1.4.4-r1 b/app-emacs/semantic/files/digest-semantic-1.4.4-r1 new file mode 100644 index 000000000000..814d5c3a9405 --- /dev/null +++ b/app-emacs/semantic/files/digest-semantic-1.4.4-r1 @@ -0,0 +1 @@ +MD5 9b3780695154dc66e1ecbdc40c0541a0 semantic-1.4.4.tar.gz 322819 diff --git a/app-emacs/semantic/semantic-1.4.4-r1.ebuild b/app-emacs/semantic/semantic-1.4.4-r1.ebuild new file mode 100644 index 000000000000..f83bd6cd44bf --- /dev/null +++ b/app-emacs/semantic/semantic-1.4.4-r1.ebuild @@ -0,0 +1,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-r1.ebuild,v 1.1 2003/11/16 19:38: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* +} |