You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild

55 lines
977 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Free implementation of the OpenGL Character Renderer (GLC)"
HOMEPAGE="http://quesoglc.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-free.tar.bz2"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86"
IUSE="doc"
RDEPEND="
dev-libs/fribidi
media-libs/fontconfig
media-libs/freetype:2
virtual/glu
virtual/opengl"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
doc? (
app-doc/doxygen
dev-texlive/texlive-latexextra
virtual/latex-base
)"
src_prepare() {
default
rm -r src/fribidi || die
}
src_configure() {
# Uses its own copy of media-libs/glew with GLEW_MX
local myeconfargs=(
--disable-executables
--with-fribidi
--without-glew
)
econf "${myeconfargs[@]}"
}
src_compile() {
emake all $(usev doc)
}
src_install() {
default
use doc && dodoc -r docs/html
find "${ED}" -name '*.la' -delete || die
}