From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 760A31396D0 for ; Fri, 18 Aug 2017 15:04:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE0BBE0D33; Fri, 18 Aug 2017 15:04:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0FD5E0D33 for ; Fri, 18 Aug 2017 15:04:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE641341913 for ; Fri, 18 Aug 2017 15:04:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6ACA67A23 for ; Fri, 18 Aug 2017 15:04:27 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1503068658.a5e3b9c557e1fe1cfbddd5b95a3f73a2544af057.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/clx/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/clx/clx-0.7.4.ebuild X-VCS-Directories: dev-lisp/clx/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: a5e3b9c557e1fe1cfbddd5b95a3f73a2544af057 X-VCS-Branch: master Date: Fri, 18 Aug 2017 15:04:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a9f07ad5-c0b2-4afb-90f9-ef2ad60f5003 X-Archives-Hash: caa5c6dee5453f1b291009af11923048 commit: a5e3b9c557e1fe1cfbddd5b95a3f73a2544af057 Author: Chema Alonso Josa gentoo org> AuthorDate: Fri Aug 18 15:04:18 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri Aug 18 15:04:18 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=a5e3b9c5 dev-lisp/clx: Bumps version to 0.7.4 dev-lisp/clx/clx-0.7.4.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-lisp/clx/clx-0.7.4.ebuild b/dev-lisp/clx/clx-0.7.4.ebuild new file mode 100644 index 00000000..98c9079f --- /dev/null +++ b/dev-lisp/clx/clx-0.7.4.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 extensions tests + common-lisp-install-asdf + dodoc NEWS CHANGES README* + doinfo manual/${PN}.info + use doc && dodoc manual/${PN}.pdf +}