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/cl-opengl/
Date: Mon, 02 Dec 2013 15:22:00
Message-Id: 1385997761.d4f51f90f1c18b856477190623ba77ce917ab42b.nimiux@gentoo
1 commit: d4f51f90f1c18b856477190623ba77ce917ab42b
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 2 15:22:41 2013 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 2 15:22:41 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=d4f51f90
7
8 dev-lisp/cl-opengl: new live ebuild
9
10 ---
11 dev-lisp/cl-opengl/cl-opengl-9999.ebuild | 27 +++++++++++++++++++++++++++
12 1 file changed, 27 insertions(+)
13
14 diff --git a/dev-lisp/cl-opengl/cl-opengl-9999.ebuild b/dev-lisp/cl-opengl/cl-opengl-9999.ebuild
15 new file mode 100644
16 index 0000000..9fd323a
17 --- /dev/null
18 +++ b/dev-lisp/cl-opengl/cl-opengl-9999.ebuild
19 @@ -0,0 +1,27 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=5
25 +
26 +inherit common-lisp-3 git-2
27 +
28 +DESCRIPTION="A set of CFFI bindings to the OpenGL, GLU and GLUT APIs."
29 +HOMEPAGE="http://common-lisp.net/project/cl-opengl/"
30 +EGIT_REPO_URI="git://github.com/3b/${PN}.git"
31 +
32 +LICENSE="BSD"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
35 +IUSE=""
36 +
37 +RDEPEND="dev-lisp/cffi
38 + media-libs/freeglut"
39 +
40 +CLSYSTEMS="cl-opengl cl-glu cl-glut cl-glut-examples"
41 +
42 +src_install() {
43 + common-lisp-install-sources gl glu glut examples
44 + common-lisp-install-asdf
45 + dodoc README
46 +}