# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 EGIT_REPO_URI="https://github.com/behdad/glyphy.git" inherit git-r3 autotools DESCRIPTION="Glyphy is an experimental font renderer using glsl shaders" HOMEPAGE="https://github.com/behdad/glyphy" #SRC_URI="" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="-*" IUSE="" # also need an OpenGL implementation, but I'll assume that's installed for now if you have glew/glut installed RDEPEND=">=media-libs/freeglut-3.0 media-libs/glew" DEPEND="${DEPEND} ${RDEPEND}" src_prepare() { eautoreconf default } src_configure() { econf || die "econf failed" }