blob: 79c6882b12603b1c59fbf28627b9d9979ac86940 (
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
40
41
42
43
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-xml-psychiatrist/cl-xml-psychiatrist-0.4.ebuild,v 1.1 2004/11/07 21:21:40 mkennedy Exp $
inherit common-lisp
DESCRIPTION="A powerful XML sanity checker for Common Lisp"
HOMEPAGE="http://common-lisp.net/project/xml-psychiatrist/"
SRC_URI="http://common-lisp.net/project/xml-psychiatrist/xml-psychiatrist-${PV}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND="virtual/commonlisp
dev-lisp/cl-xmls
dev-lisp/cl-ppcre
doc? ( dev-tex/latex2html app-text/ghostscript )"
CLPACKAGE=xml-psychiatrist
S=${WORKDIR}/xml-psychiatrist-${PV}
src_compile() {
if use doc; then
cd doc
latex manual.tex
dvips manual.dvi -o manual.ps
ps2pdf manual.ps
latex2html manual.tex
fi
}
src_install() {
common-lisp-install *.asd *.lisp
common-lisp-system-symlink
dodoc README
if use doc; then
cd doc
dohtml manual/*
dodoc manual.{ps,pdf}
fi
}
|