0ce26b8bf6
* Disable JFreeReport for report builder. I have gotten build error. * Use OpenGL. * Use GStreamer 1.x Changelog: New features: see https://wiki.documentfoundation.org/ReleaseNotes/4.4 Summary: == Writer * Master Doument Templates * Shapes can have a TextBox * Improvements to Track Changes * Style dropdown * Line numbering easier to apply for headers and footers * Status bar improvements * Toolbar improvements * Navigator bookmarks * AutoCorrect improvements == Calc * Statistics Wizard (alternative to Excel's Add-in "Analysis ToolPak") * Direct conversion of formulas into static values * Formula engine (AGGREGATE spreadsheet function) * Toolbar improvements * Sheet context menu == Impress and Draw * Text of Master View Object Previews * Select and toggle off master elements directly via Delete * OpenGL transitions * Page Title field * Inherit current style of cells when inserting New row/column in table * Password for editing * Printing: use specified paper size * Zoom Mode button * Toolbar improvements * Menubar improvements == Math * Color support == Core * Included fonts (Caladea and Carlito) * Digitally signed PDF export * Drawing objects * Technical Dictionary == LibreOfficeKit * Impress supports tile rendering == Filters * Many import filters are improved * SharePoint OneDrive connection == GUI * Dialogs conversion to WidgetLayout finished * Sifr as the default icon theme on OS X * Changes to rulers * Start Center * New default templates * New color selector * Reworked paragraph line spacing dropdown * Bullet and Numbering dropdown * Sidebar changes * Context menu changes * Edit / Read-only mode * Tab changes * Firefox Themes * Image scaling * Simplification of Special Character dialog * Icon improvements * Locale in About dialog * UI text improvements == Localization * New languages/locales with locale data (ca-ES-valencia) * Improved language tools (spell-check dictionaries, thesaurus, hyphenation patterns) Bugfixes: https://wiki.documentfoundation.org/Releases/4.4.0/RC1 https://wiki.documentfoundation.org/Releases/4.4.0/RC2 https://wiki.documentfoundation.org/Releases/4.4.0/RC3
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# $NetBSD: options.mk,v 1.8 2015/02/04 18:19:34 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.libreoffice4
|
|
PKG_SUPPORTED_OPTIONS= java debug kde4 gtk3
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS"
|
|
PKG_SUGGESTED_OPTIONS= java
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= java kde4 gtk3
|
|
|
|
.if !empty(PKG_OPTIONS:Mjava)
|
|
USE_JAVA= yes
|
|
USE_JAVA2= yes
|
|
BUILD_DEPENDS+= apache-ant-[0-9]*:../../devel/apache-ant
|
|
FIND_PREFIX:= ANTDIR=apache-ant
|
|
CONFIGURE_ARGS+= --with-ant-home=${ANTDIR}
|
|
|
|
DEPENDS+= hsqldb18-[0-9]*:../../databases/hsqldb18
|
|
FIND_PREFIX+= HSQLDB_SYSDIR=hsqldb18
|
|
CONFIGURE_ARGS+= --with-hsqldb-jar=${HSQLDB_SYSDIR}/lib/java/hsqldb18/hsqldb.jar
|
|
.include "../../mk/find-prefix.mk"
|
|
CONFIGURE_ARGS+= --enable-ext-wiki-publisher \
|
|
--with-java \
|
|
--with-jdk-home=${PKG_JAVA_HOME} \
|
|
--without-system-beanshell \
|
|
--enable-scripting-beanshell \
|
|
--disable-scripting-javascript \
|
|
--disable-report-builder \
|
|
--with-system-hsqldb
|
|
.include "../../mk/java-env.mk"
|
|
.include "../../mk/java-vm.mk"
|
|
PLIST_SRC+= ${PLIST_SRC_DFLT:Q} ${PKGDIR}/PLIST.java
|
|
PLIST.java= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --without-java
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
CONFIGURE_ARGS+= --enable-selective-debuginfo="all"
|
|
PLIST_SRC= ${PLIST_SRC_DFLT:Q} ${PKGDIR}/PLIST.debug
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-release-build
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk3)
|
|
CONFIGURE_ARGS+= --enable-gtk3
|
|
PLIST.gtk3= yes
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gtk3
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mkde4)
|
|
CONFIGURE_ARGS+= --enable-kde4
|
|
CONFIGURE_ENV+= KDE4DIR="${LOCALBASE}"
|
|
PLIST.kde4= yes
|
|
.include "../../x11/kdelibs4/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-kde4
|
|
.endif
|