diff options
Diffstat (limited to 'dev-lisp/hunchentoot/hunchentoot-1.2.19.ebuild')
-rw-r--r-- | dev-lisp/hunchentoot/hunchentoot-1.2.19.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-lisp/hunchentoot/hunchentoot-1.2.19.ebuild b/dev-lisp/hunchentoot/hunchentoot-1.2.19.ebuild new file mode 100644 index 00000000..e8a15056 --- /dev/null +++ b/dev-lisp/hunchentoot/hunchentoot-1.2.19.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +MY_P="v${PV}" + +DESCRIPTION="Hunchentoot is a web server written in Common Lisp." +HOMEPAGE="http://weitz.de/hunchentoot/" +SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +DEPEND="doc? ( dev-libs/libxslt )" +RDEPEND=">=dev-lisp/bordeaux-threads-0.7.0 + >=dev-lisp/chunga-1.1.1 + >=dev-lisp/cl-base64-3.3.0 + >=dev-lisp/cl-fad-0.6.3 + >=dev-lisp/cl-plus-ssl-20081104 + >=dev-lisp/cl-ppcre-2.0.0 + >=dev-lisp/cl-who-0.11.1 + >=dev-lisp/drakma-1.0.0 + >=dev-lisp/flexi-streams-0.12.0 + >=dev-lisp/md5-1.8.5 + >=dev-lisp/rfc2388-1.2 + >=dev-lisp/trivial-backtrace-1.0.2 + >=dev-lisp/usocket-0.4.0" + +src_compile() { + use doc && xsltproc doc/clixdoc.xsl doc/index.xml > doc/index.html +} + +src_install() { + common-lisp-install-sources *.lisp url-rewrite + common-lisp-install-sources -t all www test + common-lisp-install-asdf + dodoc CHANGELOG* README + use doc && dohtml -r doc/* +} |