Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/zpng/
Date: Sun, 28 Feb 2016 23:04:18
Message-Id: 1456700640.1e586ab6811c8459a3ac5dd8effda7c9eece018f.nimiux@gentoo
1 commit: 1e586ab6811c8459a3ac5dd8effda7c9eece018f
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 23:04:00 2016 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 23:04:00 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=1e586ab6
7
8 dev-lisp/zpng: Bump to version 1.2.2
9
10 dev-lisp/zpng/zpng-1.2.2.ebuild | 29 +++++++++++++++++++++++++++++
11 1 file changed, 29 insertions(+)
12
13 diff --git a/dev-lisp/zpng/zpng-1.2.2.ebuild b/dev-lisp/zpng/zpng-1.2.2.ebuild
14 new file mode 100644
15 index 0000000..9c3645a
16 --- /dev/null
17 +++ b/dev-lisp/zpng/zpng-1.2.2.ebuild
18 @@ -0,0 +1,29 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=5
24 +
25 +inherit common-lisp-3
26 +
27 +MY_P="release-${PV}"
28 +
29 +DESCRIPTION="A Common Lisp library for creating PNG files."
30 +HOMEPAGE="http://www.xach.com/lisp/zpng/"
31 +SRC_URI="https://github.com/xach/${PN}/archive/${MY_P}.tar.gz"
32 +
33 +LICENSE="BSD-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="dev-lisp/salza2"
39 +
40 +S="${WORKDIR}/${PN}-${MY_P}"
41 +
42 +src_install() {
43 + common-lisp-install-sources *.lisp
44 + common-lisp-install-asdf
45 + dohtml doc/{index.html,*.png}
46 + docinto examples && dodoc doc/*.lisp
47 +}