Gentoo Archives: gentoo-commits

From: Stelian Ionescu <sionescu@××××.org>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot/
Date: Tue, 31 Jan 2012 22:00:38
Message-Id: d6c2f4955518d29353a4ceb176a4b4e8149ef9ee.fenlix@gentoo
1 commit: d6c2f4955518d29353a4ceb176a4b4e8149ef9ee
2 Author: Stelian Ionescu <sionescu <AT> cddr <DOT> org>
3 AuthorDate: Tue Jan 31 21:48:15 2012 +0000
4 Commit: Stelian Ionescu <sionescu <AT> cddr <DOT> org>
5 CommitDate: Tue Jan 31 21:48:15 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=d6c2f495
7
8 dev-lisp/hunchentoot: bump to version 1.2.2
9
10 ---
11 dev-lisp/hunchentoot/hunchentoot-1.2.2.ebuild | 42 +++++++++++++++++++++++++
12 1 files changed, 42 insertions(+), 0 deletions(-)
13
14 diff --git a/dev-lisp/hunchentoot/hunchentoot-1.2.2.ebuild b/dev-lisp/hunchentoot/hunchentoot-1.2.2.ebuild
15 new file mode 100644
16 index 0000000..eadf104
17 --- /dev/null
18 +++ b/dev-lisp/hunchentoot/hunchentoot-1.2.2.ebuild
19 @@ -0,0 +1,42 @@
20 +# Copyright 1999-2011 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=3
25 +inherit common-lisp-3
26 +
27 +DESCRIPTION="Hunchentoot is a web server written in Common Lisp."
28 +HOMEPAGE="http://weitz.de/hunchentoot/"
29 +SRC_URI="https://github.com/downloads/edicl/${PN}/${P}.tar.gz"
30 +
31 +LICENSE="BSD-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
34 +IUSE="doc"
35 +
36 +DEPEND="doc? ( dev-libs/libxslt )"
37 +RDEPEND=">=dev-lisp/chunga-0.5.0
38 + >=dev-lisp/cl-base64-3.3.0
39 + >=dev-lisp/cl-fad-0.6.3
40 + >=dev-lisp/cl-ppcre-2.0.0
41 + >=dev-lisp/flexi-streams-0.12.0
42 + >=dev-lisp/cl-plus-ssl-20081104
43 + >=dev-lisp/md5-1.8.5
44 + >=dev-lisp/rfc2388-1.2
45 + >=dev-lisp/trivial-backtrace-1.0.2
46 + >=dev-lisp/usocket-0.4.0
47 + >=dev-lisp/bordeaux-threads-0.7.0
48 + >=dev-lisp/cl-who-0.11.1
49 + >=dev-lisp/drakma-1.0.0"
50 +
51 +src_compile() {
52 + use doc && xsltproc doc/clixdoc.xsl doc/index.xml > doc/index.html
53 +}
54 +
55 +src_install() {
56 + common-lisp-install-sources *.lisp url-rewrite/ test/
57 + common-lisp-install-sources -t all www/
58 + common-lisp-install-asdf
59 + dodoc CHANGELOG* README
60 + use doc && dohtml -r doc/*
61 +}