blob: 83f08c4a9fb7f9485743a9b288f933623ca7be51 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/tuareg-mode/tuareg-mode-1.45.6.ebuild,v 1.1 2008/04/17 19:10:15 ulm Exp $
inherit elisp
DESCRIPTION="An Objective Caml/Camllight mode for Emacs"
HOMEPAGE="http://www-rocq.inria.fr/~acohen/tuareg/index.html.en"
SRC_URI="http://www-rocq.inria.fr/~acohen/tuareg/mode/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
SITEFILE=50${PN}-gentoo.el
DOCS="HISTORY LISEZMOI README"
src_unpack() {
unpack ${A}
rm "${S}"/sym-lock.* # works only with XEmacs
}
src_compile() {
elisp-comp *.el || die "elisp-comp failed"
}
|