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 92F2B1382C5 for ; Sat, 17 Mar 2018 20:56:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C26CE0833; Sat, 17 Mar 2018 20:56:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 751B6E0833 for ; Sat, 17 Mar 2018 20:56:02 +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 07E07335CA7 for ; Sat, 17 Mar 2018 20:56:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CD43232 for ; Sat, 17 Mar 2018 20:55:59 +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: <1521320170.47a5d7b3cebdb2f0d7e29463064248530f137ffb.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-png/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-png/cl-png-0.6.ebuild X-VCS-Directories: dev-lisp/cl-png/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 47a5d7b3cebdb2f0d7e29463064248530f137ffb X-VCS-Branch: master Date: Sat, 17 Mar 2018 20:55:59 +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: c4366ad9-1e55-4599-9a83-a06f63071bd0 X-Archives-Hash: f904d529f7f070aa82f2ad1860f0509e commit: 47a5d7b3cebdb2f0d7e29463064248530f137ffb Author: Chema Alonso Josa gentoo org> AuthorDate: Sat Mar 17 20:56:10 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Sat Mar 17 20:56:10 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=47a5d7b3 dev-lisp/cl-png: Adds new package dev-lisp/cl-png/cl-png-0.6.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/cl-png/cl-png-0.6.ebuild b/dev-lisp/cl-png/cl-png-0.6.ebuild new file mode 100644 index 00000000..ec514742 --- /dev/null +++ b/dev-lisp/cl-png/cl-png-0.6.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 + +MY_PV="REL_${PV//./_}" + +DESCRIPTION="CL-PNG is a Common Lisp library for reading and writing PNG files" +HOMEPAGE="http://www.ljosa.com/~ljosa/software/cl-png/" +SRC_URI="https://github.com/ljosa/cl-png/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="media-libs/libpng:0 + dev-lisp/cffi" + +S="${WORKDIR}/${PN}-${MY_PV}" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf png.asd png-test.asd + dodoc -r AUTHORS NEWS README doc PngSuite +}