blob: 22579d7a424457d67b1b898d53ae73566718d7b5 (
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
32
33
34
35
36
37
38
39
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/nxml-mode-20041004.ebuild,v 1.10 2007/07/02 07:32:10 opfer Exp $
inherit elisp eutils
DESCRIPTION="A major mode for GNU Emacs for editing XML documents."
HOMEPAGE="http://www.thaiopensource.com/nxml-mode/
http://www.emacswiki.org/cgi-bin/wiki/NxmlMode"
SRC_URI="http://thaiopensource.com/download/${P}.tar.gz
mirror://gentoo/${PN}-20040910-xmlschema.patch.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ~sparc-fbsd x86 ~x86-fbsd"
IUSE=""
SITEFILE=80nxml-mode-gentoo.el
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
epatch "${FILESDIR}/${PN}-info-gentoo.patch"
epatch "${DISTDIR}/${PN}-20040910-xmlschema.patch.gz"
}
src_compile() {
emacs -batch -l rng-auto.el -f rng-byte-compile-load
}
src_install() {
elisp-install ${PN} *.el *.elc
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
cp -r "${S}/schema" "${D}/${SITELISP}/${PN}"
cp -r "${S}/char-name" "${D}/${SITELISP}/${PN}"
dodoc README VERSION TODO NEWS
makeinfo --force nxml-mode.texi
doinfo nxml-mode.info
}
|