diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-27 10:32:02 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-27 11:56:14 +0200 |
commit | 52fd68f949964514e3e6874ad23f9e93c0799c37 (patch) | |
tree | a55bfa9633d4ebb2e3db28afdbe41c5ed67590df /app-office | |
parent | www-client/opera: Version 62.0.3331.18 (diff) | |
download | gentoo-52fd68f949964514e3e6874ad23f9e93c0799c37.tar.gz gentoo-52fd68f949964514e3e6874ad23f9e93c0799c37.tar.bz2 gentoo-52fd68f949964514e3e6874ad23f9e93c0799c37.zip |
app-office/libreoffice: Switch back to xdg-utils.eclass for now
Bug: https://bugs.gentoo.org/683302
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/libreoffice/libreoffice-6.2.9999.ebuild | 18 | ||||
-rw-r--r-- | app-office/libreoffice/libreoffice-9999.ebuild | 18 |
2 files changed, 26 insertions, 10 deletions
diff --git a/app-office/libreoffice/libreoffice-6.2.9999.ebuild b/app-office/libreoffice/libreoffice-6.2.9999.ebuild index 0fa4dccc4d59..64438bc0c90a 100644 --- a/app-office/libreoffice/libreoffice-6.2.9999.ebuild +++ b/app-office/libreoffice/libreoffice-6.2.9999.ebuild @@ -21,7 +21,7 @@ BRANDING="${PN}-branding-gentoo-0.8.tar.xz" # PATCHSET="${P}-patchset-01.tar.xz" [[ ${MY_PV} == *9999* ]] && inherit git-r3 -inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg +inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg-utils DESCRIPTION="A full office productivity suite" HOMEPAGE="https://www.libreoffice.org" @@ -283,6 +283,7 @@ pkg_pretend() { pkg_setup() { java-pkg-opt-2_pkg_setup python-single-r1_pkg_setup + xdg_environment_reset [[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_setup } @@ -306,7 +307,7 @@ src_unpack() { } src_prepare() { - xdg_src_prepare + default # sandbox violations on many systems, we don't need it. Bug #646406 sed -i \ @@ -539,7 +540,14 @@ src_install() { fi } -pkg_preinst() { - java-utils-2_pkg_preinst - xdg_pkg_preinst +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update } diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index 25021012eee0..2a035a036e8b 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -21,7 +21,7 @@ BRANDING="${PN}-branding-gentoo-0.8.tar.xz" # PATCHSET="${P}-patchset-01.tar.xz" [[ ${MY_PV} == *9999* ]] && inherit git-r3 -inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg +inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg-utils DESCRIPTION="A full office productivity suite" HOMEPAGE="https://www.libreoffice.org" @@ -281,6 +281,7 @@ pkg_pretend() { pkg_setup() { java-pkg-opt-2_pkg_setup python-single-r1_pkg_setup + xdg_environment_reset [[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_setup } @@ -304,7 +305,7 @@ src_unpack() { } src_prepare() { - xdg_src_prepare + default # sandbox violations on many systems, we don't need it. Bug #646406 sed -i \ @@ -537,7 +538,14 @@ src_install() { fi } -pkg_preinst() { - java-utils-2_pkg_preinst - xdg_pkg_preinst +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update } |