diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-06-05 22:47:22 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-06-05 22:47:22 +0000 |
commit | c1e7bbb21edf1c953fdae3bf0f5b0821f32b0c8a (patch) | |
tree | c92c7c8d1b7b63ead617e68f7a1880677ad1a850 /graphics/quesoglc/Makefile | |
parent | 7da6474727e138fe0913ebba368c6773a1fda279 (diff) |
Notes
Diffstat (limited to 'graphics/quesoglc/Makefile')
-rw-r--r-- | graphics/quesoglc/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/graphics/quesoglc/Makefile b/graphics/quesoglc/Makefile new file mode 100644 index 000000000000..d607caa3a6ad --- /dev/null +++ b/graphics/quesoglc/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: quesoglc +# Date created: 04 Jun 2009 +# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= quesoglc +PORTVERSION= 0.7.2 +CATEGORIES= graphics +MASTER_SITES= SF + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Free implementation of the OpenGL Character Renderer + +LIB_DEPENDS= fribidi.0:${PORTSDIR}/converters/fribidi \ + freetype.9:${PORTSDIR}/print/freetype2 \ + fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig + +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_GNOME= gnomehack +USE_GL= gl glu glut +USE_LDCONFIG= yes + +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" CPPFLAGS="-I${LOCALBASE}/include" +# needs GLEW MX (multiple rendering contexts), so system glew won't go +CONFIGURE_ARGS= --without-glew --with-fribidi + +PORTDOCS= README + +.if !defined(NOPORTDOCS) +post-install: + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |