commit: f5285c391035984d5d88afd1cbefc382202a5f86 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org> AuthorDate: Thu Apr 27 08:37:40 2017 +0000 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org> CommitDate: Thu Apr 27 08:37:40 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=f5285c39
dev-lisp/clx: Adds last release dev-lisp/clx/clx-0.7.3.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-lisp/clx/clx-0.7.3.ebuild b/dev-lisp/clx/clx-0.7.3.ebuild new file mode 100644 index 00000000..6ff79ef3 --- /dev/null +++ b/dev-lisp/clx/clx-0.7.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 eutils + +DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL." +HOMEPAGE="http://www.cliki.net/CLX" +SRC_URI="https://github.com/sharplispers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +DEPEND="sys-apps/texinfo + doc? ( virtual/texi2dvi )" +RDEPEND="!dev-lisp/cl-${PN}" + +src_compile() { + cd manual || die + makeinfo ${PN}.texinfo -o ${PN}.info || die + use doc && texi2pdf ${PN}.texinfo -o ${PN}.pdf || die +} + +src_install() { + common-lisp-install-sources *.lisp debug demo test + common-lisp-install-asdf + dodoc NEWS CHANGES README* + doinfo manual/${PN}.info + use doc && dodoc manual/${PN}.pdf +}
