| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.8 2003/09/21 01:40:41 mkennedy Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.14 2005/07/11 15:08:06 swegener Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Matthew Kennedy <mkennedy@gentoo.org> |
5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
|
|
6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
| 6 | # |
7 | # |
| 7 | # This eclass sets the site-lisp directory for emacs-related packages. |
8 | # This eclass sets the site-lisp directory for emacs-related packages. |
| 8 | |
9 | |
| 9 | inherit elisp-common |
10 | inherit elisp-common |
| 10 | |
|
|
| 11 | ECLASS=elisp |
|
|
| 12 | INHERITED="$INHERITED $ECLASS" |
|
|
| 13 | |
|
|
| 14 | source /usr/portage/eclass/elisp-common.eclass |
|
|
| 15 | |
11 | |
| 16 | # SRC_URI should be set to wherever the primary app-emacs/ maintainer |
12 | # SRC_URI should be set to wherever the primary app-emacs/ maintainer |
| 17 | # keeps the local elisp mirror, since most app-emacs packages are |
13 | # keeps the local elisp mirror, since most app-emacs packages are |
| 18 | # upstream as a single .el file. |
14 | # upstream as a single .el file. |
| 19 | |
15 | |
| 20 | # Note: This is no longer necessary. |
16 | # Note: This is no longer necessary. |
| 21 | |
17 | |
| 22 | SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2" |
18 | SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2" |
|
|
19 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
| 23 | S="${WORKDIR}/" |
20 | S="${WORKDIR}/" |
| 24 | newdepend "virtual/emacs" |
21 | #else |
|
|
22 | # Use default value |
|
|
23 | # S="${WORKDIR}/${P}" |
|
|
24 | fi |
|
|
25 | |
|
|
26 | DEPEND="virtual/emacs" |
| 25 | IUSE="" |
27 | IUSE="" |
| 26 | |
28 | |
| 27 | src_unpack() { |
29 | elisp_src_unpack() { |
| 28 | unpack ${A} |
30 | unpack ${A} |
| 29 | if [ "${SIMPLE_ELISP}" = 't' ] |
31 | if [ "${SIMPLE_ELISP}" = 't' ] |
| 30 | then |
32 | then |
| 31 | cd ${S} && mv ${P}.el ${PN}.el |
33 | cd ${S} && mv ${P}.el ${PN}.el |
| 32 | fi |
34 | fi |
| 33 | } |
35 | } |
| 34 | |
36 | |
| 35 | src_compile() { |
37 | elisp_src_compile() { |
| 36 | emacs --batch -f batch-byte-compile --no-site-file --no-init-file *.el || die |
38 | elisp-compile *.el || die |
| 37 | } |
39 | } |
| 38 | |
40 | |
| 39 | src_install() { |
41 | elisp_src_install() { |
| 40 | elisp-install ${PN} *.el *.elc |
42 | elisp-install ${PN} *.el *.elc |
| 41 | elisp-site-file-install ${FILESDIR}/${SITEFILE} |
43 | elisp-site-file-install ${FILESDIR}/${SITEFILE} |
| 42 | } |
44 | } |
| 43 | |
45 | |
| 44 | pkg_postinst() { |
46 | elisp_pkg_postinst() { |
| 45 | elisp-site-regen |
47 | elisp-site-regen |
| 46 | } |
48 | } |
| 47 | |
49 | |
| 48 | pkg_postrm() { |
50 | elisp_pkg_postrm() { |
| 49 | elisp-site-regen |
51 | elisp-site-regen |
| 50 | } |
52 | } |
|
|
53 | |
|
|
54 | EXPORT_FUNCTIONS src_unpack src_compile src_install \ |
|
|
55 | pkg_postinst pkg_postrm |
| 51 | |
56 | |
| 52 | # Local Variables: *** |
57 | # Local Variables: *** |
| 53 | # mode: shell-script *** |
58 | # mode: shell-script *** |
| 54 | # tab-width: 4 *** |
59 | # tab-width: 4 *** |
| 55 | # indent-tabs-mode: t *** |
60 | # indent-tabs-mode: t *** |