diff options
author | Pacho Ramos <pacho@gentoo.org> | 2020-10-03 18:06:28 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2020-10-03 18:06:38 +0200 |
commit | 82e52cbf00fe78cb530bf48ad489f3e0a79ba62e (patch) | |
tree | e0b0b0b0a2eed0871b97c747f6525c74b0e6987a /gnome-extra/libgda | |
parent | media-libs/libraw: Stabilize 0.20.0 amd64, #744190 (diff) | |
download | gentoo-82e52cbf00fe78cb530bf48ad489f3e0a79ba62e.tar.gz gentoo-82e52cbf00fe78cb530bf48ad489f3e0a79ba62e.tar.bz2 gentoo-82e52cbf00fe78cb530bf48ad489f3e0a79ba62e.zip |
gnome-extra/libgda: appdata files are only installed with USE gtk
Closes: https://bugs.gentoo.org/743715
Thanks-to: Toralf Förster
Thanks-to: Kent Fredric
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'gnome-extra/libgda')
-rw-r--r-- | gnome-extra/libgda/libgda-5.2.9.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnome-extra/libgda/libgda-5.2.9.ebuild b/gnome-extra/libgda/libgda-5.2.9.ebuild index 73305fd1f2fd..3edc6cce0cad 100644 --- a/gnome-extra/libgda/libgda-5.2.9.ebuild +++ b/gnome-extra/libgda/libgda-5.2.9.ebuild @@ -146,5 +146,7 @@ pkg_preinst() { src_install() { gnome2_src_install # Use new location - mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die + if use gtk; then + mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die + fi } |