diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-11-01 21:19:40 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-11-01 21:19:40 +0800 |
commit | 837afab9414b559323bd20c7a9fe30ba0e6cf639 (patch) | |
tree | 111a90c14670fc165019db10aab0a24cf44d5199 /graphics/cairo/Makefile | |
parent | 1ac5a09d06c2d5de3e7ecb14cf40c9e932e5c611 (diff) | |
download | marcuscom-ports-837afab9414b559323bd20c7a9fe30ba0e6cf639.tar.gz marcuscom-ports-837afab9414b559323bd20c7a9fe30ba0e6cf639.tar.zst marcuscom-ports-837afab9414b559323bd20c7a9fe30ba0e6cf639.zip |
- Update to 1.5.2
- Remove Xorg 6.x support
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9898 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/cairo/Makefile')
-rw-r--r-- | graphics/cairo/Makefile | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile new file mode 100644 index 000000000..caa2f44e9 --- /dev/null +++ b/graphics/cairo/Makefile @@ -0,0 +1,67 @@ +# New ports collection makefile for: cairo +# Date created: 2004-10-06 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/graphics/cairo/Makefile,v 1.59 2007/09/09 22:45:26 mezz Exp $ +# + +PORTNAME= cairo +PORTVERSION= 1.5.2 +PORTREVISION?= 0 +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 + +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} -I${X11BASE}/include" \ + 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 |