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/asdf/
Date: Tue, 27 Feb 2018 20:22:00
Message-Id: 1519762944.a9d2d4b8418e8601dcdd370308a9e377e04aa138.nimiux@gentoo
1 commit: a9d2d4b8418e8601dcdd370308a9e377e04aa138
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 27 20:22:24 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 27 20:22:24 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=a9d2d4b8
7
8 dev-lisp/asdf: Sync with main tree
9
10 dev-lisp/asdf/asdf-3.1.5.ebuild | 49 +++++++++++++++++++++++++++++++++++++++++
11 1 file changed, 49 insertions(+)
12
13 diff --git a/dev-lisp/asdf/asdf-3.1.5.ebuild b/dev-lisp/asdf/asdf-3.1.5.ebuild
14 new file mode 100644
15 index 00000000..fb037462
16 --- /dev/null
17 +++ b/dev-lisp/asdf/asdf-3.1.5.ebuild
18 @@ -0,0 +1,49 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=5
23 +inherit eutils prefix
24 +
25 +DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
26 +HOMEPAGE="http://common-lisp.net/project/asdf/"
27 +SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz"
28 +
29 +LICENSE="MIT"
30 +SLOT="0"
31 +KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
32 +IUSE="doc"
33 +
34 +SLOT="0/${PVR}"
35 +
36 +DEPEND="!dev-lisp/cl-${PN}
37 + !dev-lisp/asdf-binary-locations
38 + !dev-lisp/gentoo-init
39 + !<dev-lisp/asdf-2.33-r3
40 + doc? ( virtual/texi2dvi )"
41 +RDEPEND=""
42 +PDEPEND="~dev-lisp/uiop-${PV}"
43 +
44 +#S="${WORKDIR}"
45 +
46 +src_compile() {
47 + make
48 + use doc && make doc
49 +}
50 +
51 +src_install() {
52 + insinto /usr/share/common-lisp/source/${PN}
53 + doins -r build version.lisp-expr
54 + dodoc README.md TODO
55 + dohtml doc/*.{html,css,ico,png}
56 + if use doc; then
57 + dohtml -r doc/index.html
58 + insinto /usr/share/doc/${PF}
59 + #doins doc/${PN}.pdf
60 + fi
61 +
62 + insinto /etc/common-lisp
63 + cd "${T}"
64 + cp "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf .
65 + eprefixify gentoo-init.lisp source-registry.conf
66 + doins gentoo-init.lisp source-registry.conf
67 +}