mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
81 lines
2.0 KiB
Makefile
81 lines
2.0 KiB
Makefile
# 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.89 2008/12/16 03:06:44 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= cairo
|
|
PORTVERSION= 1.8.8
|
|
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= gnomehack ltverhack referencehack
|
|
USE_AUTOTOOLS= libtool:22
|
|
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 \
|
|
XCB "Enable XCB (X C-language Binding) Support" On
|
|
|
|
.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
|
|
|
|
.ifdef(WITH_XCB)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xcb-renderutil.pc:${PORTSDIR}/x11/xcb-util
|
|
RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xcb-renderutil.pc:${PORTSDIR}/x11/xcb-util
|
|
CONFIGURE_ARGS+= --enable-xcb
|
|
PLIST_SUB+= XCB=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-xcb
|
|
PLIST_SUB+= XCB="@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
|