summaryrefslogtreecommitdiff
blob: 589de97a4900408044251c22411cfbab312b32b4 (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
44
45
46
47
48
49
50
51
52
53
54
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit common-lisp-3

DESCRIPTION="Weblocks is a continuations-based web framework written in Common Lisp."
HOMEPAGE="http://weblocks-framework.info/"
SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2"

LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="dev-lisp/closer-mop
		dev-lisp/metatilities
		dev-lisp/hunchentoot
		dev-lisp/cl-who
		dev-lisp/cl-ppcre
		dev-lisp/cl-json
		dev-lisp/puri
		dev-lisp/md5
		dev-lisp/fare-matcher
		dev-lisp/cl-cont
		dev-lisp/parenscript
		dev-lisp/anaphora
		dev-lisp/f-underscore
		dev-lisp/bordeaux-threads
		dev-lisp/cl-fad
		dev-lisp/clsql
		dev-lisp/elephant
		dev-lisp/cl-prevalence
		dev-lisp/rt
		dev-lisp/lift"

CLSYSTEMS="${PN} ${PN}-test ${PN}-scripts ${PN}-store-test
		src/store/clsql/${PN}-clsql
		src/store/elephant/${PN}-elephant
		src/store/memory/${PN}-memory
		src/store/prevalence/${PN}-prevalence
		examples/${PN}-clsql-demo/${PN}-clsql-demo
		examples/${PN}-demo/${PN}-demo
		examples/${PN}-elephant-demo/${PN}-elephant-demo"

src_install() {
	dodir "${CLSOURCEROOT}"/${PN}/scripts
	cp -a scripts/weblocks-core "${D}/${CLSOURCEROOT}"/${PN}/scripts || die
	rm -rf scripts/weblocks-core
	common-lisp-install-sources examples pub scripts src test
	common-lisp-install-asdf
	dodoc docs/*
}