diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-06-19 15:55:08 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-06-19 15:55:08 +0000 |
commit | b52077ba6b246d38492c4a2b0b195860a1e0c04d (patch) | |
tree | 2bba80c9a35de6bd5d848e4b3712425c9603d6e7 /media-sound/ario | |
parent | Drop alpha/sparc keywords (diff) | |
download | gentoo-2-b52077ba6b246d38492c4a2b0b195860a1e0c04d.tar.gz gentoo-2-b52077ba6b246d38492c4a2b0b195860a1e0c04d.tar.bz2 gentoo-2-b52077ba6b246d38492c4a2b0b195860a1e0c04d.zip |
Version bump
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/ario')
-rw-r--r-- | media-sound/ario/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/ario/ario-1.5.1.ebuild | 57 |
2 files changed, 63 insertions, 1 deletions
diff --git a/media-sound/ario/ChangeLog b/media-sound/ario/ChangeLog index 823f8dc98376..a97ce45fd55e 100644 --- a/media-sound/ario/ChangeLog +++ b/media-sound/ario/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/ario # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.23 2011/04/30 18:02:36 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.24 2011/06/19 15:55:08 angelos Exp $ + +*ario-1.5.1 (19 Jun 2011) + + 19 Jun 2011; Christoph Mende <angelos@gentoo.org> +ario-1.5.1.ebuild: + Version bump 30 Apr 2011; Christoph Mende <angelos@gentoo.org> -ario-1.4.4.ebuild: Remove old diff --git a/media-sound/ario/ario-1.5.1.ebuild b/media-sound/ario/ario-1.5.1.ebuild new file mode 100644 index 000000000000..df1eb43e65a3 --- /dev/null +++ b/media-sound/ario/ario-1.5.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ario-1.5.1.ebuild,v 1.1 2011/06/19 15:55:08 angelos Exp $ + +EAPI=4 +GNOME2_LA_PUNT=yes + +inherit gnome2 + +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:1 + dev-libs/libxml2:2 + 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:2 + dev-python/pygobject:2 ) + taglib? ( media-libs/taglib ) + zeroconf? ( net-dns/avahi )" +DEPEND="${RDEPEND} + dev-util/intltool + dev-util/pkgconfig + sys-devel/gettext" + +DOCS=( AUTHORS ) + +src_configure() { + econf \ + --disable-static \ + --disable-xmms2 \ + --enable-libmpdclient2 \ + --enable-search \ + --enable-playlists \ + --disable-deprecations \ + $(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) +} |