mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 13:52:40 +01:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python{3_3,3_4} )
|
|
PYTHON_REQ_USE="sqlite"
|
|
|
|
inherit gnome2 python-single-r1
|
|
|
|
DESCRIPTION="Lollypop is a GNOME music playing application"
|
|
HOMEPAGE="http://gnumdk.github.io/lollypop/"
|
|
SRC_URI="https://github.com/gnumdk/lollypop/releases/download/${PV}/${P}.tar.xz"
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
IUSE+=" python_single_target_python3_3 +python_single_target_python3_4"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
>=x11-libs/gtk+-3.13.2:3[introspection]
|
|
>=dev-libs/gobject-introspection-1.35.9
|
|
dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
media-libs/gstreamer:1.0[introspection]
|
|
>=dev-python/pylast-1.0.0
|
|
>=dev-libs/totem-pl-parser-3.10.4
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
>=dev-util/intltool-0.26
|
|
dev-util/itstool
|
|
"
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
src_configure() {
|
|
gnome2_src_configure ITSTOOL="$(type -P true)"
|
|
}
|
|
|
|
src_install() {
|
|
gnome2_src_install
|
|
python_fix_shebang "${ED}"
|
|
}
|