1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-07 00:42:37 +01:00

media-sound/lollypop: fix sandbox access violation

This commit is contained in:
2017-03-27 23:43:32 +02:00
parent 273c0c9949
commit 4c90fe1ca8
3 changed files with 51 additions and 4 deletions

View File

@@ -1,12 +1,12 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
EAPI=6
PYTHON_COMPAT=( python3_4 )
PYTHON_REQ_USE="sqlite"
inherit gnome2 python-single-r1
inherit autotools gnome2 python-single-r1
DESCRIPTION="Lollypop is a GNOME music playing application"
HOMEPAGE="http://gnumdk.github.io/lollypop/"
@@ -38,6 +38,16 @@ DEPEND="${RDEPEND}
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
#PATCHES=(
# "${FILESDIR}"/${P}-fix-searchprovider-sandbox-violation.patch
#)
src_prepare() {
epatch "${FILESDIR}"/${P}-fix-searchprovider-sandbox-violation.patch
eautoreconf
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure ITSTOOL="$(type -P true)"
}