diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-10-03 03:24:44 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-10-03 03:24:44 +0800 |
commit | ff539389375766ec2d5cb1b3866283ba33740461 (patch) | |
tree | b37972b3d75ebe541e02992419ee4f3b89d94037 /graphics | |
parent | 01e47787e50c229addf1076e3c7d2c087b1e6bb3 (diff) | |
download | marcuscom-ports-ff539389375766ec2d5cb1b3866283ba33740461.tar.gz marcuscom-ports-ff539389375766ec2d5cb1b3866283ba33740461.tar.zst marcuscom-ports-ff539389375766ec2d5cb1b3866283ba33740461.zip |
Kill off directfb backend. This leads to a very nice circular dependancy problem.
Cairo depends on:
directfb -> sdl -> pulse -> gconf -> gtk20 > cairo == profit.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14779 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/cairo/Makefile | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile index 6ed2b8f2b..9ae490779 100644 --- a/graphics/cairo/Makefile +++ b/graphics/cairo/Makefile @@ -3,7 +3,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD: ports/graphics/cairo/Makefile,v 1.47 2010/06/03 12:35:42 pav Exp $ -# $MCom: ports/graphics/cairo/Makefile,v 1.93 2010/04/03 05:40:01 marcus Exp $ +# $MCom: ports/graphics/cairo/Makefile,v 1.98 2010/09/30 08:10:21 kwm Exp $ # PORTNAME= cairo @@ -26,6 +26,7 @@ LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \ + --disable-directfb \ --enable-gobject USE_GNOME= glib20 gnomehack ltverhack referencehack USE_AUTOTOOLS= libtool:22 @@ -42,21 +43,11 @@ USE_XORG+= xrender PLIST_SUB+= X11="" .endif -OPTIONS+= DIRECTFB "Enable DirectFB Support" Off \ - GL "Enable OpenGL Support" Off \ +OPTIONS+= GL "Enable OpenGL Support" Off \ XCB "Enable XCB (X C-language Binding) Support" On .include <bsd.port.pre.mk> -.if defined(WITH_DIRECTFB) -LIB_DEPENDS+= directfb-1.4.3:${PORTSDIR}/devel/directfb -CONFIGURE_ARGS+= --enable-directfb -PLIST_SUB+= DIRECTFB="" -.else -CONFIGURE_ARGS+= --disable-directfb -PLIST_SUB+= DIRECTFB="@comment " -.endif - .if defined(WITH_GL) USE_GL= gl CONFIGURE_ARGS+= --enable-gl |