diff options
author | Maho Nakata <maho@FreeBSD.org> | 2008-04-03 21:30:51 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2008-04-03 21:30:51 +0000 |
commit | a7d63a8e2b85afb9f49494304d0d6faaa6da0990 (patch) | |
tree | a92961f0893f5b5ee1a3b8d4aa976ab14135c03a /editors/openoffice.org-3-devel | |
parent | 9e0f8b524ce57e83273895a4c61a577d93f20ea3 (diff) | |
download | ports-a7d63a8e2b85afb9f49494304d0d6faaa6da0990.tar.gz ports-a7d63a8e2b85afb9f49494304d0d6faaa6da0990.zip |
Notes
Diffstat (limited to 'editors/openoffice.org-3-devel')
-rw-r--r-- | editors/openoffice.org-3-devel/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice.org-3-devel/files/Makefile.knobs | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/editors/openoffice.org-3-devel/Makefile b/editors/openoffice.org-3-devel/Makefile index a5be0f6722e7..2459afd32e60 100644 --- a/editors/openoffice.org-3-devel/Makefile +++ b/editors/openoffice.org-3-devel/Makefile @@ -129,7 +129,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf #i85469# BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant -LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base .if !defined(WITH_GPC) LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl .endif @@ -146,7 +145,6 @@ MAXMODULES?= 1 CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp \ --with-gnu-patch=${LOCALBASE}/bin/gpatch \ --enable-crashdump=yes \ - --enable-cups=yes \ --with-system-zlib .if ${ARCH} == amd64 WITHOUT_MOZILLA= yes diff --git a/editors/openoffice.org-3-devel/files/Makefile.knobs b/editors/openoffice.org-3-devel/files/Makefile.knobs index 27ed04f87275..6370fb721b04 100644 --- a/editors/openoffice.org-3-devel/files/Makefile.knobs +++ b/editors/openoffice.org-3-devel/files/Makefile.knobs @@ -13,6 +13,13 @@ CONFIGURE_ARGS+= --with-vba-package-format="builtin" CONFIGURE_ARGS+= --enable-kde QTDIR="${QT_PREFIX}" .endif +.if defined(WITHOUT_CUPS) +CONFIGURE_ARGS+= --enable-cups=no +.else +LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base +CONFIGURE_ARGS+= --enable-cups=yes +.endif + .if defined(WITHOUT_MOZILLA) CONFIGURE_ARGS+= --disable-mozilla .else @@ -94,6 +101,11 @@ pre-fetch: @${ECHO} "See http://www.freetype.org/patents.html for details" .endif .endif +.if !defined(WITHOUT_CUPS) + @${ECHO} + @${ECHO} "You can compile OOo without CUPS support with" + @${ECHO} "make -DWITHOUT_CUPS" +.endif .if !defined(WITH_KDE) @${ECHO} @${ECHO} "You can compile OOo to use Qt/KDE vclplug with" |