From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6C6271381F3 for ; Tue, 9 Jul 2013 22:57:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1268BE0B07; Tue, 9 Jul 2013 22:50:40 +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 31728E08EA for ; Tue, 9 Jul 2013 22:50:32 +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 948D733F150 for ; Tue, 9 Jul 2013 17:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 346F7E468F for ; Tue, 9 Jul 2013 17:18:40 +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: <1373390315.e8f93b18b71f2e2f4cc643a24a171c53326a0469.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-charms/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-charms/cl-charms-9999.ebuild X-VCS-Directories: dev-lisp/cl-charms/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: e8f93b18b71f2e2f4cc643a24a171c53326a0469 X-VCS-Branch: master Date: Tue, 9 Jul 2013 17:18:40 +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: f707c2ac-8701-4eeb-9c7f-6020d8d01c55 X-Archives-Hash: 46b5b0d8dcb23df33de14e5b0fcc4712 commit: e8f93b18b71f2e2f4cc643a24a171c53326a0469 Author: Chema Alonso gentoo org> AuthorDate: Tue Jul 9 17:18:35 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Tue Jul 9 17:18:35 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=e8f93b18 dev-lisp/cl-charms: add live ebuild --- dev-lisp/cl-charms/cl-charms-9999.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-lisp/cl-charms/cl-charms-9999.ebuild b/dev-lisp/cl-charms/cl-charms-9999.ebuild new file mode 100644 index 0000000..f35ffdc --- /dev/null +++ b/dev-lisp/cl-charms/cl-charms-9999.ebuild @@ -0,0 +1,23 @@ +# 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="A set of CFFI bindings for libcurses (ncurses), a GUI-like console" +HOMEPAGE="http://www.cliki.net/cl-charms" +EGIT_REPO_URI="git://gitorious.org/cl-charms/cl-charms.git" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lisp/alexandria + dev-lisp/cffi" + +src_prepare() { + sed -i -e '/:unix/s/ncurses.so/ncurses.so.5/' "${S}/src/charms.lisp" || die +}