2015-04-09 09:14:12 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-05-31 17:06:55 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-06-10 11:13:54 +03:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/gnome-music/gnome-music-3.16.1.ebuild,v 1.1 2015/06/09 16:32:57 eva Exp $
|
2014-05-31 17:06:55 +04:00
|
|
|
|
|
|
|
EAPI="5"
|
|
|
|
GCONF_DEBUG="no"
|
2015-04-09 09:14:12 +03:00
|
|
|
PYTHON_COMPAT=( python{3_3,3_4} )
|
2014-05-31 17:06:55 +04:00
|
|
|
|
|
|
|
inherit gnome2 python-single-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Music management for Gnome"
|
|
|
|
HOMEPAGE="http://wiki.gnome.org/Apps/Music"
|
|
|
|
|
|
|
|
LICENSE="GPL-2+"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
# Let people emerge this by default, bug #472932
|
2015-06-10 11:13:54 +03:00
|
|
|
IUSE+=" +python_single_target_python3_3 python_single_target_python3_4"
|
2014-05-31 17:06:55 +04:00
|
|
|
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
2015-06-10 11:13:54 +03:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
2014-05-31 17:06:55 +04:00
|
|
|
|
|
|
|
COMMON_DEPEND="
|
|
|
|
${PYTHON_DEPS}
|
|
|
|
>=dev-libs/glib-2.28:2
|
|
|
|
>=dev-libs/gobject-introspection-1.35.9
|
|
|
|
>=media-libs/grilo-0.2.6:0.2[introspection]
|
2015-06-10 11:13:54 +03:00
|
|
|
media-libs/libmediaart:2.0
|
|
|
|
>=x11-libs/gtk+-3.13.2:3[introspection]
|
2014-05-31 17:06:55 +04:00
|
|
|
"
|
2015-06-10 11:13:54 +03:00
|
|
|
# xdg-user-dirs-update needs to be there to create needed dirs
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=731613
|
2014-05-31 17:06:55 +04:00
|
|
|
RDEPEND="${COMMON_DEPEND}
|
|
|
|
app-misc/tracker[introspection(+)]
|
|
|
|
|| (
|
|
|
|
app-misc/tracker[gstreamer]
|
|
|
|
app-misc/tracker[ffmpeg]
|
|
|
|
)
|
|
|
|
dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
|
|
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
|
|
media-libs/gstreamer:1.0[introspection]
|
|
|
|
media-libs/gst-plugins-base:1.0[introspection]
|
|
|
|
media-plugins/gst-plugins-meta:1.0
|
|
|
|
media-plugins/grilo-plugins:0.2[tracker]
|
2015-06-10 11:13:54 +03:00
|
|
|
x11-misc/xdg-user-dirs
|
2014-05-31 17:06:55 +04:00
|
|
|
"
|
|
|
|
DEPEND="${COMMON_DEPEND}
|
|
|
|
>=dev-util/intltool-0.26
|
|
|
|
virtual/pkgconfig
|
|
|
|
"
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
gnome2_src_configure ITSTOOL="$(type -P true)"
|
|
|
|
}
|
2014-06-13 22:15:35 +04:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
gnome2_src_install
|
|
|
|
python_fix_shebang "${ED}"
|
|
|
|
}
|