From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RMGfU-0005GS-39 for garchives@archives.gentoo.org; Fri, 04 Nov 2011 10:06:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A358321C05A; Fri, 4 Nov 2011 10:06:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7644D21C024 for ; Fri, 4 Nov 2011 10:06:26 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E09121B4022 for ; Fri, 4 Nov 2011 10:06:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 519EE8004A for ; Fri, 4 Nov 2011 10:06:25 +0000 (UTC) From: "Stelian Ionescu" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stelian Ionescu" Message-ID: <220602c33cce2d0fbdf657e7b4576bd57386e29b.fenlix@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild X-VCS-Directories: dev-lisp/hunchentoot/ X-VCS-Committer: fenlix X-VCS-Committer-Name: Stelian Ionescu X-VCS-Revision: 220602c33cce2d0fbdf657e7b4576bd57386e29b Date: Fri, 4 Nov 2011 10:06:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ae6c8356-48b5-4046-85d1-b9e40b877c5e X-Archives-Hash: b1ca954fe8f55a9296819199c1ee344e commit: 220602c33cce2d0fbdf657e7b4576bd57386e29b Author: Stelian Ionescu cddr org> AuthorDate: Fri Nov 4 09:41:01 2011 +0000 Commit: Stelian Ionescu cddr org> CommitDate: Fri Nov 4 09:41:01 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/lisp.git;a=3D= commit;h=3D220602c3 dev-lisp/hunchentoot: add back 1.1.1 --- dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild | 41 +++++++++++++++++++= ++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild b/dev-lisp/hun= chentoot/hunchentoot-1.1.1.ebuild new file mode 100644 index 0000000..854789c --- /dev/null +++ b/dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D3 +inherit common-lisp-3 + +DESCRIPTION=3D"Hunchentoot is a web server written in Common Lisp." +HOMEPAGE=3D"http://weitz.de/hunchentoot/" +SRC_URI=3D"https://github.com/downloads/edicl/${PN}/${P}.tar.gz" + +LICENSE=3D"BSD-2" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~ppc ~sparc ~x86" +IUSE=3D"doc" + +DEPEND=3D"doc? ( dev-libs/libxslt )" +RDEPEND=3D">=3Ddev-lisp/chunga-0.5.0 + >=3Ddev-lisp/cl-base64-3.3.0 + >=3Ddev-lisp/cl-fad-0.6.3 + >=3Ddev-lisp/cl-ppcre-2.0.0 + >=3Ddev-lisp/flexi-streams-0.12.0 + >=3Ddev-lisp/cl-plus-ssl-20081104 + >=3Ddev-lisp/md5-1.8.5 + >=3Ddev-lisp/rfc2388-1.2 + >=3Ddev-lisp/trivial-backtrace-1.0.2 + >=3Ddev-lisp/usocket-0.4.0 + >=3Ddev-lisp/bordeaux-threads-0.7.0 + >=3Ddev-lisp/cl-who-0.11.1 + >=3Ddev-lisp/drakma-1.0.0" + +src_compile() { + use doc && xsltproc doc/clixdoc.xsl doc/index.xml > doc/index.html +} + +src_install() { + common-lisp-install-sources *.lisp url-rewrite/ test/ + common-lisp-install-asdf + dodoc CHANGELOG* README + use doc && dohtml -r doc/* +}