openbsd-ports/graphics/ftgl/Makefile
phessler 2571ec5d09 FTGL is a font rendering library for OpenGL applications.
Supported rendering modes are:

    * Bitmaps
    * Anti-aliased pixmaps
    * Texture maps
    * Outlines
    * Polygon meshes
    * Extruded polygon meshes


FTGL uses the Freetype font library to open and decode standard font
files. It then takes that output and stores it in a format most
efficient for OpenGL rendering.

FTGL is designed to be used in commercial quality software. It has been
written with performance, robustness and simplicity in mind.

FTGL is free software. You may use it, modify it and redistribute it
under the terms of the MIT license or the GNU LGPL, at your option.

ok merdely@
2009-06-06 05:18:56 +00:00

30 lines
796 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2009/06/06 05:18:56 phessler Exp $
COMMENT = font rendering library for OpenGL applications
DISTNAME = ftgl-2.1.3-rc5
SHARED_LIBS = ftgl 0.0 # 2.1
CATEGORIES = graphics
HOMEPAGE = http://ftgl.wiki.sourceforge.net
MAINTAINER = Peter Hessler <phessler@openbsd.org>
# MIT license or the GNU LGPL, at your option.
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WRKDIST = ${WRKDIR}/${DISTNAME:S/-rc/~rc/}
WANTLIB = GL GLU ICE SM X11 Xau Xdmcp Xext Xmu Xt freetype m z
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ftgl/}
USE_LIBTOOL = Yes
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS += ${CONFIGURE_SHARED} \
--with-gl-inc=${X11BASE}/include \
--with-gl-lib=${X11BASE}/lib
.include <bsd.port.mk>