blob: 02578a426fdf817df26e162e9b7a74ecc83a3f9c (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20080301.ebuild,v 1.2 2008/03/01 14:13:54 ulm Exp $
inherit elisp
DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas"
HOMEPAGE="http://blog.flameeyes.eu/"
SRC_URI="http://www.flameeyes.eu/files/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND="|| ( >=app-emacs/nxml-mode-20041004-r3 >=virtual/emacs-23 )"
SITEFILE=60${PN}-gentoo.el
src_compile() { :; }
src_install() {
insinto ${SITEETC}/${PN}
doins schemas.xml *.rnc || die "install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
dodoc DONATING
}
pkg_postinst () {
elisp-site-regen
if [ $(emacs -batch -q --eval "(princ (fboundp 'nxml-mode))") = nil ]; then
ewarn "This package needs nxml-mode. You should either install"
ewarn "app-emacs/nxml-mode, or use \"eselect emacs\" to select"
ewarn "an Emacs version >= 23."
fi
}
|