blob: 8e2f8862adb841181506c01325466945c9b8bd90 (
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
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-ucw/cl-ucw-0.3.9.ebuild,v 1.5 2005/06/15 20:31:53 mkennedy Exp $
inherit common-lisp eutils
DESCRIPTION="UnCommon Web is a continuation based, component oriented dynamic web application framework written in Common Lisp."
HOMEPAGE="http://common-lisp.net/project/ucw/index.html"
SRC_URI="ftp://ftp.common-lisp.net/pub/project/ucw/ucw_${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="mod_lisp araneida aserve doc"
DEPEND=">=dev-lisp/cl-iterate-1.4
>=dev-lisp/cl-rfc2388-0.9
>=dev-lisp/cl-arnesi-1.4.0_p5
>=dev-lisp/cl-yaclml-0.5_p26
dev-lisp/cl-icu
mod_lisp? ( || ( www-apache/mod_lisp www-apache/mod_lisp2 ) )
araneida? ( dev-lisp/cl-araneida )
!araneida? ( dev-lisp/cl-puri )
aserve? ( dev-lisp/cl-aserve )
|| ( app-emacs/slime app-emacs/slime-cvs )
doc? ( virtual/tetex )"
CLPACKAGE=ucw
S=${WORKDIR}/ucw_${PV}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}-gentoo.patch || die
find ${S}/ -type d -name .arch-ids -exec rm -rf '{}' \; &>/dev/null
}
src_compile() {
if use doc; then
einfo "Won't build documentation for the time being."
# make -C docs
fi
}
src_install() {
dodir /usr/share/common-lisp/source/ucw
dodir /usr/share/common-lisp/systems
insinto /usr/share/common-lisp/source/ucw/
doins -r src examples
common-lisp-install ucw.asd
common-lisp-system-symlink
dodoc README CHANGES
dohtml -r docs/html/*
insinto /usr/share/doc/${PF}/
doins bin/*
insinto /var/lib/ucw
doins -r wwwroot
dodoc ${FILESDIR}/README.Gentoo
keepdir /var/log/ucw
}
pkg_postinst() {
while read line; do einfo "${line}"; done <${FILESDIR}/README.Gentoo
}
|