diff options
author | bland <bland@FreeBSD.org> | 2011-03-29 20:43:28 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2011-03-29 20:43:28 +0800 |
commit | d3f986f361dc7f42018847af8d0407e9cf86bf21 (patch) | |
tree | 2f87006e5453ec6028f2abaa4c28250b2329e2ab /graphics/cairo/Makefile | |
parent | a9d1384cd23a62ea1d2f229e4af4f6ac1e27543f (diff) | |
download | freebsd-ports-gnome-d3f986f361dc7f42018847af8d0407e9cf86bf21.tar.gz freebsd-ports-gnome-d3f986f361dc7f42018847af8d0407e9cf86bf21.tar.zst freebsd-ports-gnome-d3f986f361dc7f42018847af8d0407e9cf86bf21.zip |
Make GLib dependency optional.
Diffstat (limited to 'graphics/cairo/Makefile')
-rw-r--r-- | graphics/cairo/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile index e501428f90be..1fdb0a986df8 100644 --- a/graphics/cairo/Makefile +++ b/graphics/cairo/Makefile @@ -30,7 +30,7 @@ CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \ --disable-directfb \ --enable-tee \ --enable-gobject -USE_GNOME= glib20 gnomehack ltverhack referencehack +USE_GNOME= gnomehack ltverhack referencehack USE_AUTOTOOLS= libtool USE_LDCONFIG= yes @@ -46,7 +46,8 @@ PLIST_SUB+= X11="" .endif OPTIONS+= GL "Enable OpenGL Support" Off \ - XCB "Enable XCB (X C-language Binding) Support" On + XCB "Enable XCB (X C-language Binding) Support" On \ + GLIB "Enable GObject Functions Feature" On .include <bsd.port.pre.mk> @@ -70,6 +71,13 @@ CONFIGURE_ARGS+= --disable-xcb PLIST_SUB+= XCB="@comment " .endif +.if defined(WITH_GLIB) +USE_GNOME+= glib20 +.else +CONFIGURE_ARGS+= --enable-gobject=no +PLIST_SUB+= GLIB="@comment " +.endif + post-patch: @${REINPLACE_CMD} -e '/test/s/==/=/g' \ -e '/LIBS/s/-lrt//' \ |