| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2007 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.1.1.1 2005/11/30 09:59:37 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.19 2007/07/02 06:19:18 opfer Exp $ |
| 4 | # |
4 | # |
|
|
5 | # Copyright 2007 Christian Faulhammer <opfer@gentoo.org> |
| 5 | # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> |
6 | # Copyright 2002-2007 Matthew Kennedy <mkennedy@gentoo.org> |
| 6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
7 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
|
|
8 | # Copyright 2007 Ulrich Mueller <ulm@gentoo.org> |
| 7 | # |
9 | # |
| 8 | # This eclass sets the site-lisp directory for emacs-related packages. |
10 | # This eclass sets the site-lisp directory for emacs-related packages. |
| 9 | |
11 | # |
| 10 | inherit elisp-common |
12 | # Emacs support for other than pure elisp packages is handled by |
| 11 | |
13 | # elisp-common.eclass where you won't have a dependency on Emacs |
|
|
14 | # itself. All elisp-* functions are documented there. |
|
|
15 | # |
|
|
16 | # Setting SIMPLE_ELISP=t in an ebuild means, that the package's source |
|
|
17 | # is a single (in whatever way) compressed elisp file with the file name |
|
|
18 | # ${PN}-${PV}. The consequences: |
|
|
19 | # |
|
|
20 | # 1.) ${S} is redefined |
|
|
21 | # 2.) ${PN}-${PV}.el is moved to ${PN} in the system. |
|
|
22 | # |
| 12 | # SRC_URI should be set to wherever the primary app-emacs/ maintainer |
23 | # SRC_URI should be set to wherever the primary app-emacs/ maintainer |
| 13 | # keeps the local elisp mirror, since most app-emacs packages are |
24 | # keeps the local elisp mirror, since most app-emacs packages are |
| 14 | # upstream as a single .el file. |
25 | # upstream as a single .el file. |
|
|
26 | # |
|
|
27 | # DOCS="blah.txt ChangeLog" is automatically used to install the given |
|
|
28 | # files by dodoc in src_install(). |
|
|
29 | # |
|
|
30 | # If you need anything different from Emacs 21, use the NEED_EMACS |
|
|
31 | # variable before inheriting elisp.eclass. Set it to the major version |
|
|
32 | # your package uses and the dependency will be adjusted. |
| 15 | |
33 | |
| 16 | # Note: This is no longer necessary. |
34 | inherit elisp-common versionator |
| 17 | |
35 | |
| 18 | SRC_URI="http://cvs.gentoo.org/~mkennedy/app-emacs/${P}.el.bz2" |
36 | VERSION=${NEED_EMACS:-21} |
|
|
37 | DEPEND=">=virtual/emacs-${VERSION}" |
|
|
38 | IUSE="" |
|
|
39 | |
| 19 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
40 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
| 20 | S="${WORKDIR}/" |
41 | S="${WORKDIR}/" |
| 21 | #else |
|
|
| 22 | # Use default value |
|
|
| 23 | # S="${WORKDIR}/${P}" |
|
|
| 24 | fi |
42 | fi |
| 25 | |
43 | |
| 26 | DEPEND="virtual/emacs" |
44 | elisp_pkg_setup() { |
| 27 | IUSE="" |
45 | local emacs_version="$(elisp-emacs-version)" |
|
|
46 | if ! version_is_at_least "${VERSION}" "${emacs_version}"; then |
|
|
47 | eerror "This package needs at least Emacs ${VERSION}." |
|
|
48 | eerror "Use \"eselect emacs\" to select the active version." |
|
|
49 | die "Emacs version ${emacs_version} is too low." |
|
|
50 | fi |
|
|
51 | } |
| 28 | |
52 | |
| 29 | elisp_src_unpack() { |
53 | elisp_src_unpack() { |
| 30 | unpack ${A} |
54 | unpack ${A} |
| 31 | if [ "${SIMPLE_ELISP}" = 't' ] |
55 | if [ "${SIMPLE_ELISP}" = 't' ]; then |
| 32 | then |
|
|
| 33 | cd ${S} && mv ${P}.el ${PN}.el |
56 | cd "${S}" && mv ${P}.el ${PN}.el |
| 34 | fi |
57 | fi |
| 35 | } |
58 | } |
| 36 | |
59 | |
| 37 | elisp_src_compile() { |
60 | elisp_src_compile() { |
| 38 | elisp-compile *.el || die |
61 | elisp-compile *.el || die "elisp-compile failed" |
| 39 | } |
62 | } |
| 40 | |
63 | |
| 41 | elisp_src_install() { |
64 | elisp_src_install() { |
| 42 | elisp-install ${PN} *.el *.elc |
65 | elisp-install ${PN} *.el *.elc |
| 43 | elisp-site-file-install ${FILESDIR}/${SITEFILE} |
66 | elisp-site-file-install "${FILESDIR}/${SITEFILE}" |
|
|
67 | if [ -n "${DOCS}" ]; then |
|
|
68 | dodoc ${DOCS} || die "dodoc failed" |
|
|
69 | fi |
| 44 | } |
70 | } |
| 45 | |
71 | |
| 46 | elisp_pkg_postinst() { |
72 | elisp_pkg_postinst() { |
| 47 | elisp-site-regen |
73 | elisp-site-regen |
| 48 | } |
74 | } |
| 49 | |
75 | |
| 50 | elisp_pkg_postrm() { |
76 | elisp_pkg_postrm() { |
| 51 | elisp-site-regen |
77 | elisp-site-regen |
| 52 | } |
78 | } |
| 53 | |
79 | |
| 54 | EXPORT_FUNCTIONS src_unpack src_compile src_install \ |
80 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 55 | pkg_postinst pkg_postrm |
81 | EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_postrm |
| 56 | |
|
|
| 57 | # Local Variables: *** |
|
|
| 58 | # mode: shell-script *** |
|
|
| 59 | # tab-width: 4 *** |
|
|
| 60 | # indent-tabs-mode: t *** |
|
|
| 61 | # End: *** |
|
|