pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/aria2 Update to aria2-0.16.0. Lots of bug fixes, ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/565ce91fab33
branches:  trunk
changeset: 548171:565ce91fab33
user:      bjs <bjs%pkgsrc.org@localhost>
date:      Fri Oct 10 01:56:38 2008 +0000

description:
Update to aria2-0.16.0.  Lots of bug fixes, improved help text,
plus firefox3 cookie support.  This option requires sqlite3,
though the firefox3 option also enables this functionality.

diffstat:

 net/aria2/Makefile   |   4 ++--
 net/aria2/distinfo   |   8 ++++----
 net/aria2/options.mk |  27 +++++++++++++++++++++++----
 3 files changed, 29 insertions(+), 10 deletions(-)

diffs (83 lines):

diff -r 54fc4c169a07 -r 565ce91fab33 net/aria2/Makefile
--- a/net/aria2/Makefile        Fri Oct 10 00:21:43 2008 +0000
+++ b/net/aria2/Makefile        Fri Oct 10 01:56:38 2008 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.14 2008/09/08 03:07:48 bjs Exp $
+# $NetBSD: Makefile,v 1.15 2008/10/10 01:56:38 bjs Exp $
 #
 
-DISTNAME=      aria2c-0.15.3
+DISTNAME=      aria2c-0.16.0
 PKGNAME=       ${DISTNAME:S/+/./:S/2c-/2-/}
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=aria2/}
diff -r 54fc4c169a07 -r 565ce91fab33 net/aria2/distinfo
--- a/net/aria2/distinfo        Fri Oct 10 00:21:43 2008 +0000
+++ b/net/aria2/distinfo        Fri Oct 10 01:56:38 2008 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.12 2008/09/08 03:07:48 bjs Exp $
+$NetBSD: distinfo,v 1.13 2008/10/10 01:56:38 bjs Exp $
 
-SHA1 (aria2c-0.15.3.tar.bz2) = 4548d9ae2e571d9bc8fc9de0e42f7d028a3dbdac
-RMD160 (aria2c-0.15.3.tar.bz2) = 550e36c1750c92c802f4f08eb0fd97ed40c759b2
-Size (aria2c-0.15.3.tar.bz2) = 1044973 bytes
+SHA1 (aria2c-0.16.0.tar.bz2) = c2b2c3154b992cc1f3a8ebf56e48fc11ff3c47e0
+RMD160 (aria2c-0.16.0.tar.bz2) = 391d6e0ac19884fa6c44eda423fa21ed6471c423
+Size (aria2c-0.16.0.tar.bz2) = 1082673 bytes
diff -r 54fc4c169a07 -r 565ce91fab33 net/aria2/options.mk
--- a/net/aria2/options.mk      Fri Oct 10 00:21:43 2008 +0000
+++ b/net/aria2/options.mk      Fri Oct 10 01:56:38 2008 +0000
@@ -1,10 +1,12 @@
-# $NetBSD: options.mk,v 1.5 2008/04/16 00:09:39 bjs Exp $
+# $NetBSD: options.mk,v 1.6 2008/10/10 01:56:38 bjs Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.aria2
 
 PKG_OPTIONS_GROUP.ssl=         gnutls ssl
 PKG_OPTIONS_GROUP.asyncns=     ares cares
 PKG_OPTIONS_REQUIRED_GROUPS=   ssl asyncns
+
+PKG_SUPPORTED_OPTIONS=         sqlite firefox3
 PKG_SUGGESTED_OPTIONS=         ssl cares
 ###
 ### XXX Remove this in the future [2008-04-15 bjs]
@@ -17,19 +19,36 @@
 .endif
 
 .include "../../mk/bsd.options.mk"
-
+###
+###    SSL/TLS implementation
+###
 .if !empty(PKG_OPTIONS:Mssl)
 CONFIGURE_ARGS+=       --with-openssl
-CONFIGURE_ARGS+=       --without-gnutls
+CONFIGURE_ARGS+=       --with-gnutls=no
 .  include "../../security/openssl/buildlink3.mk"
 .else
 CONFIGURE_ARGS+=       --with-gnutls
-CONFIGURE_ARGS+=       --without-openssl
+CONFIGURE_ARGS+=       --with-openssl=no
 .  include "../../security/gnutls/buildlink3.mk"
 .endif
+###
+###    asynchronous resolver library.
+###
 .if !empty(PKG_OPTIONS:Mcares)
+CONFIGURE_ARGS+=       --with-libares=no
 CONFIGURE_ARGS+=       --with-libcares-prefix=${BUILDLINK_PREFIX.libcares:Q}
 .  include "../../net/libcares/buildlink3.mk"
 .elif !empty(PKG_OPTIONS:Mares)
+CONFIGURE_ARGS+=       --with-libcares=no
 CONFIGURE_ARGS+=       --with-libares-prefix=${BUILDLINK_PREFIX.libares:Q}
 .endif
+###
+###    firefox3 cookie support via sqlite3
+###
+.if !empty(PKG_OPTIONS:Mfirefox3) || !empty(PKG_OPTIONS:Msqlite)
+CONFIGURE_ARGS+=       --with-sqlite3
+CONFIGURE_ARGS+=       --with-sqlite3-prefix=${BUILDLINK_PREFIX.sqlite:Q}
+.  include "../../databases/sqlite3/buildlink3.mk"
+.else
+CONFIGURE_ARGS+=       --with-sqlite3=no
+.endif



Home | Main Index | Thread Index | Old Index