media-video/obs-studio: Use 'gnome2-utils' to update the icon cache.
authorJimi Huotari <chiitoo@gentoo.org>
Wed, 25 Jan 2017 12:21:09 +0000 (14:21 +0200)
committerDavid Seifert <soap@gentoo.org>
Thu, 26 Jan 2017 22:56:03 +0000 (23:56 +0100)
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
media-video/obs-studio/obs-studio-9999.ebuild

index 2e48f5fb4ddba4bdabf6d95ac65b658400e9fcc5..5a3784f7e7359cb6012ad8fa3aa2b17e07e5d48f 100644 (file)
@@ -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
+}
index 678d13dc8d77943de34558cb6f353e6373840772..51a70f59548186b1e6a2b5701e8577abe5b05475 100644 (file)
@@ -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
+}