Index: head/net/gnunet/Makefile =================================================================== --- head/net/gnunet/Makefile (revision 115291) +++ head/net/gnunet/Makefile (revision 115292) @@ -1,103 +1,103 @@ # ex:ts=8 # Ports collection makefile for: GNUnet # Date created: Mar 23, 2002 # Whom: ijliao # # $FreeBSD$ # PORTNAME= gnunet -PORTVERSION= 0.6.2b +PORTVERSION= 0.6.3 CATEGORIES= net MASTER_SITES= http://www.ovmj.org/GNUnet/download/ \ ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= GNUnet-${PORTVERSION} MAINTAINER= krion@FreeBSD.org COMMENT= An anonymous, distributed, reputation-based network USE_LIBLTDL= yes USE_BZIP2= yes USE_GETOPT_LONG= yes USE_GETTEXT= yes USE_GMAKE= yes USE_GNOME= gnometarget gtk12 lthack USE_INC_LIBTOOL_VER=13 USE_OPENSSL= yes USE_REINPLACE= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" CONFIGURE_ARGS= --disable-ltdl-install LDFLAGS+= -L${LOCALBASE}/lib .if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm PLIST_SUB+= WITH_GDBM="" .else CONFIGURE_ARGS+= --without-gdbm PLIST_SUB+= WITH_GDBM="@comment " .endif .if defined(WITH_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql .else CONFIGURE_ARGS+= --without-mysql .endif .if defined(WITH_TDB) LIB_DEPENDS+= tdb.1:${PORTSDIR}/databases/tdb PLIST_SUB+= WITH_TDB="" .else CONFIGURE_ARGS+= --without-tdb PLIST_SUB+= WITH_TDB="@comment " .endif .if defined(WITH_BDB3) LIB_DEPENDS+= db3:${PORTSDIR}/databases/db3 CONFIGURE_ARGS+= --with-bdb=${LOCALBASE} .else CONFIGURE_ARGS+= --without-bdb .endif .if defined(WITH_IPV6) PKGNAMESUFFIX= -ipv6 CONFIGURE_ARGS+= --enable-ipv6 PLIST_SUB+= WITH_IPV6="" .else PLIST_SUB+= WITH_IPV6="@comment " .endif MAN1= gnunet-chat.1 gnunet-check.1 gnunet-convert.1 \ gnunet-delete.1 gnunet-directory.1 \ gnunet-download.1 gnunet-gtk.1 gnunet-insert.1 \ gnunet-peer-info.1 gnunet-pseudonym.1 \ gnunet-search.1 gnunet-stats.1 gnunet-tbench.1 \ gnunet-testbed.1 gnunet-tracekit.1 gnunet-transport-check.1 \ - gnunetd.1 + gnunet-update.1 gnunetd.1 MAN5= gnunet.conf.5 pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "You can build GNUnet with the following options:" @${ECHO_MSG} " WITH_MYSQL=yes Turn on MySQL support" @${ECHO_MSG} " WITH_TDB=yes Turn on TDB support" @${ECHO_MSG} " WITH_BDB3=yes Turn on Berkely DB library support" @${ECHO_MSG} " WITH_GDBM=yes Turn on GNU dbm support" @${ECHO_MSG} " WITH_IPV6=yes Turn on to enable IPv6 support" @${ECHO_MSG} "" post-patch: @${FIND} ${WRKSRC} -name configure | ${XARGS} \ ${REINPLACE_CMD} -e \ 's|-pthread [\$$]CFLAGS|${PTHREAD_CFLAGS} \$$CFLAGS|g ; \ s|-lpthread|${PTHREAD_LIBS}|g' ${REINPLACE_CMD} -e \ 's|^#include |#include |g' \ ${WRKSRC}/src/applications/afs/module/manager.c .include Property changes on: head/net/gnunet/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.37 \ No newline at end of property +1.38 \ No newline at end of property Index: head/net/gnunet/distinfo =================================================================== --- head/net/gnunet/distinfo (revision 115291) +++ head/net/gnunet/distinfo (revision 115292) @@ -1,2 +1,2 @@ -MD5 (GNUnet-0.6.2b.tar.bz2) = c3c8dcc940d3fdf35c0f606624362938 -SIZE (GNUnet-0.6.2b.tar.bz2) = 980714 +MD5 (GNUnet-0.6.3.tar.bz2) = b6de80fe927c4c7956f5fcfd9a1b19b7 +SIZE (GNUnet-0.6.3.tar.bz2) = 1021581 Property changes on: head/net/gnunet/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/net/gnunet/files/patch-configure =================================================================== --- head/net/gnunet/files/patch-configure (revision 115291) +++ head/net/gnunet/files/patch-configure (revision 115292) @@ -1,13 +1,16 @@ ---- configure.orig Wed Aug 27 15:47:59 2003 -+++ configure Wed Aug 27 15:55:40 2003 -@@ -13748,8 +13748,8 @@ + +$FreeBSD$ + +--- configure.orig Mon Aug 2 20:01:59 2004 ++++ configure Mon Aug 2 20:02:55 2004 +@@ -15035,8 +15035,8 @@ echo "${ECHO_T}\"$with_mysql\"" >&6 if test "$with_mysql" != "no" then -- LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS" +- LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS $ZLIBS" - CPPFLAGS="-I$with_mysql/include $CPPFLAGS" -+ LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql $LDFLAGS" ++ LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql $LDFLAGS $ZLIBS" + CPPFLAGS="-I${LOCALBASE}/include $CPPFLAGS" for ac_header in mysql/mysql.h do Property changes on: head/net/gnunet/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/net/gnunet/pkg-plist =================================================================== --- head/net/gnunet/pkg-plist (revision 115291) +++ head/net/gnunet/pkg-plist (revision 115292) @@ -1,48 +1,64 @@ bin/gnunet-chat bin/gnunet-check bin/gnunet-convert bin/gnunet-delete +bin/gnunet-dht-join +bin/gnunet-dht-query bin/gnunet-directory bin/gnunet-download bin/gnunet-gtk bin/gnunet-insert bin/gnunet-peer-info bin/gnunet-pseudonym bin/gnunet-search bin/gnunet-setup bin/gnunet-stats bin/gnunet-tbench bin/gnunet-testbed bin/gnunet-tracekit bin/gnunet-transport-check +bin/gnunet-update bin/gnunetd include/gnunet_afs_esed2.h include/gnunet_core.h include/gnunet_dht.h +include/gnunet_dht_datastore_memory.h include/gnunet_dht_lib.h -include/gnunet_dht_module.h +include/gnunet_dht_service.h +include/gnunet_rpc_service.h include/gnunet_transport.h include/gnunet_util.h include/platform.h include/winproc.h lib/libgnunet_afs_esed2.a lib/libgnunet_afs_esed2.so lib/libgnunet_afs_esed2.so.0 lib/libgnunetafs_database_directory.so lib/libgnunetafs_protocol.so lib/libgnunetchat_protocol.so +lib/libgnunetdht_api.a +lib/libgnunetdht_api.so +lib/libgnunetdht_api.so.0 +lib/libgnunetdht_datastore_memory.a +lib/libgnunetdht_datastore_memory.so +lib/libgnunetdht_datastore_memory.so.0 +lib/libgnunetdht_protocol.so +lib/libgnunetrpc_protocol.so +lib/libgnunetrpc_util.a +lib/libgnunetrpc_util.so +lib/libgnunetrpc_util.so.0 lib/libgnunettbench_protocol.so lib/libgnunettestbed_protocol.so lib/libgnunettracekit_protocol.so lib/libgnunettransport_http.so lib/libgnunettransport_nat.so lib/libgnunettransport_smtp.so lib/libgnunettransport_tcp.so lib/libgnunettransport_udp.so lib/libgnunetutil.a lib/libgnunetutil.so lib/libgnunetutil.so.0 %%WITH_GDBM%%lib/libgnunetafs_database_gdbm.so %%WITH_TDB%%lib/libgnunetafs_database_tdb.so %%WITH_IPV6%%lib/libgnunettransport_tcp6.so %%WITH_IPV6%%lib/libgnunettransport_udp6.so Property changes on: head/net/gnunet/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/net-p2p/gnunet/Makefile =================================================================== --- head/net-p2p/gnunet/Makefile (revision 115291) +++ head/net-p2p/gnunet/Makefile (revision 115292) @@ -1,103 +1,103 @@ # ex:ts=8 # Ports collection makefile for: GNUnet # Date created: Mar 23, 2002 # Whom: ijliao # # $FreeBSD$ # PORTNAME= gnunet -PORTVERSION= 0.6.2b +PORTVERSION= 0.6.3 CATEGORIES= net MASTER_SITES= http://www.ovmj.org/GNUnet/download/ \ ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= GNUnet-${PORTVERSION} MAINTAINER= krion@FreeBSD.org COMMENT= An anonymous, distributed, reputation-based network USE_LIBLTDL= yes USE_BZIP2= yes USE_GETOPT_LONG= yes USE_GETTEXT= yes USE_GMAKE= yes USE_GNOME= gnometarget gtk12 lthack USE_INC_LIBTOOL_VER=13 USE_OPENSSL= yes USE_REINPLACE= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" CONFIGURE_ARGS= --disable-ltdl-install LDFLAGS+= -L${LOCALBASE}/lib .if defined(WITH_GDBM) LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm PLIST_SUB+= WITH_GDBM="" .else CONFIGURE_ARGS+= --without-gdbm PLIST_SUB+= WITH_GDBM="@comment " .endif .if defined(WITH_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql .else CONFIGURE_ARGS+= --without-mysql .endif .if defined(WITH_TDB) LIB_DEPENDS+= tdb.1:${PORTSDIR}/databases/tdb PLIST_SUB+= WITH_TDB="" .else CONFIGURE_ARGS+= --without-tdb PLIST_SUB+= WITH_TDB="@comment " .endif .if defined(WITH_BDB3) LIB_DEPENDS+= db3:${PORTSDIR}/databases/db3 CONFIGURE_ARGS+= --with-bdb=${LOCALBASE} .else CONFIGURE_ARGS+= --without-bdb .endif .if defined(WITH_IPV6) PKGNAMESUFFIX= -ipv6 CONFIGURE_ARGS+= --enable-ipv6 PLIST_SUB+= WITH_IPV6="" .else PLIST_SUB+= WITH_IPV6="@comment " .endif MAN1= gnunet-chat.1 gnunet-check.1 gnunet-convert.1 \ gnunet-delete.1 gnunet-directory.1 \ gnunet-download.1 gnunet-gtk.1 gnunet-insert.1 \ gnunet-peer-info.1 gnunet-pseudonym.1 \ gnunet-search.1 gnunet-stats.1 gnunet-tbench.1 \ gnunet-testbed.1 gnunet-tracekit.1 gnunet-transport-check.1 \ - gnunetd.1 + gnunet-update.1 gnunetd.1 MAN5= gnunet.conf.5 pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "You can build GNUnet with the following options:" @${ECHO_MSG} " WITH_MYSQL=yes Turn on MySQL support" @${ECHO_MSG} " WITH_TDB=yes Turn on TDB support" @${ECHO_MSG} " WITH_BDB3=yes Turn on Berkely DB library support" @${ECHO_MSG} " WITH_GDBM=yes Turn on GNU dbm support" @${ECHO_MSG} " WITH_IPV6=yes Turn on to enable IPv6 support" @${ECHO_MSG} "" post-patch: @${FIND} ${WRKSRC} -name configure | ${XARGS} \ ${REINPLACE_CMD} -e \ 's|-pthread [\$$]CFLAGS|${PTHREAD_CFLAGS} \$$CFLAGS|g ; \ s|-lpthread|${PTHREAD_LIBS}|g' ${REINPLACE_CMD} -e \ 's|^#include |#include |g' \ ${WRKSRC}/src/applications/afs/module/manager.c .include Property changes on: head/net-p2p/gnunet/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.37 \ No newline at end of property +1.38 \ No newline at end of property Index: head/net-p2p/gnunet/distinfo =================================================================== --- head/net-p2p/gnunet/distinfo (revision 115291) +++ head/net-p2p/gnunet/distinfo (revision 115292) @@ -1,2 +1,2 @@ -MD5 (GNUnet-0.6.2b.tar.bz2) = c3c8dcc940d3fdf35c0f606624362938 -SIZE (GNUnet-0.6.2b.tar.bz2) = 980714 +MD5 (GNUnet-0.6.3.tar.bz2) = b6de80fe927c4c7956f5fcfd9a1b19b7 +SIZE (GNUnet-0.6.3.tar.bz2) = 1021581 Property changes on: head/net-p2p/gnunet/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-configure =================================================================== --- head/net-p2p/gnunet/files/patch-configure (revision 115291) +++ head/net-p2p/gnunet/files/patch-configure (revision 115292) @@ -1,13 +1,16 @@ ---- configure.orig Wed Aug 27 15:47:59 2003 -+++ configure Wed Aug 27 15:55:40 2003 -@@ -13748,8 +13748,8 @@ + +$FreeBSD$ + +--- configure.orig Mon Aug 2 20:01:59 2004 ++++ configure Mon Aug 2 20:02:55 2004 +@@ -15035,8 +15035,8 @@ echo "${ECHO_T}\"$with_mysql\"" >&6 if test "$with_mysql" != "no" then -- LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS" +- LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS $ZLIBS" - CPPFLAGS="-I$with_mysql/include $CPPFLAGS" -+ LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql $LDFLAGS" ++ LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql $LDFLAGS $ZLIBS" + CPPFLAGS="-I${LOCALBASE}/include $CPPFLAGS" for ac_header in mysql/mysql.h do Property changes on: head/net-p2p/gnunet/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/net-p2p/gnunet/pkg-plist =================================================================== --- head/net-p2p/gnunet/pkg-plist (revision 115291) +++ head/net-p2p/gnunet/pkg-plist (revision 115292) @@ -1,48 +1,64 @@ bin/gnunet-chat bin/gnunet-check bin/gnunet-convert bin/gnunet-delete +bin/gnunet-dht-join +bin/gnunet-dht-query bin/gnunet-directory bin/gnunet-download bin/gnunet-gtk bin/gnunet-insert bin/gnunet-peer-info bin/gnunet-pseudonym bin/gnunet-search bin/gnunet-setup bin/gnunet-stats bin/gnunet-tbench bin/gnunet-testbed bin/gnunet-tracekit bin/gnunet-transport-check +bin/gnunet-update bin/gnunetd include/gnunet_afs_esed2.h include/gnunet_core.h include/gnunet_dht.h +include/gnunet_dht_datastore_memory.h include/gnunet_dht_lib.h -include/gnunet_dht_module.h +include/gnunet_dht_service.h +include/gnunet_rpc_service.h include/gnunet_transport.h include/gnunet_util.h include/platform.h include/winproc.h lib/libgnunet_afs_esed2.a lib/libgnunet_afs_esed2.so lib/libgnunet_afs_esed2.so.0 lib/libgnunetafs_database_directory.so lib/libgnunetafs_protocol.so lib/libgnunetchat_protocol.so +lib/libgnunetdht_api.a +lib/libgnunetdht_api.so +lib/libgnunetdht_api.so.0 +lib/libgnunetdht_datastore_memory.a +lib/libgnunetdht_datastore_memory.so +lib/libgnunetdht_datastore_memory.so.0 +lib/libgnunetdht_protocol.so +lib/libgnunetrpc_protocol.so +lib/libgnunetrpc_util.a +lib/libgnunetrpc_util.so +lib/libgnunetrpc_util.so.0 lib/libgnunettbench_protocol.so lib/libgnunettestbed_protocol.so lib/libgnunettracekit_protocol.so lib/libgnunettransport_http.so lib/libgnunettransport_nat.so lib/libgnunettransport_smtp.so lib/libgnunettransport_tcp.so lib/libgnunettransport_udp.so lib/libgnunetutil.a lib/libgnunetutil.so lib/libgnunetutil.so.0 %%WITH_GDBM%%lib/libgnunetafs_database_gdbm.so %%WITH_TDB%%lib/libgnunetafs_database_tdb.so %%WITH_IPV6%%lib/libgnunettransport_tcp6.so %%WITH_IPV6%%lib/libgnunettransport_udp6.so Property changes on: head/net-p2p/gnunet/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property