2004-11-08 16:43:03 +00:00
|
|
|
# New ports collection makefile for: cairo
|
|
|
|
# Date created: 2004-10-06
|
|
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= cairo
|
2005-02-16 05:52:43 +00:00
|
|
|
PORTVERSION= 0.3.0
|
2004-11-08 16:43:03 +00:00
|
|
|
CATEGORIES= graphics
|
2005-02-16 05:52:43 +00:00
|
|
|
MASTER_SITES= http://cairographics.org/snapshots/
|
2004-11-08 16:43:03 +00:00
|
|
|
|
|
|
|
MAINTAINER= ahze@FreeBSD.org
|
|
|
|
COMMENT= Cairo is a vector graphics library with cross-device output support
|
|
|
|
|
|
|
|
LIB_DEPENDS= pixman.1:${PORTSDIR}/graphics/libpixman \
|
|
|
|
freetype.9:${PORTSDIR}/print/freetype2 \
|
|
|
|
png.5:${PORTSDIR}/graphics/png
|
|
|
|
|
|
|
|
USE_GNOME= gnometarget gnomehack
|
|
|
|
USE_LIBTOOL_VER=15
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CLFAGS}" \
|
|
|
|
LDFLAGS="${PTHREAD_LDFLAGS}"
|
|
|
|
|
2005-02-16 05:52:43 +00:00
|
|
|
OPTIONS+= GLITZ "Enable Glitz OpenGL Support" Off
|
|
|
|
|
|
|
|
.if defined(WITH_GLITZ)
|
|
|
|
LIB_DEPENDS+= glitz-glx.1:${PORTSDIR}/graphics/glitz
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
|
|
USE_XLIB= yes
|
|
|
|
.endif
|
2004-11-08 16:43:03 +00:00
|
|
|
|
2004-11-10 04:21:03 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
post-patch:
|
|
|
|
.if ${OSVERSION} < 500000
|
|
|
|
@${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \
|
|
|
|
${WRKSRC}/src/*.*
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|