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/clx/
Date: Sun, 04 Feb 2018 10:13:52
Message-Id: 1517739249.219aaf5d22ee5cad8f1b492fe5faed7e97c5464e.nimiux@gentoo
1 commit: 219aaf5d22ee5cad8f1b492fe5faed7e97c5464e
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 4 10:14:09 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 4 10:14:09 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=219aaf5d
7
8 dev-lisp/clx: Bumps version to 0.7.5
9
10 dev-lisp/clx/clx-0.7.5.ebuild | 36 ++++++++++++++++++++++++++++++++++++
11 1 file changed, 36 insertions(+)
12
13 diff --git a/dev-lisp/clx/clx-0.7.5.ebuild b/dev-lisp/clx/clx-0.7.5.ebuild
14 new file mode 100644
15 index 00000000..8cd18ea3
16 --- /dev/null
17 +++ b/dev-lisp/clx/clx-0.7.5.ebuild
18 @@ -0,0 +1,36 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +inherit common-lisp-3 eutils
25 +
26 +DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL."
27 +HOMEPAGE="http://www.cliki.net/CLX"
28 +SRC_URI="https://github.com/sharplispers/clx/archive/${PV}.tar.gz -> ${P}.tar.gz"
29 +
30 +LICENSE="MIT"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
33 +IUSE="doc"
34 +
35 +DEPEND="sys-apps/texinfo
36 + doc? ( virtual/texi2dvi )"
37 +RDEPEND="!dev-lisp/cl-${PN}"
38 +
39 +src_compile() {
40 + cd manual || die
41 + makeinfo ${PN}.texinfo -o ${PN}.info || die
42 + if use doc ; then
43 + VARTEXFONTS="${T}"/fonts \
44 + texi2pdf ${PN}.texinfo -o ${PN}.pdf || die
45 + fi
46 +}
47 +
48 +src_install() {
49 + common-lisp-install-sources *.lisp debug demo extensions tests
50 + common-lisp-install-asdf
51 + dodoc NEWS CHANGES README*
52 + doinfo manual/${PN}.info
53 + use doc && dodoc manual/${PN}.pdf
54 +}