diff options
author | 2013-01-21 06:41:51 +0000 | |
---|---|---|
committer | 2013-01-21 06:41:51 +0000 | |
commit | 10635f4a8cb3e1a3b1430bd39170c68975d8c092 (patch) | |
tree | 686b44b90e7f4d63f6c70f037dff205bd38caba9 /gnome-extra | |
parent | Add IUSE=build as a workaround for bug 453268. (diff) | |
download | gentoo-2-10635f4a8cb3e1a3b1430bd39170c68975d8c092.tar.gz gentoo-2-10635f4a8cb3e1a3b1430bd39170c68975d8c092.tar.bz2 gentoo-2-10635f4a8cb3e1a3b1430bd39170c68975d8c092.zip |
just a bump for gnome-integration-spotify
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gnome-integration-spotify/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20130119.ebuild | 45 |
2 files changed, 52 insertions, 1 deletions
diff --git a/gnome-extra/gnome-integration-spotify/ChangeLog b/gnome-extra/gnome-integration-spotify/ChangeLog index ec79468e87bf..f7acc0978af5 100644 --- a/gnome-extra/gnome-integration-spotify/ChangeLog +++ b/gnome-extra/gnome-integration-spotify/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/gnome-integration-spotify # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-integration-spotify/ChangeLog,v 1.4 2013/01/17 08:06:05 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-integration-spotify/ChangeLog,v 1.5 2013/01/21 06:41:51 prometheanfire Exp $ + +*gnome-integration-spotify-20130119 (21 Jan 2013) + + 21 Jan 2013; Matthew Thode <prometheanfire@gentoo.org> + +gnome-integration-spotify-20130119.ebuild: + bup *gnome-integration-spotify-20130116 (17 Jan 2013) diff --git a/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20130119.ebuild b/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20130119.ebuild new file mode 100644 index 000000000000..0ef3c3e9082d --- /dev/null +++ b/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20130119.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-integration-spotify/gnome-integration-spotify-20130119.ebuild,v 1.1 2013/01/21 06:41:51 prometheanfire Exp $ + +EAPI=4 + +inherit gnome2-utils + +DESCRIPTION="GNOME integration for Spotify" +HOMEPAGE="https://github.com/mrpdaemon/gnome-integration-spotify" +SRC_URI="http://github.com/mrpdaemon/${PN}/tarball/${PV} -> ${PN}-git-${PV}.tgz" +S="${WORKDIR}/mrpdaemon-${PN}-5ccb755" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + dev-lang/python + dev-python/dbus-python + media-gfx/imagemagick + x11-misc/wmctrl + x11-misc/xautomation + x11-misc/xdotool + x11-apps/xwininfo" + +src_install() { + dobin spotify-dbus.py + mkdir -p "${D}/etc/gconf/schemas" + cp spotify.schemas "${D}/etc/gconf/schemas" +} + +pkg_preinst() { + gnome2_gconf_savelist +} + +pkg_postinst() { + gnome2_gconf_install +} + +pkg_prerm() { + gnome2_gconf_uninstall +} |