blob: 5381cbd228a5d9f0c5e10f25cc13364d5cac30c7 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
DESCRIPTION="Hyperobject is a Common Lisp library for representing objects."
HOMEPAGE="http://hyperobject.b9.com/
http://www.cliki.net/hyperobject"
SRC_URI="http://files.b9.com/${PN}/${PN}-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="!dev-lisp/cl-${PN}
dev-lisp/kmrcl
dev-lisp/rt
dev-lisp/clsql"
src_unpack() {
unpack ${A}
rm "${S}"/Makefile
}
src_install() {
common-lisp-install *.{lisp,asd} examples
common-lisp-symlink-asdf
dodoc README
dodoc doc/*.pdf
tar xfz doc/html.tar.gz -C "${T}"
dohtml "${T}"/html/*
}
|