summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Alexander <wired@gentoo.org>2011-03-29 23:59:56 +0000
committerAlex Alexander <wired@gentoo.org>2011-03-29 23:59:56 +0000
commit02f3846bad8541cdf3523f07911b1542353defb1 (patch)
treed4c04e10055352c689faa1e0d04c00614a12fd58 /www-client/uget
parentVersion bump (diff)
downloadgentoo-2-02f3846bad8541cdf3523f07911b1542353defb1.tar.gz
gentoo-2-02f3846bad8541cdf3523f07911b1542353defb1.tar.bz2
gentoo-2-02f3846bad8541cdf3523f07911b1542353defb1.zip
removed aria2 from deps, added elog message if aria2 use is enabled
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'www-client/uget')
-rw-r--r--www-client/uget/ChangeLog5
-rw-r--r--www-client/uget/uget-1.7.3.ebuild14
2 files changed, 16 insertions, 3 deletions
diff --git a/www-client/uget/ChangeLog b/www-client/uget/ChangeLog
index b2cf236158d0..78f0abc3cc3c 100644
--- a/www-client/uget/ChangeLog
+++ b/www-client/uget/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-client/uget
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uget/ChangeLog,v 1.19 2011/03/29 12:57:57 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uget/ChangeLog,v 1.20 2011/03/29 23:59:56 wired Exp $
+
+ 30 Mar 2011; Alex Alexander <wired@gentoo.org> uget-1.7.3.ebuild:
+ removed aria2 from deps, added elog message if aria2 use is enabled
29 Mar 2011; Christoph Mende <angelos@gentoo.org> uget-1.5.0.1-r1.ebuild,
uget-1.5.0.3.ebuild, uget-1.6.1.ebuild, uget-1.7.0.ebuild, uget-1.7.3.ebuild,
diff --git a/www-client/uget/uget-1.7.3.ebuild b/www-client/uget/uget-1.7.3.ebuild
index 67722a8fa026..dd93c5791bc3 100644
--- a/www-client/uget/uget-1.7.3.ebuild
+++ b/www-client/uget/uget-1.7.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/uget/uget-1.7.3.ebuild,v 1.2 2011/03/29 12:57:57 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/uget/uget-1.7.3.ebuild,v 1.3 2011/03/29 23:59:56 wired Exp $
EAPI="4"
@@ -21,7 +21,6 @@ RDEPEND="
dev-libs/libpcre
>=dev-libs/glib-2:2
>=x11-libs/gtk+-2.18:2
- aria2? ( net-misc/aria2[xmlrpc] )
curl? ( >=net-misc/curl-7.10 )
gstreamer? ( media-libs/gstreamer )
libnotify? ( x11-libs/libnotify )
@@ -61,3 +60,14 @@ src_install() {
dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
}
+
+pkg_postinst() {
+ if use aria2; then
+ echo
+ elog "You've enabled the aria2 USE flag, so the aria2 plug-in has been"
+ elog "built. This allows you to control a local or remote instance of aria2"
+ elog "through xmlrpc. To use aria2 locally you have to emerge"
+ elog "net-misc/aria2 with the xmlrpc USE enabled manually."
+ echo
+ fi
+}