diff options
author | Christoph Mende <angelos@gentoo.org> | 2010-05-01 11:11:38 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2010-05-01 11:11:38 +0000 |
commit | 9c7eb33fddc0fd497d84d35d075ff2aec8408191 (patch) | |
tree | 181d72cc7352cfec7b1184a54331e1ba747d46d7 /media-sound/ario | |
parent | readd the pic vs PIC patch from 7.2; its still needed on sparc (diff) | |
download | gentoo-2-9c7eb33fddc0fd497d84d35d075ff2aec8408191.tar.gz gentoo-2-9c7eb33fddc0fd497d84d35d075ff2aec8408191.tar.bz2 gentoo-2-9c7eb33fddc0fd497d84d35d075ff2aec8408191.zip |
Version bump (bug #315961)
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/ario')
-rw-r--r-- | media-sound/ario/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/ario/ario-1.4.4.ebuild | 68 |
2 files changed, 75 insertions, 2 deletions
diff --git a/media-sound/ario/ChangeLog b/media-sound/ario/ChangeLog index 253e77177795..066e95016185 100644 --- a/media-sound/ario/ChangeLog +++ b/media-sound/ario/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/ario -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.12 2009/12/11 10:46:36 angelos Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.13 2010/05/01 11:11:38 angelos Exp $ + +*ario-1.4.4 (01 May 2010) + + 01 May 2010; Christoph Mende <angelos@gentoo.org> +ario-1.4.4.ebuild: + Version bump (bug #315961) *ario-1.4.1 (11 Dec 2009) diff --git a/media-sound/ario/ario-1.4.4.ebuild b/media-sound/ario/ario-1.4.4.ebuild new file mode 100644 index 000000000000..0e93a11c9ee7 --- /dev/null +++ b/media-sound/ario/ario-1.4.4.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ario-1.4.4.ebuild,v 1.1 2010/05/01 11:11:38 angelos Exp $ + +EAPI=1 +inherit gnome2-utils + +DESCRIPTION="a GTK2 MPD (Music Player Daemon) client inspired by Rythmbox" +HOMEPAGE="http://ario-player.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}-player/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="audioscrobbler dbus debug idle libnotify nls python taglib zeroconf" + +RDEPEND=">=dev-libs/glib-2.14:2 + dev-libs/libunique + dev-libs/libxml2 + media-libs/libmpdclient + net-misc/curl + net-libs/gnutls + >=x11-libs/gtk+-2.16:2 + audioscrobbler? ( net-libs/libsoup:2.4 ) + dbus? ( dev-libs/dbus-glib ) + libnotify? ( x11-libs/libnotify ) + python? ( dev-python/pygtk + dev-python/pygobject ) + taglib? ( media-libs/taglib ) + zeroconf? ( net-dns/avahi )" +DEPEND="sys-devel/gettext + dev-util/intltool + dev-util/pkgconfig" + +src_compile() { + econf \ + --enable-libmpdclient2 \ + --enable-search \ + --enable-playlists \ + $(use_enable audioscrobbler) \ + $(use_enable dbus) \ + $(use_enable debug) \ + $(use_enable idle mpdidle) \ + $(use_enable libnotify notify) \ + $(use_enable nls) \ + $(use_enable python) \ + $(use_enable taglib) \ + $(use_enable zeroconf avahi) + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README TODO +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |