diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2005-05-11 04:55:41 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2005-05-11 04:55:41 +0000 |
commit | 6e063e36584b8439420c635c7a74b17240f80532 (patch) | |
tree | 46dd844f7762d381110f5f2e660f92fbc35bba79 /dev-lisp/cl-iterate/cl-iterate-1.4.ebuild | |
parent | Stable amd64, sparc, x86. (diff) | |
download | historical-6e063e36584b8439420c635c7a74b17240f80532.tar.gz historical-6e063e36584b8439420c635c7a74b17240f80532.tar.bz2 historical-6e063e36584b8439420c635c7a74b17240f80532.zip |
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'dev-lisp/cl-iterate/cl-iterate-1.4.ebuild')
-rw-r--r-- | dev-lisp/cl-iterate/cl-iterate-1.4.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-lisp/cl-iterate/cl-iterate-1.4.ebuild b/dev-lisp/cl-iterate/cl-iterate-1.4.ebuild new file mode 100644 index 000000000000..103a2d486d5b --- /dev/null +++ b/dev-lisp/cl-iterate/cl-iterate-1.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-iterate/cl-iterate-1.4.ebuild,v 1.1 2005/05/11 04:55:40 mkennedy Exp $ + +inherit common-lisp eutils + +DESCRIPTION="ITERATE is a lispy and extensible replacement for the Common Lisp LOOP macro" +HOMEPAGE="http://common-lisp.net/project/iterate/ + http://www.cliki.net/iterate" +SRC_URI="http://common-lisp.net/project/iterate/releases/iterate_${PV}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="x86 ~ppc ~amd64" +IUSE="doc" + +DEPEND="virtual/commonlisp + dev-lisp/common-lisp-controller + doc? ( virtual/tetex )" + +S=${WORKDIR}/iterate_${PV} + +CLPACKAGE=iterate + +src_compile() { + use doc && make -C doc +} + +src_install() { + common-lisp-install *.lisp iterate.asd + common-lisp-system-symlink + dodoc BUGS ChangeLog README + use doc && dodoc doc/*.ps +} |