[Bug 226842] editors/libreoffice: installation fails on staging
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Fri Aug 7 13:58:21 UTC 2020
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226842
--- Comment #9 from Mikhail Teterin <mi at FreeBSD.org> ---
Disabling GNOME-option had no effect. I forced it to install with this change:
Index: Makefile
===================================================================
--- Makefile (revision 544329)
+++ Makefile (working copy)
@@ -297,8 +297,9 @@
@cd ${STAGEDIR}${PREFIX} && \
${FIND} -s bin lib man -not -type d >> ${TMPPLIST}
.for subdir in appdata application-registry applications bash-completion icons
mime mime-info
- @cd ${STAGEDIR}${PREFIX} && \
- ${FIND} -s share/${subdir} -not -type d >> ${TMPPLIST}
+ @if [ -d ${STAGEDIR}${PREFIX}/share/${subdir} ]; then \
+ cd ${STAGEDIR}${PREFIX} && \
+ ${FIND} -s share/${subdir} -not -type d >> ${TMPPLIST} ; fi
.endfor
post-install-SDK-on:
My options-file is:
# This file is auto-generated by 'make config'.
# Options for libreoffice-6.4.5
_OPTIONS_READ=libreoffice-6.4.5
_FILE_COMPLETE_OPTIONS_LIST=CUPS DOCS GNOME GTK3 JAVA KF5 MMEDIA PGSQL QT5 SDK
TEST WEBDAV
OPTIONS_FILE_SET+=CUPS
OPTIONS_FILE_UNSET+=DOCS
OPTIONS_FILE_SET+=GNOME
OPTIONS_FILE_SET+=GTK3
OPTIONS_FILE_UNSET+=JAVA
OPTIONS_FILE_UNSET+=KF5
OPTIONS_FILE_SET+=MMEDIA
OPTIONS_FILE_UNSET+=PGSQL
OPTIONS_FILE_UNSET+=QT5
OPTIONS_FILE_UNSET+=SDK
OPTIONS_FILE_UNSET+=TEST
OPTIONS_FILE_SET+=WEBDAV
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-office
mailing list