diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-08-12 13:21:00 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-08-12 13:21:00 +0800 |
commit | 4e5f867d1cee627ce1fb68130b240730663e627a (patch) | |
tree | c9e819c09fa9c9b098b52ea578e53825e8994f97 /graphics/cairo/Makefile | |
parent | b28fc9344ef8de8ea08f704d4776fce6615264d8 (diff) | |
download | marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.tar marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.tar.gz marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.tar.bz2 marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.tar.lz marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.tar.xz marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.tar.zst marcuscom-ports-4e5f867d1cee627ce1fb68130b240730663e627a.zip |
Update to 1.7.4.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11280 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/cairo/Makefile')
-rw-r--r-- | graphics/cairo/Makefile | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile new file mode 100644 index 000000000..4b31d3f4f --- /dev/null +++ b/graphics/cairo/Makefile @@ -0,0 +1,69 @@ +# New ports collection makefile for: cairo +# Date created: 2004-10-06 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD: ports/graphics/cairo/Makefile,v 1.37 2008/06/30 20:16:18 mezz Exp $ +# $MCom: ports-stable/graphics/cairo/Makefile,v 1.3 2008/06/16 21:35:57 mezz Exp $ +# + +PORTNAME= cairo +PORTVERSION= 1.7.4 +PORTREVISION?= 0 +PORTEPOCH?= 1 +CATEGORIES= graphics +#MASTER_SITES= http://cairographics.org/releases/ +MASTER_SITES= http://cairographics.org/snapshots/ + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Vector graphics library with cross-device output support + +.if !defined(REFERENCE_PORT) + +LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ + png.5:${PORTSDIR}/graphics/png \ + fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ + pixman-1.9:${PORTSDIR}/x11/pixman + +CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \ + --enable-pdf \ + --enable-ps +USE_GNOME= gnometarget gnomehack ltverhack referencehack +USE_AUTOTOOLS= libtool:15 +USE_LDCONFIG= yes + +CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" \ + LDFLAGS="${PTHREAD_LIBS}" + +.if defined(WITHOUT_X11) +CONFIGURE_ARGS+=--disable-xlib +PLIST_SUB+= X11="@comment " +.else +USE_XORG+= xrender +PLIST_SUB+= X11="" +.endif + +OPTIONS+= GLITZ "Enable Glitz OpenGL Support" Off + +.include <bsd.port.pre.mk> + +.if defined(WITH_GLITZ) +LIB_DEPENDS+= glitz-glx.1:${PORTSDIR}/graphics/glitz +CONFIGURE_ARGS+= --enable-glitz +PLIST_SUB+= GLITZ="" +.else +CONFIGURE_ARGS+= --disable-glitz +PLIST_SUB+= GLITZ="@comment " +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' \ + ${WRKSRC}/test/Makefile.in + @${REINPLACE_CMD} -e 's|-lcairo|-lcairo ${PTHREAD_LIBS}|' \ + ${WRKSRC}/src/*.pc.in + @${REINPLACE_CMD} -e 's|src test doc|src doc|; \ + s|@CAIRO_HAS_PNG_FUNCTIONS_TRUE@am__append_1 = test||' \ + ${WRKSRC}/Makefile.in + +.include <bsd.port.post.mk> + +.endif |