From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Apr 28 03:50:19 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99BFC37B401 for ; Mon, 28 Apr 2003 03:50:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7237B43FD7 for ; Mon, 28 Apr 2003 03:50:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h3SAoIUp079096 for ; Mon, 28 Apr 2003 03:50:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h3SAoIF4079083; Mon, 28 Apr 2003 03:50:18 -0700 (PDT) Resent-Date: Mon, 28 Apr 2003 03:50:18 -0700 (PDT) Resent-Message-Id: <200304281050.h3SAoIF4079083@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kirill Ponomarew Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C06C537B401 for ; Mon, 28 Apr 2003 03:47:14 -0700 (PDT) Received: from office.LF.net (office.LF.net [212.9.190.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1303243FA3 for ; Mon, 28 Apr 2003 03:47:14 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from voodoo.oberon.net ([212.118.165.100]) by office.LF.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.10) id 19A6A9-000NxG-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 28 Apr 2003 12:47:09 +0200 Received: from krion by voodoo.oberon.net with local (Exim 4.10) id 19A6AQ-000JR6-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 28 Apr 2003 12:47:26 +0200 Message-Id: Date: Mon, 28 Apr 2003 12:47:26 +0200 From: Kirill Ponomarew Sender: krion To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/51489: Update net/gnunet: 0.5.1a -> 0.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2003 10:50:19 -0000 >Number: 51489 >Category: ports >Synopsis: Update net/gnunet: 0.5.1a -> 0.5.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Apr 28 03:50:17 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Kirill Ponomarew >Release: FreeBSD 4.8-RELEASE i386 >Organization: Oberon.net >Environment: >Description: Update net/gnunet: 0.5.1a -> 0.5.3 This release features: * gnunet-delete (new tool) * new database for content storage: - supports gdbm, tdb, bdb, mysql and directories as backends - breaks the 8 GB barrier on content per peer (now limited to the size of your harddrive) * many bugfixes in gnunet-gtk, TCP transport, routing, gnunet-tbench, gnunetd * reduced number of options in gnunet.conf to make the configuration easier * much, much less CPU usage (caching of RSA signatures) * Fixes for various problems in the routing code * various other minor improvements >How-To-Repeat: >Fix: diff -ruN gnunet.orig/Makefile gnunet/Makefile --- gnunet.orig/Makefile Mon Apr 21 09:23:04 2003 +++ gnunet/Makefile Mon Apr 28 12:39:00 2003 @@ -7,7 +7,7 @@ # PORTNAME= gnunet -PORTVERSION= 0.5.1a +PORTVERSION= 0.5.3 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GNU} \ http://www.ovmj.org/GNUnet/download/ @@ -30,10 +30,26 @@ LDFLAGS="-L${LOCALBASE}/lib" INSTALLS_SHLIB= yes -MAN1= gnunet-chat.1 gnunet-check.1 gnunet-download.1 gnunet-gtk.1 \ - gnunet-insert-multi.1 gnunet-insert.1 gnunet-search.1 \ - gnunet-tbench.1 gnunetd.1 +MAN1= gnunet-chat.1 gnunet-check.1 gnunet-convert.1 gnunet-delete.1 \ + gnunet-download.1 gnunet-gtk.1 gnunet-insert-multi.1 gnunet-insert.1 \ + gnunet-search.1 gnunet-tbench.1 gnunet-tracekit.1 \ + gnunet-transport-check.1 gnunetd.1 MAN5= gnunet.conf.5 + +.if defined(WITH_MYSQL) +LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} +.endif + +.if defined(WITH_TDB) +LIB_DEPENDS+= tdb.1:${PORTSDIR}/databases/tdb +CONFIGURE_ARGS+=--with-tdb=${LOCALBASE} +.endif + +.if defined(WITH_BDB41) +LIB_DEPENDS+= db41.1:${PORTSDIR}/databases/db41 +CONFIGURE_ARGS+=--with-bdb=${LOCALBASE} +.endif post-patch: @${REINPLACE_CMD} -e \ diff -ruN gnunet.orig/distinfo gnunet/distinfo --- gnunet.orig/distinfo Tue Apr 15 11:53:29 2003 +++ gnunet/distinfo Mon Apr 28 11:48:05 2003 @@ -1 +1 @@ -MD5 (GNUnet-0.5.1a.tar.bz2) = 0e506d602cdc168e6a0f8065da85e565 +MD5 (GNUnet-0.5.3.tar.bz2) = 23050c3720801d5038f6824e3c0e101c diff -ruN gnunet.orig/pkg-plist gnunet/pkg-plist --- gnunet.orig/pkg-plist Tue Apr 15 11:53:29 2003 +++ gnunet/pkg-plist Mon Apr 28 12:34:00 2003 @@ -2,6 +2,7 @@ bin/gnunet-chat bin/gnunet-check bin/gnunet-convert +bin/gnunet-delete bin/gnunet-download bin/gnunet-gtk bin/gnunet-insert @@ -10,6 +11,7 @@ bin/gnunet-stats bin/gnunet-tbench bin/gnunet-transport-check +bin/gnunet-tracekit bin/gnunetd lib/libgnunetafs_blocks.a lib/libgnunetafs_blocks.so @@ -26,6 +28,9 @@ lib/libgnunetafs_decoding.a lib/libgnunetafs_decoding.so lib/libgnunetafs_decoding.so.0 +lib/libgnunetafs_delete.a +lib/libgnunetafs_delete.so +lib/libgnunetafs_delete.so.0 lib/libgnunetafs_encoding.a lib/libgnunetafs_encoding.so lib/libgnunetafs_encoding.so.0 @@ -50,6 +55,9 @@ lib/libgnunettbench_protocol.a lib/libgnunettbench_protocol.so lib/libgnunettbench_protocol.so.0 +lib/libgnunettracekit_protocol.a +lib/libgnunettracekit_protocol.so +lib/libgnunettracekit_protocol.so.0 lib/libgnunettransport_smtp.a lib/libgnunettransport_smtp.so lib/libgnunettransport_smtp.so.0 diff -ruN gnunet.orig/work/.comment.gnunet-0.5.1a gnunet/work/.comment.gnunet-0.5.1a --- gnunet.orig/work/.comment.gnunet-0.5.1a Sun Apr 27 19:36:54 2003 +++ gnunet/work/.comment.gnunet-0.5.1a Thu Jan 1 01:00:00 1970 @@ -1 +0,0 @@ -An anonymous, distributed, reputation-based network >Release-Note: >Audit-Trail: >Unformatted: