commit: 5f7845bcda91c3a5019be5d1aa934b0ead65c238 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org> AuthorDate: Wed Jun 11 09:33:55 2014 +0000 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org> CommitDate: Wed Jun 11 09:33:55 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=5f7845bc
dev-lisp/cl-glfw: new live ebuild --- dev-lisp/cl-glfw/cl-glfw-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-lisp/cl-glfw/cl-glfw-9999.ebuild b/dev-lisp/cl-glfw/cl-glfw-9999.ebuild new file mode 100644 index 0000000..63f7598 --- /dev/null +++ b/dev-lisp/cl-glfw/cl-glfw-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 git-2 + +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/glfw" + +src_install() { + common-lisp-install-sources lib + common-lisp-install-asdf + use doc && dodoc README && dohtml index.html + use examples && doins -r examples +}