blob: 97a310dcf57d9abc4c48955f87f053edb720a423 (
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
|
# $NetBSD: Makefile,v 1.19 2006/07/23 03:42:43 minskim Exp $
DISTNAME= glitz-0.5.6
CATEGORIES= graphics
MASTER_SITES= http://cairographics.org/snapshots/
MAINTAINER= adam@NetBSD.org
HOMEPAGE= http://freedesktop.org/Software/glitz
COMMENT= OpenGL 2D graphics library and a backend for gl output in cairo
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE= src/agl/glitz-agl.pc.in src/glx/glitz-glx.pc.in \
src/glitz.pc.in
.if exists(/System/Library/Frameworks/AGL.framework)
PLIST_SUBST+= AGL=""
.else
PLIST_SUBST+= AGL="@comment "
.endif
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mmipspro*)
CFLAGS+= -c99
.endif
.include "options.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|