blob: 96035adb358efc119b6f0a2098844af3c5de78d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= sdl_ttf
PORTVERSION= 2.0.11
PORTREVISION= 7
CATEGORIES= graphics
MASTER_SITES= http://www.libsdl.org/projects/SDL_ttf/release/
DISTNAME= SDL_ttf-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Library to use TrueType fonts to render text in SDL applications
LICENSE= ZLIB
LIB_DEPENDS= libfreetype.so:print/freetype2
USES= gmake iconv libtool pathfix pkgconfig
USE_SDL= sdl
USE_XORG= x11
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
USE_LDCONFIG= yes
OPTIONS_DEFINE= OPENGL
OPTIONS_DEFAULT= OPENGL
OPENGL_USE= GL=yes
post-install:
${INSTALL_PROGRAM} ${WRKSRC}/.libs/glfont ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/.libs/showfont \
${STAGEDIR}${PREFIX}/bin/sdl-showfont
.include <bsd.port.mk>
|