Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/documentation-template/
Date: Thu, 27 Feb 2014 09:13:10
Message-Id: 1393492426.820d6c926f5695496519f72e5fc540afc59d9c71.nimiux@gentoo
1 commit: 820d6c926f5695496519f72e5fc540afc59d9c71
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 27 09:13:46 2014 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 27 09:13:46 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=820d6c92
7
8 dev-lisp/documentation-template: new ebuild
9
10 ---
11 .../documentation-template-0.4.3.ebuild | 24 ++++++++++++++++++++++
12 1 file changed, 24 insertions(+)
13
14 diff --git a/dev-lisp/documentation-template/documentation-template-0.4.3.ebuild b/dev-lisp/documentation-template/documentation-template-0.4.3.ebuild
15 new file mode 100644
16 index 0000000..734a50e
17 --- /dev/null
18 +++ b/dev-lisp/documentation-template/documentation-template-0.4.3.ebuild
19 @@ -0,0 +1,24 @@
20 +# Copyright 1999-2014 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=5
25 +
26 +inherit common-lisp-3
27 +
28 +DESCRIPTION="Prepare HTML documentation for Common Lisp libraries"
29 +HOMEPAGE="http://weitz.de/documentation-template/"
30 +SRC_URI="http://dev.gentoo.org/~nimiux/dev-lisp/${PN}/${P}.tar.gz"
31 +
32 +LICENSE="BSD-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE="doc"
36 +
37 +RDEPEND="dev-lisp/cl-who"
38 +
39 +src_install() {
40 + common-lisp-install-sources *.lisp
41 + common-lisp-install-asdf
42 + use doc && dohtml doc/index.html
43 +}