diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2006-02-08 06:31:28 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2006-02-08 06:31:28 +0000 |
commit | 7b0da78a04be86697124b3b6798e9b4e35f5ff1b (patch) | |
tree | 3793fb5a338e13e88b97eb300a353391f45c2cfc /dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild | |
parent | Update tempfile patch #114499. (diff) | |
download | historical-7b0da78a04be86697124b3b6798e9b4e35f5ff1b.tar.gz historical-7b0da78a04be86697124b3b6798e9b4e35f5ff1b.tar.bz2 historical-7b0da78a04be86697124b3b6798e9b4e35f5ff1b.zip |
New upstream version.
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild')
-rw-r--r-- | dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild b/dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild new file mode 100644 index 000000000000..a89220e241ba --- /dev/null +++ b/dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-tbnl/cl-tbnl-0.9.7.ebuild,v 1.1 2006/02/08 06:31:28 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION="TBNL is a toolkit for building dynamic websites with Common Lisp based on mod_lisp." +HOMEPAGE="http://www.weitz.de/tbnl/" +SRC_URI="mirror://gentoo/tbnl_${PV}.orig.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="standalone apache2" + +DEPEND="dev-lisp/cl-kmrcl + dev-lisp/cl-md5 + dev-lisp/cl-base64 + dev-lisp/cl-url-rewrite + dev-lisp/cl-ppcre + dev-lisp/cl-rfc2388" + +RDEPEND="${DEPEND} + !standalone? ( apache2? ( >=www-apache/mod_lisp2-1.2 ) !apache2? ( www-apache/mod_lisp ) )" + +S=${WORKDIR}/tbnl-${PV} + +CLPACKAGE=tbnl + +src_install() { + common-lisp-install *.lisp *.asd + common-lisp-system-symlink + insinto $CLSOURCEROOT/$CLPACKAGE/ + doins -r test contrib + dodoc CHANGELOG README + dohtml doc/index.html +} |