From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4C32513827E for ; Sat, 7 Dec 2013 20:38:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDF16E0B15; Sat, 7 Dec 2013 20:38:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FF2CE0B15 for ; Sat, 7 Dec 2013 20:38:03 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66CD233F371 for ; Sat, 7 Dec 2013 20:38:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2430E1100E3 for ; Sat, 7 Dec 2013 20:38:01 +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: <1386448732.564944b8394f03475dc940f1008e921479870351.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/terminfo/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/terminfo/terminfo-9999.ebuild X-VCS-Directories: dev-lisp/terminfo/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 564944b8394f03475dc940f1008e921479870351 X-VCS-Branch: master Date: Sat, 7 Dec 2013 20:38:01 +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: 49874cc3-01c0-4f73-8e24-9ffed585f44e X-Archives-Hash: 6f128fb59aa897ebb9668988f5038c17 commit: 564944b8394f03475dc940f1008e921479870351 Author: Chema Alonso gentoo org> AuthorDate: Sat Dec 7 20:38:52 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Sat Dec 7 20:38:52 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=564944b8 dev-lisp/terminfo: new live ebuild --- dev-lisp/terminfo/terminfo-9999.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-lisp/terminfo/terminfo-9999.ebuild b/dev-lisp/terminfo/terminfo-9999.ebuild new file mode 100644 index 0000000..02e5536 --- /dev/null +++ b/dev-lisp/terminfo/terminfo-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 git-2 + +DESCRIPTION="Common Lisp interface to the terminfo database." +HOMEPAGE="http://users.actrix.co.nz/mycroft/cl.html" +EGIT_REPO_URI="git://common-lisp.net/projects/linedit/linedit.git" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN} + sys-libs/ncurses" + +src_install() { + common-lisp-install-sources terminfo.lisp + common-lisp-install-asdf terminfo.asd +}