blob: af19c97314f75b6daef90bd442918a9f290308a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit common-lisp-3 git-r3
DESCRIPTION="A set of CFFI bindings to the OpenGL, GLU and GLUT APIs."
HOMEPAGE="http://common-lisp.net/project/cl-opengl/"
EGIT_REPO_URI="git://github.com/3b/${PN}"
LICENSE="BSD"
SLOT="0"
IUSE=""
RDEPEND="dev-lisp/cffi
media-libs/freeglut"
CLSYSTEMS="cl-opengl cl-glu cl-glut cl-glut-examples"
src_install() {
common-lisp-install-sources gl glu glut examples
common-lisp-install-asdf
dodoc README
}
|