diff options
author | 2012-01-16 08:05:31 +0000 | |
---|---|---|
committer | 2012-01-16 08:05:31 +0000 | |
commit | 97a300da74fdc5f70347a723a747ead3fa9f422e (patch) | |
tree | b036fa8d6bae6ca37b62ec1fb9bc213973c5f2ab /net-misc/aria2 | |
parent | Fix initscript to not use deprecated opts. Use ssl useflag not gnutls for ssl... (diff) | |
download | gentoo-2-97a300da74fdc5f70347a723a747ead3fa9f422e.tar.gz gentoo-2-97a300da74fdc5f70347a723a747ead3fa9f422e.tar.bz2 gentoo-2-97a300da74fdc5f70347a723a747ead3fa9f422e.zip |
Make libgcrypt usage explicit.
(Portage version: 2.1.10.36/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/aria2')
-rw-r--r-- | net-misc/aria2/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/aria2/aria2-1.14.1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-misc/aria2/ChangeLog b/net-misc/aria2/ChangeLog index 9749a25f669d..d1f4fe240506 100644 --- a/net-misc/aria2/ChangeLog +++ b/net-misc/aria2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/aria2 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.77 2012/01/15 14:13:50 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/ChangeLog,v 1.78 2012/01/16 08:05:31 dev-zero Exp $ + + 16 Jan 2012; Tiziano Müller <dev-zero@gentoo.org> aria2-1.14.1.ebuild: + Make libgcrypt usage explicit. 15 Jan 2012; Tiziano Müller <dev-zero@gentoo.org> aria2-1.14.1.ebuild: Migrate to bash-completion-r1 eclass. diff --git a/net-misc/aria2/aria2-1.14.1.ebuild b/net-misc/aria2/aria2-1.14.1.ebuild index e3ec9271584f..69a6ec8002a8 100644 --- a/net-misc/aria2/aria2-1.14.1.ebuild +++ b/net-misc/aria2/aria2-1.14.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.14.1.ebuild,v 1.2 2012/01/15 14:13:50 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aria2/aria2-1.14.1.ebuild,v 1.3 2012/01/16 08:05:31 dev-zero Exp $ EAPI="4" @@ -55,9 +55,9 @@ src_prepare() { } src_configure() { - local myconf="--without-gnutls --without-openssl" + local myconf="--without-gnutls --without-libgcrypt --without-openssl" use ssl && \ - myconf="$(use_with gnutls) $(use_with !gnutls openssl)" + myconf="$(use_with gnutls) $(use_with gnutls libgcrypt) $(use_with !gnutls openssl)" local xmllib="--without-libexpat --without-libxml2" if use metalink || use xmlrpc ; then |