mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
34 lines
885 B
Makefile
34 lines
885 B
Makefile
# New ports collection makefile for: gltt
|
|
# Date created: 12 Aug 2002
|
|
# Whom: Igor Pokrovsky <tiamat@telegraph.spb.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gltt
|
|
PORTVERSION= 2.5.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://gltt.sourceforge.net/download/
|
|
|
|
MAINTAINER= tiamat@comset.net
|
|
COMMENT= TrueType fonts rendering using OpenGL
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_MESA= yes
|
|
USE_FREETYPE= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \
|
|
LIBS="-L${X11BASE}/lib"
|
|
CONFIGURE_ARGS= --with-ttf-includes=${LOCALBASE}/include/freetype1 \
|
|
--with-ttf-libraries=${LOCALBASE}/lib \
|
|
--with-gl-includes=${X11BASE}/include \
|
|
--with-gl-libraries=${X11BASE}/lib \
|
|
--with-glut-includes=${X11BASE}/include \
|
|
--with-glut-libraries=${X11BASE}/lib
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include <bsd.port.mk>
|