diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2013-07-01 19:13:50 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2013-07-01 19:13:50 +0000 |
commit | d20298d4738f9ffd68578ee92e8d47498e131a2f (patch) | |
tree | 9ea0f79e74bd235c1dff8117c61ba22ed50277c7 /editors/libreoffice | |
parent | 77e098ee6285dc6864fd9ca02ddcf808aeb0ca68 (diff) | |
download | ports-d20298d4738f9ffd68578ee92e8d47498e131a2f.tar.gz ports-d20298d4738f9ffd68578ee92e8d47498e131a2f.zip |
Notes
Diffstat (limited to 'editors/libreoffice')
-rw-r--r-- | editors/libreoffice/Makefile | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index 5ede472ac7e2..3d8c3ef2910e 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -108,9 +108,11 @@ CONFIGURE_ARGS+= --disable-dependency-tracking \ CONFIGURE_ARGS+= --disable-epm \ --disable-gnome-vfs \ --disable-gstreamer \ + --disable-gtk3 \ --disable-kde \ --disable-kdeab \ --disable-linkoo \ + --disable-mergelibs \ --disable-zenity \ --enable-cairo-canvas \ --enable-graphite \ @@ -176,12 +178,11 @@ MAN1= libreoffice.1 \ MANCOMPRESSED= yes -OPTIONS_DEFINE= CUPS DEBUG GNOME GTK2 GTK3 JAVA KDE4 MERGELIBS MMEDIA PGSQL \ - SDK SYSTRAY TEST WEBDAV +OPTIONS_DEFINE= CUPS DEBUG GNOME GTK2 JAVA KDE4 MMEDIA PGSQL SDK SYSTRAY \ + TEST WEBDAV OPTIONS_DEFAULT=CUPS GTK2 JAVA_DESC= Add java support (XML Filters, macros) -MERGELIBS_DESC= Enable linking of big merged library MMEDIA_DESC= Enable multimedia backend for impress PGSQL_DESC= Build with PostgreSQL-SDBC driver SDK_DESC= Build with SDK @@ -226,15 +227,6 @@ CONFIGURE_ARGS+= --enable-gtk CONFIGURE_ARGS+= --disable-gtk .endif -.if ${PORT_OPTIONS:MGTK3} -BROKEN= requires GTK+ 3.2 and later -USE_GNOME+= gtk30 desktopfileutils -INSTALLS_ICONS= yes -CONFIGURE_ARGS+= --enable-gtk3 -.else -CONFIGURE_ARGS+= --disable-gtk3 -.endif - .if ${PORT_OPTIONS:MJAVA} # XXX jni.h from GNU classpath causes ABI conflicts. CONFLICTS_BUILD= classpath-[0-9]* @@ -291,13 +283,6 @@ CONFIGURE_ARGS+= --enable-kde4 CONFIGURE_ARGS+= --disable-kde4 .endif -.if ${PORT_OPTIONS:MMERGELIBS} -BROKEN= mergelibs causes runtime problems -CONFIGURE_ARGS+= --enable-mergelibs -.else -CONFIGURE_ARGS+= --disable-mergelibs -.endif - .if ${PORT_OPTIONS:MMMEDIA} USE_GSTREAMER= yes CONFIGURE_ARGS+= --enable-gstreamer-0-10 @@ -413,7 +398,7 @@ post-install: \( -type f -o -type l \) -print >> ${PLISTF} .endfor -.if ${PORT_OPTIONS:MGTK2} || ${PORT_OPTIONS:MGNOME} || ${PORT_OPTIONS:MGTK3} +.if ${PORT_OPTIONS:MGTK2} || ${PORT_OPTIONS:MGNOME} @${ECHO_CMD} "@exec ${LOCALBASE}/bin/update-desktop-database >/dev/null || ${TRUE}" >> ${TMPPLIST} @${ECHO_CMD} "@unexec ${LOCALBASE}/bin/update-desktop-database >/dev/null || ${TRUE}" >> ${TMPPLIST} .endif |