mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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
This commit is contained in:
committed by
David Seifert
parent
224b9c3bc1
commit
c7c99395c6
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user