summaryrefslogtreecommitdiff
blob: aa5a10a943d64c707e988c1de9e4b630b1f69e1d (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="Set of CFFI bindings for the GLFW OpenGL helper library"
HOMEPAGE="http://www.cliki.net/cl-glfw"
EGIT_REPO_URI="git://repo.or.cz/${PN}.git"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"

RDEPEND="media-libs/ftgl
	media-libs/glfw"

src_install() {
	common-lisp-install-sources lib
	common-lisp-install-asdf
	use doc && dodoc README index.html
	use examples && doins -r examples
}