blob: 52c43b0bcc4ab8b63b832bfb6ca110d8beba14c0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-s-xml-rpc/cl-s-xml-rpc-20040709.ebuild,v 1.7 2005/08/31 17:51:38 swegener Exp $
inherit common-lisp
DESCRIPTION="S-XML-RPC is an implementation of XML-RPC in Common Lisp for both client and server."
HOMEPAGE="http://www.common-lisp.net/project/s-xml-rpc/"
SRC_URI="mirror://gentoo/${P#cl-}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="dev-lisp/cl-s-xml
dev-lisp/cl-aserve"
S=${WORKDIR}/${PN#cl-}
CLPACKAGE=s-xml-rpc
src_install() {
dodir /usr/share/common-lisp/source/s-xml-rpc
dodir /usr/share/common-lisp/systems
cp -R src test ${D}/usr/share/common-lisp/source/s-xml-rpc/
common-lisp-install s-xml-rpc.asd
common-lisp-system-symlink
dosym /usr/share/common-lisp/source/s-xml-rpc/s-xml-rpc.asd \
/usr/share/common-lisp/systems/
dodoc CHangeLog
}
|