blob: 8db039f0975834d9eecd0399bac5283524ced2bb (
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
|
# 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/cl-xml-3.ebuild,v 1.2 2004/06/24 23:57:07 agriffis Exp $
inherit common-lisp
DESCRIPTION="A Simple XML Parser for Common Lisp"
HOMEPAGE="http://homepage.mac.com/svc/xml/readme.html"
SRC_URI="mirror://gentoo/xml-${PV}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
DEPEND="dev-lisp/common-lisp-controller
virtual/commonlisp"
S=${WORKDIR}/xml
CLPACKAGE='xml-parser-only xml'
src_install() {
insinto /usr/share/common-lisp/source/xml
doins *.asd *.lisp
dodir /usr/share/common-lisp/systems
for package in ${CLPACKAGE}; do
dosym /usr/share/common-lisp/source/xml/${package}.asd \
/usr/share/common-lisp/systems/${package}.asd
done
dohtml *.html
insinto /usr/share/common-lisp/source/${CLPACKAGE}/test
doins test/*.{lisp,xml}
}
|