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 31871138A1F for ; Fri, 18 Apr 2014 18:00:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94A51E0A53; Fri, 18 Apr 2014 18:00:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25279E0A53 for ; Fri, 18 Apr 2014 18:00:52 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 44B0F340099 for ; Fri, 18 Apr 2014 18:00:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 1D26518167 for ; Fri, 18 Apr 2014 18:00:49 +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: <1397844090.098faa3707931a5e497c0026fd1a3362d1b0849d.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-launch/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-launch/cl-launch-4.0.3.ebuild X-VCS-Directories: dev-lisp/cl-launch/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 098faa3707931a5e497c0026fd1a3362d1b0849d X-VCS-Branch: master Date: Fri, 18 Apr 2014 18:00:49 +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: cf644063-6e1c-4aca-9655-ca393053c733 X-Archives-Hash: 5e4e5dd7fc584570fc2cea37bab392fb commit: 098faa3707931a5e497c0026fd1a3362d1b0849d Author: Chema Alonso gentoo org> AuthorDate: Fri Apr 18 18:01:30 2014 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri Apr 18 18:01:30 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=098faa37 dev-lisp/cl-launch: bump to version 4.0.3 --- dev-lisp/cl-launch/cl-launch-4.0.3.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-lisp/cl-launch/cl-launch-4.0.3.ebuild b/dev-lisp/cl-launch/cl-launch-4.0.3.ebuild new file mode 100644 index 0000000..35b00a9 --- /dev/null +++ b/dev-lisp/cl-launch/cl-launch-4.0.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +DESCRIPTION="cl-launch is a unix utility to make your Lisp software easily invokable from the shell command-line." +HOMEPAGE="http://www.cliki.net/cl-launch" +SRC_URI="http://common-lisp.net/project/xcvb/${PN}/${P}.tar.gz" +LICENSE="LLGPL-2.1" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +src_install() { + mkdir -p "${D}/usr/bin" || die + emake PREFIX="${D}/usr" install +}