commit:     c7c99395c686f50367155fdc220540f8346d3bf0
Author:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 25 12:21:09 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 26 22:56:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c99395

media-video/obs-studio: Use 'gnome2-utils' to update the icon cache.

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3643

 media-video/obs-studio/obs-studio-17.0.2.ebuild | 12 +++++++-
 media-video/obs-studio/obs-studio-9999.ebuild   | 41 ++++++++++++++-----------
 2 files changed, 34 insertions(+), 19 deletions(-)

diff --git a/media-video/obs-studio/obs-studio-17.0.2.ebuild 
b/media-video/obs-studio/obs-studio-17.0.2.ebuild
index 2e48f5f..5a3784f 100644
--- a/media-video/obs-studio/obs-studio-17.0.2.ebuild
+++ b/media-video/obs-studio/obs-studio-17.0.2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils gnome2-utils
 
 if [[ ${PV} == *9999 ]]; then
        inherit git-r3
@@ -71,7 +71,13 @@ src_configure() {
        cmake-utils_src_configure
 }
 
+pkg_preinst() {
+       gnome2_icon_savelist
+}
+
 pkg_postinst() {
+       gnome2_icon_cache_update
+
        if ! use alsa && ! use pulseaudio; then
                elog
                elog "For the audio capture features to be available,"
@@ -98,3 +104,7 @@ pkg_postinst() {
                elog
        fi
 }
+
+pkg_postrm() {
+       gnome2_icon_cache_update
+}

diff --git a/media-video/obs-studio/obs-studio-9999.ebuild 
b/media-video/obs-studio/obs-studio-9999.ebuild
index 678d13d..51a70f5 100644
--- a/media-video/obs-studio/obs-studio-9999.ebuild
+++ b/media-video/obs-studio/obs-studio-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="6"
+EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils gnome2-utils
 
 if [[ ${PV} == *9999 ]]; then
        inherit git-r3
@@ -52,30 +52,31 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-       CMAKE_REMOVE_MODULES_LIST=(FindFreetype)
-
-       cmake-utils_src_prepare
-}
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
 
 src_configure() {
-       local libdir="$(get_libdir)"
+       local libdir=$(get_libdir)
        local mycmakeargs=(
-               -DDISABLE_ALSA="$(usex !alsa)"
-               -DDISABLE_FREETYPE="$(usex !truetype)"
-               -DDISABLE_JACK="$(usex !jack)"
-               -DDISABLE_LIBFDK="$(usex !fdk)"
-               -DDISABLE_PULSEAUDIO="$(usex !pulseaudio)"
-               -DDISABLE_V4L2="$(usex !v4l)"
-               -DLIBOBS_PREFER_IMAGEMAGICK="$(usex imagemagick)"
-               -DOBS_MULTIARCH_SUFFIX="${libdir#lib}"
+               -DDISABLE_ALSA=$(usex !alsa)
+               -DDISABLE_FREETYPE=$(usex !truetype)
+               -DDISABLE_JACK=$(usex !jack)
+               -DDISABLE_LIBFDK=$(usex !fdk)
+               -DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
+               -DDISABLE_V4L2=$(usex !v4l)
+               -DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
+               -DOBS_MULTIARCH_SUFFIX=${libdir#lib}
                -DUNIX_STRUCTURE=1
        )
-
        cmake-utils_src_configure
 }
 
+pkg_preinst() {
+       gnome2_icon_savelist
+}
+
 pkg_postinst() {
+       gnome2_icon_cache_update
+
        if ! use alsa && ! use pulseaudio; then
                elog
                elog "For the audio capture features to be available,"
@@ -102,3 +103,7 @@ pkg_postinst() {
                elog
        fi
 }
+
+pkg_postrm() {
+       gnome2_icon_cache_update
+}

Reply via email to