diff options
author | ale <ale@FreeBSD.org> | 2006-09-01 13:47:55 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-09-01 13:47:55 +0800 |
commit | 87860ce67dcee7dfa72eb7fc824f43444a492a08 (patch) | |
tree | b64e8c002bce74c3c8bf4eb551511c7a5405a944 /editors/openoffice-3 | |
parent | 85e7dd3a5fd312feb34075d226fa984fef0a8c21 (diff) | |
download | freebsd-ports-gnome-87860ce67dcee7dfa72eb7fc824f43444a492a08.tar.gz freebsd-ports-gnome-87860ce67dcee7dfa72eb7fc824f43444a492a08.tar.zst freebsd-ports-gnome-87860ce67dcee7dfa72eb7fc824f43444a492a08.zip |
Add a knob to disable Gnome VFS support.
Approved by: maho
Diffstat (limited to 'editors/openoffice-3')
-rw-r--r-- | editors/openoffice-3/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice-3/files/Makefile.knobs | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/editors/openoffice-3/Makefile b/editors/openoffice-3/Makefile index 10afe3b574d9..f7dd273fc15b 100644 --- a/editors/openoffice-3/Makefile +++ b/editors/openoffice-3/Makefile @@ -33,7 +33,7 @@ COMMENT?= Integrated wordprocessor/dbase/spreadsheet/drawing/chart/browser OOOVERSION= 2.0.4.m1 NO_LATEST_LINK= yes -USE_GNOME= gtk20 gnomevfs2 +USE_GNOME= gtk20 MOZILLA_VERSION= 1.7.5 MOZILLA_SOURCE= mozilla-source-${MOZILLA_VERSION}.tar.gz .if !defined(WITHOUT_MOZILLA) diff --git a/editors/openoffice-3/files/Makefile.knobs b/editors/openoffice-3/files/Makefile.knobs index 8e007114522f..5f2a32adb100 100644 --- a/editors/openoffice-3/files/Makefile.knobs +++ b/editors/openoffice-3/files/Makefile.knobs @@ -25,6 +25,12 @@ CONFIGURE_ARGS+= --disable-mozilla CONFIGURE_ARGS+= --enable-build-mozilla .endif +.if defined(WITHOUT_GNOMEVFS) +CONFIGURE_ARGS+= --disable-gnome-vfs +.else +USE_GNOME+= gnomevfs2 +.endif + .if defined(ALL_LOCALIZED_LANGS) CONFIGURE_ARGS+= --with-lang=ALL .else @@ -68,6 +74,11 @@ pre-fetch: @${ECHO} "You can compile OOo without Mozilla connectivity with" @${ECHO} "make -DWITHOUT_MOZILLA" .endif +.if !defined(WITHOUT_GNOMEVFS) + @${ECHO} + @${ECHO} "You can compile OOo without gnome VFS support with" + @${ECHO} "make -DWITHOUT_GNOMEVFS" +.endif #.if !defined(WITH_TTF_BYTECODE_ENABLED) # @${ECHO} # @${ECHO} "You may get better quality of glyphs" |