You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/pithos/pithos-9999.ebuild,v 1.4 2014/11/27 15:13:36 pacho Exp $
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=(python3_{3,4})
|
|
inherit eutils distutils-r1
|
|
|
|
if [[ ${PV} =~ [9]{4,} ]]; then
|
|
inherit git-2
|
|
EGIT_REPO_URI="git://github.com/pithos/pithos.git
|
|
https://github.com/pithos/pithos.git"
|
|
else
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
fi
|
|
|
|
DESCRIPTION="Pandora.com client for the GNOME desktop"
|
|
HOMEPAGE="http://pithos.github.io/"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE="libnotify appindicator +keybinder"
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
RDEPEND="${DEPEND}
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
dev-python/pygobject[${PYTHON_USEDEP}]
|
|
dev-python/pylast[${PYTHON_USEDEP}]
|
|
x11-libs/gtk+:3
|
|
media-plugins/gst-plugins-meta:1.0[aac,http,mp3]
|
|
libnotify? ( x11-libs/libnotify )
|
|
appindicator? ( dev-libs/libappindicator:3 )
|
|
keybinder? ( dev-libs/keybinder:3 )"
|
|
|
|
PATCHES=("${FILESDIR}/${P}-icons.patch")
|
|
|
|
python_test() {
|
|
esetup.py test || die
|
|
}
|