Index: head/net-p2p/gnunet/Makefile =================================================================== --- head/net-p2p/gnunet/Makefile (revision 367203) +++ head/net-p2p/gnunet/Makefile (revision 367204) @@ -1,156 +1,115 @@ # Created by: ijliao # $FreeBSD$ PORTNAME= gnunet -DISTVERSION= 0.9.3 -PORTREVISION= 11 +PORTVERSION= 0.10.1 CATEGORIES= net-p2p ipv6 security MASTER_SITES= GNU MAINTAINER= ports@FreeBSD.org COMMENT= Anonymous, distributed, reputation-based network LICENSE= GPLv3 -LIB_DEPENDS= libunistring.so:${PORTSDIR}/devel/libunistring \ - libcurl.so:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg \ + libopus.so:${PORTSDIR}/audio/opus \ + libpulse.so:${PORTSDIR}/audio/pulseaudio \ + libunistring.so:${PORTSDIR}/devel/libunistring \ + libidn.so:${PORTSDIR}/dns/libidn \ libglpk.so:${PORTSDIR}/math/glpk \ libgmp.so:${PORTSDIR}/math/gmp \ + libgnutls.so:${PORTSDIR}/security/gnutls \ libgcrypt.so:${PORTSDIR}/security/libgcrypt \ libextractor.so:${PORTSDIR}/textproc/libextractor -OPTIONS_DEFINE= HTTP - -HTTP_DESC= Enable HTTP transport via libmicrohttpd -MYSQL_DESC= Use MySQL for the data store and cache -PGSQL_DESC= Use PostgreSQL for the data store and cache -SQLITE_DESC= Use SQLite for the data store and cache - -OPTIONS_MULTI= DB -OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE - -OPTIONS_DEFAULT= SQLITE - -USE_AUTOTOOLS= libltdl libtool -USES= iconv gmake +USES= gmake iconv libtool pathfix pkgconfig +USE_GNOME= glib20 +USE_GSTREAMER1= yes +USE_AUTOTOOLS= libltdl +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-silent-rules \ + --with-extractor=${LOCALBASE} \ + --with-gnutls=${LOCALBASE} \ + --with-libgcrypt-prefix=${LOCALBASE} \ + --with-libunistring-prefix=${LOCALBASE} \ + --with-ltdl=${LOCALBASE} \ + --with-nssdir=no +INSTALL_TARGET= install-strip USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-daemon-home-dir=${GNUNET_DAEMON_DIR} \ - --with-daemon-config-dir=${PREFIX}/etc \ - --with-extractor=${LOCALBASE} \ - --with-libcurl=${LOCALBASE} \ - --with-libgcrypt-prefix=${LOCALBASE} \ - --with-libunistring-prefix=${LOCALBASE} \ - --with-ltdl-include=${LOCALBASE}/include \ - --with-ltdl-lib=${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib GROUPS= gnunet USERS= gnunet -MAN1= gnunet-arm.1 gnunet-core.1 gnunet-directory.1 gnunet-download.1 \ - gnunet-download-manager.1 gnunet-fs.1 gnunet-gns.1 gnunet-namestore.1 \ - gnunet-nat-server.1 gnunet-peerinfo.1 gnunet-pseudonym.1 \ - gnunet-publish.1 gnunet-rsa.1 gnunet-search.1 gnunet-statistics.1 \ - gnunet-transport.1 gnunet-unindex.1 gnunet-vpn.1 +SUB_FILES= pkg-install pkg-deinstall pkg-message +SUB_LIST= GNUNET_DAEMON_DIR="${GNUNET_DAEMON_DIR}" +PLIST_SUB= GNUNET_DAEMON_DIR="${GNUNET_DAEMON_DIR}" + +OPTIONS_DEFINE= DOCS EXAMPLES HTTP NLS +OPTIONS_MULTI= DB +OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE +OPTIONS_DEFAULT= SQLITE +OPTIONS_SUB= yes + +HTTP_DESC= Enable HTTP transport via libmicrohttpd +HTTP_LIB_DEPENDS= libmicrohttpd.so:${PORTSDIR}/www/libmicrohttpd +HTTP_CONFIGURE_ON= --with-microhttpd=${LOCALBASE} +HTTP_CONFIGURE_OFF= --without-microhttpd +MYSQL_DESC= Use MySQL for the data store and cache +MYSQL_USE= mysql=yes +MYSQL_CONFIGURE_ON= --with-mysql=${LOCALBASE} +MYSQL_CONFIGURE_OFF= --without-mysql +NLS_USES= gettext +NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +NLS_CONFIGURE_OFF= --disable-nls +PGSQL_DESC= Use PostgreSQL for the data store and cache +PGSQL_USE= pgsql=yes +PGSQL_CONFIGURE_ON= --with-postgres=${LOCALBASE} +PGSQL_CONFIGURE_OFF= --without-postgres +SQLITE_DESC= Use SQLite for the data store and cache +SQLITE_USE= sqlite=yes +SQLITE_CONFIGURE_ON= --with-sqlite=${LOCALBASE} +SQLITE_CONFIGURE_OFF= --without-sqlite + #If a non-default GNUNET_DAEMON_DIR is defined, the home directory #of the gnunet user may need to be adjusted -- e.g., via: #pw usermod gnunet -d $GNUNET_DAEMON_DIR GNUNET_DAEMON_DIR?= /var/lib/gnunet -PLIST_SUB= GNUNET_DAEMON_DIR=${GNUNET_DAEMON_DIR} -SUB_FILES= pkg-message -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MDOCS} -PORTDOCS= AUTHORS COPYING ChangeLog NEWS README -.endif - -.if ${PORT_OPTIONS:MEXAMPLES} -PORTEXAMPLES= gnunet_janitor.py gnunet_pyexpect.py hostlist.cgi hostlist.php \ -report.sh -.endif - -.if ${PORT_OPTIONS:MHTTP} -BROKEN= WITH_HTTP requires libmicrohttpd 0.9.18 or higher -LIB_DEPENDS+= libmicrohttpd.so:${PORTSDIR}/www/libmicrohttpd -CONFIGURE_ARGS+= --with-microhttpd=${LOCALBASE} -PLIST_SUB+= HTTP="" -.else -CONFIGURE_ARGS+= --without-microhttpd -PLIST_SUB+= HTTP="@comment " -.endif - -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= yes -CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} -PLIST_SUB+= MYSQL="" -.else -CONFIGURE_ARGS+= --without-mysql -PLIST_SUB+= MYSQL="@comment " -.endif - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes -CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} -PLIST_SUB+= PGSQL="" -.else -CONFIGURE_ARGS+= --without-postgres -PLIST_SUB+= PGSQL="@comment " -.endif - -.if ${PORT_OPTIONS:MSQLITE} -USE_SQLITE= yes -CONFIGURE_ARGS+= --with-sqlite=${LOCALBASE} -PLIST_SUB+= SQLITE="" -.else -CONFIGURE_ARGS+= --without-sqlite -PLIST_SUB+= SQLITE="@comment " -.endif - post-patch: - @${REINPLACE_CMD} -e 's|postgresql/||g' \ - ${WRKSRC}/configure \ - ${WRKSRC}/gnunet_config.h \ - ${WRKSRC}/src/datacache/plugin_datacache_postgres.c \ - ${WRKSRC}/src/datastore/plugin_datastore_postgres.c \ - ${WRKSRC}/src/include/gnunet_postgres_lib.h - @${REINPLACE_CMD} \ - -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' \ - ${WRKSRC}/pkgconfig/Makefile.in + @${REINPLACE_CMD} -e \ + '/^install-data-am/s|install-docDATA||' ${WRKSRC}/Makefile.in +.for i in configure gnunet_config.h \ + src/datacache/plugin_datacache_postgres.c \ + src/datastore/plugin_datastore_postgres.c \ + src/include/gnunet_postgres_lib.h + @${REINPLACE_CMD} -e \ + 's|postgresql/||g' ${WRKSRC}/${i} +.endfor -post-install: +post-build: @${PRINTF} "%s\n%s\n%s\n" "[PATHS]" \ "SERVICEHOME = ${GNUNET_DAEMON_DIR}" \ "DEFAULTCONFIG = ${PREFIX}/etc/gnunet.conf" \ - > ${PREFIX}/etc/gnunet.conf.sample -.if !exists(${PREFIX}/etc/gnunet.conf) - @${CP} ${PREFIX}/etc/gnunet.conf.sample ${PREFIX}/etc/gnunet.conf -.endif -.if !exists(${GNUNET_DAEMON_DIR}) - @${INSTALL} -d -o gnunet -g gnunet -m 700 ${GNUNET_DAEMON_DIR} -.endif - @${INSTALL_PROGRAM} ${WRKSRC}/contrib/timeout_watchdog ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @cd ${WRKSRC}/contrib; ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} -.endif - @${ECHO_CMD} "" - @${CAT} ${PKGMESSAGE} - @${ECHO_CMD} "" + > ${WRKDIR}/gnunet.conf.sample + +post-install: + (cd ${WRKSRC}/contrib && ${INSTALL_PROGRAM} timeout_watchdog \ + ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKDIR} && ${INSTALL_DATA} gnunet.conf.sample \ + ${STAGEDIR}${PREFIX}/etc) + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for i in AUTHORS ChangeLog NEWS README + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} \ + ${STAGEDIR}${DOCSDIR}) +.endfor + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} +.for i in gnunet_janitor.py gnunet_pyexpect.py report.sh + (cd ${WRKSRC}/contrib && ${INSTALL_DATA} ${i} \ + ${STAGEDIR}${EXAMPLESDIR}) +.endfor .include Index: head/net-p2p/gnunet/distinfo =================================================================== --- head/net-p2p/gnunet/distinfo (revision 367203) +++ head/net-p2p/gnunet/distinfo (revision 367204) @@ -1,2 +1,4 @@ -SHA256 (gnunet-0.9.3.tar.gz) = 50586ba4f82c4890f191bd79b1bb6504a5e9b9f90371f0c011879f25f9cef15e -SIZE (gnunet-0.9.3.tar.gz) = 6518731 +SHA256 (gnunet-0.10.1.tar.gz) = f65cbbf9678d5b009b0a9ab2f2a29f8c956a3a23594fb404b10bbfc947fd9d13 +SIZE (gnunet-0.10.1.tar.gz) = 5022047 +SHA256 (gnurl-7.37.0.tar.gz) = cd5d14769c28b84aabef7a4b3cfabf06a4ae31acd320647f3175ee61604c58d0 +SIZE (gnurl-7.37.0.tar.gz) = 3377006 Index: head/net-p2p/gnunet/files/patch-src__arm__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__arm__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__arm__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/arm/Makefile.in.orig ++++ src/arm/Makefile.in +@@ -668,7 +668,8 @@ + mockup-service.c + + mockup_service_LDADD = \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(GN_LIBINTL) + + @HAVE_PYTHON_TRUE@check_SCRIPTS = \ + @HAVE_PYTHON_TRUE@ test_gnunet_arm.py Property changes on: head/net-p2p/gnunet/files/patch-src__arm__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__ats-tests__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__ats-tests__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__ats-tests__Makefile.in (revision 367204) @@ -0,0 +1,22 @@ +--- src/ats-tests/Makefile.in.orig ++++ src/ats-tests/Makefile.in +@@ -722,7 +722,8 @@ + $(top_builddir)/src/testbed/libgnunettestbed.la \ + $(top_builddir)/src/ats/libgnunetats.la \ + $(top_builddir)/src/core/libgnunetcore.la \ +- $(top_builddir)/src/transport/libgnunettransport.la ++ $(top_builddir)/src/transport/libgnunettransport.la \ ++ $(GN_LIBINTL) + + gnunet_ats_sim_DEPENDENCIES = \ + libgnunetatstesting.la \ +@@ -735,7 +736,8 @@ + $(top_builddir)/src/util/libgnunetutil.la \ + $(top_builddir)/src/ats/libgnunetats.la \ + $(top_builddir)/src/core/libgnunetcore.la \ +- $(top_builddir)/src/transport/libgnunettransport.la ++ $(top_builddir)/src/transport/libgnunettransport.la \ ++ $(GN_LIBINTL) + + gnunet_solver_eval_DEPENDENCIES = \ + $(top_builddir)/src/util/libgnunetutil.la Property changes on: head/net-p2p/gnunet/files/patch-src__ats-tests__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__core__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__core__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__core__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/core/Makefile.in.orig ++++ src/core/Makefile.in +@@ -730,7 +730,8 @@ + + gnunet_core_LDADD = \ + $(top_builddir)/src/core/libgnunetcore.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(GN_LIBINTL) + + gnunet_core_DEPENDENCIES = \ + libgnunetcore.la Property changes on: head/net-p2p/gnunet/files/patch-src__core__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__dht__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__dht__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__dht__Makefile.in (revision 367204) @@ -0,0 +1,52 @@ +--- src/dht/Makefile.in.orig ++++ src/dht/Makefile.in +@@ -754,7 +754,8 @@ + $(top_builddir)/src/block/libgnunetblock.la \ + $(top_builddir)/src/datacache/libgnunetdatacache.la \ + $(top_builddir)/src/util/libgnunetutil.la \ +- -lm ++ -lm \ ++ $(LTLIBINTL) + + gnunet_service_dht_xvine_SOURCES = \ + gnunet-service-xdht.c gnunet-service-xdht.h \ +@@ -776,7 +777,8 @@ + $(top_builddir)/src/block/libgnunetblock.la \ + $(top_builddir)/src/datacache/libgnunetdatacache.la \ + $(top_builddir)/src/util/libgnunetutil.la \ +- -lm ++ -lm \ ++ $(LTLIBINTL) + + gnunet_dht_get_SOURCES = \ + gnunet-dht-get.c +@@ -784,7 +786,8 @@ + gnunet_dht_get_LDADD = \ + $(top_builddir)/src/dht/libgnunetdht.la \ + $(top_builddir)/src/core/libgnunetcore.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_dht_get_DEPENDENCIES = \ + libgnunetdht.la +@@ -795,7 +798,8 @@ + gnunet_dht_put_LDADD = \ + $(top_builddir)/src/dht/libgnunetdht.la \ + $(top_builddir)/src/core/libgnunetcore.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_dht_put_DEPENDENCIES = \ + libgnunetdht.la +@@ -806,7 +810,8 @@ + gnunet_dht_monitor_LDADD = \ + $(top_builddir)/src/dht/libgnunetdht.la \ + $(top_builddir)/src/core/libgnunetcore.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_dht_monitor_DEPENDENCIES = \ + libgnunetdht.la Property changes on: head/net-p2p/gnunet/files/patch-src__dht__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__hello__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__hello__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__hello__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/hello/Makefile.in.orig ++++ src/hello/Makefile.in +@@ -633,7 +633,8 @@ + + gnunet_hello_LDADD = \ + $(top_builddir)/src/hello/libgnunethello.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_hello_DEPENDENCIES = \ + libgnunethello.la \ Property changes on: head/net-p2p/gnunet/files/patch-src__hello__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__mesh__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__mesh__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__mesh__Makefile.in (revision 367204) @@ -0,0 +1,32 @@ +--- src/mesh/Makefile.in.orig ++++ src/mesh/Makefile.in +@@ -707,7 +707,8 @@ + + gnunet_mesh_LDADD = \ + $(top_builddir)/src/mesh/libgnunetmesh.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_mesh_DEPENDENCIES = \ + libgnunetmesh.la +@@ -733,7 +734,8 @@ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ + $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \ + $(top_builddir)/src/hello/libgnunethello.la \ +- $(top_builddir)/src/block/libgnunetblock.la ++ $(top_builddir)/src/block/libgnunetblock.la \ ++ $(LTLIBINTL) + + gnunet_service_mesh_DEPENDENCIES = \ + $(top_builddir)/src/util/libgnunetutil.la \ +@@ -764,7 +766,8 @@ + $(top_builddir)/src/mesh/libgnunetmeshtest.a \ + $(top_builddir)/src/mesh/libgnunetmesh.la \ + $(top_builddir)/src/testbed/libgnunettestbed.la \ +- $(top_builddir)/src/statistics/libgnunetstatistics.la ++ $(top_builddir)/src/statistics/libgnunetstatistics.la \ ++ $(LTLIBINTL) + + dep_mesh_test_lib = \ + libgnunetmesh.la \ Property changes on: head/net-p2p/gnunet/files/patch-src__mesh__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__nat__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__nat__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__nat__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/nat/Makefile.in.orig ++++ src/nat/Makefile.in +@@ -657,7 +657,8 @@ + + gnunet_nat_server_LDADD = \ + $(top_builddir)/src/nat/libgnunetnat.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(GN_LIBINTL) + + gnunet_nat_server_DEPENDENCIES = \ + libgnunetnat.la Property changes on: head/net-p2p/gnunet/files/patch-src__nat__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__peerinfo-tools__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__peerinfo-tools__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__peerinfo-tools__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/peerinfo-tool/Makefile.in.orig ++++ src/peerinfo-tool/Makefile.in +@@ -594,7 +594,8 @@ + $(top_builddir)/src/transport/libgnunettransport.la \ + $(top_builddir)/src/hello/libgnunethello.la \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(GN_LIBINTL) + + @HAVE_PYTHON_TRUE@check_SCRIPTS = \ + @HAVE_PYTHON_TRUE@ test_gnunet_peerinfo.py Property changes on: head/net-p2p/gnunet/files/patch-src__peerinfo-tools__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__peerinfo__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__peerinfo__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__peerinfo__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/peerinfo/Makefile.in.orig ++++ src/peerinfo/Makefile.in +@@ -683,7 +683,8 @@ + gnunet_service_peerinfo_LDADD = \ + $(top_builddir)/src/hello/libgnunethello.la \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + @HAVE_BENCHMARKS_TRUE@PEERINFO_BENCHMARKS = \ + @HAVE_BENCHMARKS_TRUE@ perf_peerinfo_api Property changes on: head/net-p2p/gnunet/files/patch-src__peerinfo__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__regex__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__regex__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__regex__Makefile.in (revision 367204) @@ -0,0 +1,32 @@ +--- src/regex/Makefile.in.orig ++++ src/regex/Makefile.in +@@ -812,7 +812,8 @@ + $(top_builddir)/src/dht/libgnunetdht.la \ + $(top_builddir)/src/regex/libgnunetregexblock.la \ + $(top_builddir)/src/regex/libgnunetregextest.a \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + perf_regex_DEPENDENCIES = \ + libgnunetregex_internal.a \ +@@ -829,7 +830,8 @@ + $(top_builddir)/src/regex/libgnunetregexblock.la \ + $(top_builddir)/src/regex/libgnunetregextest.a \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_regex_profiler_DEPENDENCIES = \ + $(top_builddir)/src/arm/libgnunetarm.la \ +@@ -846,7 +848,8 @@ + $(top_builddir)/src/regex/libgnunetregexblock.la \ + $(top_builddir)/src/regex/libgnunetregextest.a \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_daemon_regexprofiler_DEPENDENCIES = \ + $(top_builddir)/src/dht/libgnunetdht.la \ Property changes on: head/net-p2p/gnunet/files/patch-src__regex__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__testbed__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__testbed__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__testbed__Makefile.in (revision 367204) @@ -0,0 +1,22 @@ +--- src/testbed/Makefile.in.orig ++++ src/testbed/Makefile.in +@@ -1004,7 +1004,8 @@ + gnunet-service-testbed-logger.c + + gnunet_service_testbed_logger_LDADD = \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(LTLIBINTL) + + gnunet_service_testbed_logger_DEPENDENCIES = \ + $(top_builddir)/src/util/libgnunetutil.la +@@ -1014,7 +1015,8 @@ + + gnunet_testbed_profiler_LDADD = $(XLIB) \ + $(top_builddir)/src/util/libgnunetutil.la \ +- $(top_builddir)/src/testbed/libgnunettestbed.la ++ $(top_builddir)/src/testbed/libgnunettestbed.la \ ++ $(LTLIBINTL) + + gnunet_testbed_profiler_DEPENDENCIES = \ + $(top_builddir)/src/util/libgnunetutil.la \ Property changes on: head/net-p2p/gnunet/files/patch-src__testbed__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/patch-src__transport__Makefile.in =================================================================== --- head/net-p2p/gnunet/files/patch-src__transport__Makefile.in (nonexistent) +++ head/net-p2p/gnunet/files/patch-src__transport__Makefile.in (revision 367204) @@ -0,0 +1,12 @@ +--- src/transport/Makefile.in.orig ++++ src/transport/Makefile.in +@@ -1921,7 +1921,8 @@ + gnunet-transport-certificate-creation.c + + gnunet_transport_certificate_creation_LDADD = \ +- $(top_builddir)/src/util/libgnunetutil.la ++ $(top_builddir)/src/util/libgnunetutil.la \ ++ $(GN_LIBINTL) + + gnunet_helper_transport_wlan_SOURCES = \ + gnunet-helper-transport-wlan.c Property changes on: head/net-p2p/gnunet/files/patch-src__transport__Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/pkg-deinstall.in =================================================================== --- head/net-p2p/gnunet/files/pkg-deinstall.in (nonexistent) +++ head/net-p2p/gnunet/files/pkg-deinstall.in (revision 367204) @@ -0,0 +1,17 @@ +#!/bin/sh + +GNUNET_DAEMON_DIR=%%GNUNET_DAEMON_DIR%% + +case $2 in +POST-DEINSTALL) + rmdir $GNUNET_DAEMON_DIR 2>/dev/null || true + if [ -e $GNUNET_DAEMON_DIR ]; then + echo "" + echo "To completely remove the port, please remove the following" + echo "directories and the content manually:" + echo "" + echo " $GNUNET_DAEMON_DIR" + echo "" + fi + ;; +esac Property changes on: head/net-p2p/gnunet/files/pkg-deinstall.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/files/pkg-install.in =================================================================== --- head/net-p2p/gnunet/files/pkg-install.in (nonexistent) +++ head/net-p2p/gnunet/files/pkg-install.in (revision 367204) @@ -0,0 +1,11 @@ +#!/bin/sh + +GNUNET_DAEMON_DIR=%%GNUNET_DAEMON_DIR%% + +case $2 in +POST-INSTALL) + if [ ! -d $GNUNET_DAEMON_DIR ]; then + install -d -o gnunet -g gnunet -m 700 $GNUNET_DAEMON_DIR + fi + ;; +esac Property changes on: head/net-p2p/gnunet/files/pkg-install.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet/pkg-plist =================================================================== --- head/net-p2p/gnunet/pkg-plist (revision 367203) +++ head/net-p2p/gnunet/pkg-plist (revision 367204) @@ -1,356 +1,455 @@ bin/gnunet-arm +bin/gnunet-ats +bin/gnunet-auto-share +bin/gnunet-config +bin/gnunet-conversation +bin/gnunet-conversation-test bin/gnunet-core -bin/gnunet-daemon-hostlist -bin/gnunet-daemon-topology -bin/gnunet-dht-get -bin/gnunet-dht-monitor -bin/gnunet-dht-put +bin/gnunet-datastore bin/gnunet-directory bin/gnunet-download bin/gnunet-download-manager.scm +bin/gnunet-ecc bin/gnunet-fs +bin/gnunet-gns bin/gnunet-gns-import.sh -bin/gnunet-helper-fs-publish +bin/gnunet-gns-proxy-setup-ca +bin/gnunet-identity +bin/gnunet-mesh +bin/gnunet-namecache bin/gnunet-namestore bin/gnunet-nat-server +bin/gnunet-nse bin/gnunet-peerinfo -bin/gnunet-pseudonym bin/gnunet-publish +bin/gnunet-qr bin/gnunet-resolver -bin/gnunet-rsa +bin/gnunet-revocation +bin/gnunet-scrypt bin/gnunet-search -bin/gnunet-service-arm -bin/gnunet-service-ats -bin/gnunet-service-core -bin/gnunet-service-datastore -bin/gnunet-service-dht -bin/gnunet-service-fs -bin/gnunet-service-lockmanager -bin/gnunet-service-mesh -bin/gnunet-service-namestore -bin/gnunet-service-nse -bin/gnunet-service-peerinfo -bin/gnunet-service-resolver -bin/gnunet-service-statistics -bin/gnunet-service-template -bin/gnunet-service-transport +bin/gnunet-set-ibf-profiler +bin/gnunet-set-profiler bin/gnunet-statistics bin/gnunet-template +bin/gnunet-testbed-profiler bin/gnunet-testing bin/gnunet-transport bin/gnunet-transport-certificate-creation bin/gnunet-unindex -bin/mockup-service +bin/gnunet-uri +bin/gnunet-vpn bin/timeout_watchdog -@unexec if [ -f %D/etc/gnunet.conf ] ; then cd %D/etc ; cmp -s gnunet.conf.sample gnunet.conf && rm -f gnunet.conf ; fi -etc/gnunet.conf.sample -@exec if [ ! -f %B/gnunet.conf ] ; then cp -p %D/%F %B/gnunet.conf ; fi -include/gnunet/block_dns.h -include/gnunet/block_fs.h -include/gnunet/block_gns.h -include/gnunet/gauger.h +@sample etc/gnunet.conf.sample include/gnunet/gettext.h include/gnunet/gnunet_applications.h include/gnunet/gnunet_arm_service.h +include/gnunet/gnunet_ats_plugin.h include/gnunet/gnunet_ats_service.h include/gnunet/gnunet_bandwidth_lib.h include/gnunet/gnunet_bio_lib.h include/gnunet/gnunet_block_lib.h include/gnunet/gnunet_block_plugin.h -include/gnunet/gnunet_chat_service.h include/gnunet/gnunet_client_lib.h include/gnunet/gnunet_common.h include/gnunet/gnunet_config.h include/gnunet/gnunet_configuration_lib.h include/gnunet/gnunet_connection_lib.h +include/gnunet/gnunet_consensus_service.h include/gnunet/gnunet_constants.h include/gnunet/gnunet_container_lib.h +include/gnunet/gnunet_conversation_service.h include/gnunet/gnunet_core_service.h include/gnunet/gnunet_crypto_lib.h include/gnunet/gnunet_datacache_lib.h include/gnunet/gnunet_datacache_plugin.h include/gnunet/gnunet_datastore_plugin.h include/gnunet/gnunet_datastore_service.h include/gnunet/gnunet_dht_service.h -include/gnunet/gnunet_directories.h include/gnunet/gnunet_disk_lib.h include/gnunet/gnunet_dns_service.h include/gnunet/gnunet_dnsparser_lib.h +include/gnunet/gnunet_dnsstub_lib.h include/gnunet/gnunet_dv_service.h +include/gnunet/gnunet_env_lib.h include/gnunet/gnunet_fragmentation_lib.h +include/gnunet/gnunet_friends_lib.h include/gnunet/gnunet_fs_service.h include/gnunet/gnunet_getopt_lib.h include/gnunet/gnunet_gns_service.h +include/gnunet/gnunet_gnsrecord_lib.h +include/gnunet/gnunet_gnsrecord_plugin.h include/gnunet/gnunet_hello_lib.h include/gnunet/gnunet_helper_lib.h +include/gnunet/gnunet_identity_service.h include/gnunet/gnunet_load_lib.h -include/gnunet/gnunet_lockmanager_service.h include/gnunet/gnunet_mesh_service.h +include/gnunet/gnunet_microphone_lib.h +include/gnunet/gnunet_mq_lib.h +include/gnunet/gnunet_multicast_service.h include/gnunet/gnunet_mysql_lib.h +include/gnunet/gnunet_namecache_plugin.h +include/gnunet/gnunet_namecache_service.h include/gnunet/gnunet_namestore_plugin.h include/gnunet/gnunet_namestore_service.h include/gnunet/gnunet_nat_lib.h include/gnunet/gnunet_network_lib.h include/gnunet/gnunet_nse_service.h include/gnunet/gnunet_os_lib.h include/gnunet/gnunet_peer_lib.h include/gnunet/gnunet_peerinfo_service.h include/gnunet/gnunet_plugin_lib.h include/gnunet/gnunet_postgres_lib.h include/gnunet/gnunet_program_lib.h include/gnunet/gnunet_protocols.h -include/gnunet/gnunet_pseudonym_lib.h -include/gnunet/gnunet_regex_lib.h +include/gnunet/gnunet_psyc_service.h +include/gnunet/gnunet_psycstore_plugin.h +include/gnunet/gnunet_psycstore_service.h +include/gnunet/gnunet_regex_service.h include/gnunet/gnunet_resolver_service.h +include/gnunet/gnunet_revocation_service.h +include/gnunet/gnunet_scalarproduct_service.h include/gnunet/gnunet_scheduler_lib.h +include/gnunet/gnunet_secretsharing_service.h include/gnunet/gnunet_server_lib.h include/gnunet/gnunet_service_lib.h +include/gnunet/gnunet_set_service.h include/gnunet/gnunet_signal_lib.h include/gnunet/gnunet_signatures.h +include/gnunet/gnunet_speaker_lib.h include/gnunet/gnunet_statistics_service.h -include/gnunet/gnunet_stream_lib.h include/gnunet/gnunet_strings_lib.h +include/gnunet/gnunet_testbed_logger_service.h include/gnunet/gnunet_testbed_service.h -include/gnunet/gnunet_testing_lib-new.h include/gnunet/gnunet_testing_lib.h include/gnunet/gnunet_time_lib.h include/gnunet/gnunet_transport_plugin.h include/gnunet/gnunet_transport_service.h include/gnunet/gnunet_tun_lib.h include/gnunet/gnunet_util_lib.h include/gnunet/gnunet_vpn_service.h include/gnunet/platform.h include/gnunet/plibc.h -lib/gnunet/libgnunet_plugin_block_dht.a -lib/gnunet/libgnunet_plugin_block_dht.la +lib/gnunet/libexec/gnunet-daemon-exit +lib/gnunet/libexec/gnunet-daemon-latency-logger +lib/gnunet/libexec/gnunet-daemon-pt +lib/gnunet/libexec/gnunet-daemon-regexprofiler +lib/gnunet/libexec/gnunet-daemon-testbed-blacklist +lib/gnunet/libexec/gnunet-daemon-testbed-underlay +lib/gnunet/libexec/gnunet-daemon-topology +lib/gnunet/libexec/gnunet-dns2gns +lib/gnunet/libexec/gnunet-helper-audio-playback +lib/gnunet/libexec/gnunet-helper-audio-record +lib/gnunet/libexec/gnunet-helper-fs-publish +lib/gnunet/libexec/gnunet-helper-nat-client +lib/gnunet/libexec/gnunet-helper-nat-server +lib/gnunet/libexec/gnunet-helper-testbed +lib/gnunet/libexec/gnunet-service-arm +lib/gnunet/libexec/gnunet-service-ats +lib/gnunet/libexec/gnunet-service-conversation +lib/gnunet/libexec/gnunet-service-core +lib/gnunet/libexec/gnunet-service-datastore +lib/gnunet/libexec/gnunet-service-dht +lib/gnunet/libexec/gnunet-service-dht-xvine +lib/gnunet/libexec/gnunet-service-dns +lib/gnunet/libexec/gnunet-service-fs +lib/gnunet/libexec/gnunet-service-gns +lib/gnunet/libexec/gnunet-service-identity +lib/gnunet/libexec/gnunet-service-mesh +lib/gnunet/libexec/gnunet-service-namecache +lib/gnunet/libexec/gnunet-service-namestore +lib/gnunet/libexec/gnunet-service-nse +lib/gnunet/libexec/gnunet-service-peerinfo +lib/gnunet/libexec/gnunet-service-regex +lib/gnunet/libexec/gnunet-service-resolver +lib/gnunet/libexec/gnunet-service-revocation +lib/gnunet/libexec/gnunet-service-set +lib/gnunet/libexec/gnunet-service-statistics +lib/gnunet/libexec/gnunet-service-template +lib/gnunet/libexec/gnunet-service-testbed +lib/gnunet/libexec/gnunet-service-testbed-logger +lib/gnunet/libexec/gnunet-service-transport +lib/gnunet/libexec/gnunet-service-vpn +lib/gnunet/libgnunet_plugin_ats_mlp.so +lib/gnunet/libgnunet_plugin_ats_proportional.so +lib/gnunet/libgnunet_plugin_ats_ril.so lib/gnunet/libgnunet_plugin_block_dht.so -lib/gnunet/libgnunet_plugin_block_fs.a -lib/gnunet/libgnunet_plugin_block_fs.la +lib/gnunet/libgnunet_plugin_block_dns.so lib/gnunet/libgnunet_plugin_block_fs.so -lib/gnunet/libgnunet_plugin_block_template.a -lib/gnunet/libgnunet_plugin_block_template.la +lib/gnunet/libgnunet_plugin_block_gns.so +lib/gnunet/libgnunet_plugin_block_regex.so lib/gnunet/libgnunet_plugin_block_template.so -lib/gnunet/libgnunet_plugin_block_test.a -lib/gnunet/libgnunet_plugin_block_test.la lib/gnunet/libgnunet_plugin_block_test.so -%%MYSQL%%lib/gnunet/libgnunet_plugin_datacache_mysql.a -%%MYSQL%%lib/gnunet/libgnunet_plugin_datacache_mysql.la -%%MYSQL%%lib/gnunet/libgnunet_plugin_datacache_mysql.so -%%PGSQL%%lib/gnunet/libgnunet_plugin_datacache_postgres.a -%%PGSQL%%lib/gnunet/libgnunet_plugin_datacache_postgres.la -%%PGSQL%%lib/gnunet/libgnunet_plugin_datacache_postgres.so -%%SQLITE%%lib/gnunet/libgnunet_plugin_datacache_sqlite.a -%%SQLITE%%lib/gnunet/libgnunet_plugin_datacache_sqlite.la -%%SQLITE%%lib/gnunet/libgnunet_plugin_datacache_sqlite.so -lib/gnunet/libgnunet_plugin_datacache_template.a -lib/gnunet/libgnunet_plugin_datacache_template.la +lib/gnunet/libgnunet_plugin_datacache_heap.so +lib/gnunet/libgnunet_plugin_datacache_sqlite.so lib/gnunet/libgnunet_plugin_datacache_template.so -%%MYSQL%%lib/gnunet/libgnunet_plugin_datastore_mysql.a -%%MYSQL%%lib/gnunet/libgnunet_plugin_datastore_mysql.la -%%MYSQL%%lib/gnunet/libgnunet_plugin_datastore_mysql.so -%%PGSQL%%lib/gnunet/libgnunet_plugin_datastore_postgres.a -%%PGSQL%%lib/gnunet/libgnunet_plugin_datastore_postgres.la -%%PGSQL%%lib/gnunet/libgnunet_plugin_datastore_postgres.so -%%SQLITE%%lib/gnunet/libgnunet_plugin_datastore_sqlite.a -%%SQLITE%%lib/gnunet/libgnunet_plugin_datastore_sqlite.la -%%SQLITE%%lib/gnunet/libgnunet_plugin_datastore_sqlite.so -lib/gnunet/libgnunet_plugin_datastore_template.a -lib/gnunet/libgnunet_plugin_datastore_template.la +lib/gnunet/libgnunet_plugin_datastore_heap.so +lib/gnunet/libgnunet_plugin_datastore_sqlite.so lib/gnunet/libgnunet_plugin_datastore_template.so -%%SQLITE%%lib/gnunet/libgnunet_plugin_namestore_sqlite.a -%%SQLITE%%lib/gnunet/libgnunet_plugin_namestore_sqlite.la -%%SQLITE%%lib/gnunet/libgnunet_plugin_namestore_sqlite.so -lib/gnunet/libgnunet_plugin_test.a -lib/gnunet/libgnunet_plugin_test.la +lib/gnunet/libgnunet_plugin_gnsrecord_conversation.so +lib/gnunet/libgnunet_plugin_gnsrecord_dns.so +lib/gnunet/libgnunet_plugin_gnsrecord_gns.so +lib/gnunet/libgnunet_plugin_namecache_sqlite.so +lib/gnunet/libgnunet_plugin_namestore_sqlite.so lib/gnunet/libgnunet_plugin_test.so -%%HTTP%%lib/gnunet/libgnunet_plugin_transport_http.a -%%HTTP%%lib/gnunet/libgnunet_plugin_transport_http.la -%%HTTP%%lib/gnunet/libgnunet_plugin_transport_http.so -%%HTTP%%lib/gnunet/libgnunet_plugin_transport_https.a -%%HTTP%%lib/gnunet/libgnunet_plugin_transport_https.la -%%HTTP%%lib/gnunet/libgnunet_plugin_transport_https.so -lib/gnunet/libgnunet_plugin_transport_tcp.a -lib/gnunet/libgnunet_plugin_transport_tcp.la lib/gnunet/libgnunet_plugin_transport_tcp.so -lib/gnunet/libgnunet_plugin_transport_template.a -lib/gnunet/libgnunet_plugin_transport_template.la lib/gnunet/libgnunet_plugin_transport_template.so -lib/gnunet/libgnunet_plugin_transport_udp.a -lib/gnunet/libgnunet_plugin_transport_udp.la lib/gnunet/libgnunet_plugin_transport_udp.so -lib/gnunet/libgnunet_plugin_transport_unix.a -lib/gnunet/libgnunet_plugin_transport_unix.la lib/gnunet/libgnunet_plugin_transport_unix.so -lib/libgnunetarm.a -lib/libgnunetarm.la lib/libgnunetarm.so lib/libgnunetarm.so.1 -lib/libgnunetats.a -lib/libgnunetats.la +lib/libgnunetarm.so.1.0.3 lib/libgnunetats.so -lib/libgnunetats.so.2 -lib/libgnunetblock.a -lib/libgnunetblock.la +lib/libgnunetats.so.4 +lib/libgnunetats.so.4.0.0 +lib/libgnunetatstesting.so +lib/libgnunetatstesting.so.0 +lib/libgnunetatstesting.so.0.0.0 lib/libgnunetblock.so lib/libgnunetblock.so.0 -lib/libgnunetcore.a -lib/libgnunetcore.la +lib/libgnunetblock.so.0.0.0 +lib/libgnunetconversation.so +lib/libgnunetconversation.so.0 +lib/libgnunetconversation.so.0.0.0 lib/libgnunetcore.so lib/libgnunetcore.so.0 -lib/libgnunetdatacache.a -lib/libgnunetdatacache.la +lib/libgnunetcore.so.0.0.1 lib/libgnunetdatacache.so lib/libgnunetdatacache.so.0 -lib/libgnunetdatastore.a -lib/libgnunetdatastore.la +lib/libgnunetdatacache.so.0.0.1 lib/libgnunetdatastore.so lib/libgnunetdatastore.so.1 -lib/libgnunetdht.a -lib/libgnunetdht.la +lib/libgnunetdatastore.so.1.0.0 lib/libgnunetdht.so -lib/libgnunetdht.so.1 -lib/libgnunetfragmentation.a -lib/libgnunetfragmentation.la +lib/libgnunetdht.so.0 +lib/libgnunetdht.so.0.2.0 +lib/libgnunetdns.so +lib/libgnunetdns.so.0 +lib/libgnunetdns.so.0.0.0 +lib/libgnunetdnsparser.so +lib/libgnunetdnsparser.so.0 +lib/libgnunetdnsparser.so.0.1.0 +lib/libgnunetdnsstub.so +lib/libgnunetdnsstub.so.0 +lib/libgnunetdnsstub.so.0.0.0 lib/libgnunetfragmentation.so -lib/libgnunetfragmentation.so.1 -lib/libgnunetfs.a -lib/libgnunetfs.la +lib/libgnunetfragmentation.so.2 +lib/libgnunetfragmentation.so.2.0.0 +lib/libgnunetfriends.so +lib/libgnunetfriends.so.0 +lib/libgnunetfriends.so.0.0.0 lib/libgnunetfs.so lib/libgnunetfs.so.2 -lib/libgnunethello.a -lib/libgnunethello.la +lib/libgnunetfs.so.2.1.1 +lib/libgnunetgns.so +lib/libgnunetgns.so.0 +lib/libgnunetgns.so.0.0.0 +lib/libgnunetgnsrecord.so +lib/libgnunetgnsrecord.so.0 +lib/libgnunetgnsrecord.so.0.0.0 lib/libgnunethello.so lib/libgnunethello.so.0 -lib/libgnunetlockmanager.a -lib/libgnunetlockmanager.la -lib/libgnunetlockmanager.so -lib/libgnunetlockmanager.so.0 -lib/libgnunetmesh.a -lib/libgnunetmesh.la +lib/libgnunethello.so.0.1.0 +lib/libgnunetidentity.so +lib/libgnunetidentity.so.0 +lib/libgnunetidentity.so.0.0.0 lib/libgnunetmesh.so -lib/libgnunetmesh.so.1 -%%MYSQL%%lib/libgnunetmysql.a -%%MYSQL%%lib/libgnunetmysql.la -%%MYSQL%%lib/libgnunetmysql.so -%%MYSQL%%lib/libgnunetmysql.so.0 -lib/libgnunetnamestore.a -lib/libgnunetnamestore.la +lib/libgnunetmesh.so.5 +lib/libgnunetmesh.so.5.0.0 +lib/libgnunetmicrophone.so +lib/libgnunetmicrophone.so.0 +lib/libgnunetmicrophone.so.0.0.0 +lib/libgnunetnamecache.so +lib/libgnunetnamecache.so.0 +lib/libgnunetnamecache.so.0.0.0 lib/libgnunetnamestore.so lib/libgnunetnamestore.so.0 -lib/libgnunetnat.a -lib/libgnunetnat.la +lib/libgnunetnamestore.so.0.0.1 lib/libgnunetnat.so lib/libgnunetnat.so.0 -lib/libgnunetnse.a -lib/libgnunetnse.la +lib/libgnunetnat.so.0.1.1 lib/libgnunetnse.so lib/libgnunetnse.so.0 -lib/libgnunetpeerinfo.a -lib/libgnunetpeerinfo.la +lib/libgnunetnse.so.0.0.0 lib/libgnunetpeerinfo.so lib/libgnunetpeerinfo.so.0 -%%PGSQL%%lib/libgnunetpostgres.a -%%PGSQL%%lib/libgnunetpostgres.la -%%PGSQL%%lib/libgnunetpostgres.so -%%PGSQL%%lib/libgnunetpostgres.so.0 -lib/libgnunetstatistics.a -lib/libgnunetstatistics.la +lib/libgnunetpeerinfo.so.0.0.0 +lib/libgnunetregex.so +lib/libgnunetregex.so.3 +lib/libgnunetregex.so.3.0.1 +lib/libgnunetregexblock.so +lib/libgnunetregexblock.so.1 +lib/libgnunetregexblock.so.1.0.0 +lib/libgnunetrevocation.so +lib/libgnunetrevocation.so.0 +lib/libgnunetrevocation.so.0.0.0 +lib/libgnunetset.so +lib/libgnunetset.so.0 +lib/libgnunetset.so.0.0.0 +lib/libgnunetspeaker.so +lib/libgnunetspeaker.so.0 +lib/libgnunetspeaker.so.0.0.0 lib/libgnunetstatistics.so -lib/libgnunetstatistics.so.1 -lib/libgnunettestbed.a -lib/libgnunettestbed.la +lib/libgnunetstatistics.so.0 +lib/libgnunetstatistics.so.0.1.3 lib/libgnunettestbed.so lib/libgnunettestbed.so.0 -lib/libgnunettesting.a -lib/libgnunettesting.la +lib/libgnunettestbed.so.0.0.0 +lib/libgnunettestbedlogger.so +lib/libgnunettestbedlogger.so.0 +lib/libgnunettestbedlogger.so.0.0.0 lib/libgnunettesting.so -lib/libgnunettesting.so.0 -lib/libgnunettesting_new.a -lib/libgnunettesting_new.la -lib/libgnunettesting_new.so -lib/libgnunettesting_new.so.0 -lib/libgnunettransport.a -lib/libgnunettransport.la +lib/libgnunettesting.so.1 +lib/libgnunettesting.so.1.1.0 lib/libgnunettransport.so -lib/libgnunettransport.so.1 -lib/libgnunettransporttesting.a -lib/libgnunettransporttesting.la +lib/libgnunettransport.so.2 +lib/libgnunettransport.so.2.2.0 lib/libgnunettransporttesting.so lib/libgnunettransporttesting.so.0 -lib/libgnunettun.a -lib/libgnunettun.la +lib/libgnunettransporttesting.so.0.0.0 lib/libgnunettun.so lib/libgnunettun.so.0 -lib/libgnunetutil.a -lib/libgnunetutil.la +lib/libgnunettun.so.0.1.0 lib/libgnunetutil.so -lib/libgnunetutil.so.8 +lib/libgnunetutil.so.12 +lib/libgnunetutil.so.12.0.0 +lib/libgnunetvpn.so +lib/libgnunetvpn.so.0 +lib/libgnunetvpn.so.0.0.0 libdata/pkgconfig/gnunetarm.pc +libdata/pkgconfig/gnunetats.pc libdata/pkgconfig/gnunetblock.pc +libdata/pkgconfig/gnunetconsensus.pc +libdata/pkgconfig/gnunetconversation.pc libdata/pkgconfig/gnunetcore.pc libdata/pkgconfig/gnunetdatacache.pc libdata/pkgconfig/gnunetdatastore.pc libdata/pkgconfig/gnunetdht.pc -libdata/pkgconfig/gnunetdhtlog.pc +libdata/pkgconfig/gnunetdns.pc +libdata/pkgconfig/gnunetdnsparser.pc +libdata/pkgconfig/gnunetdnsstub.pc libdata/pkgconfig/gnunetdv.pc +libdata/pkgconfig/gnunetenv.pc libdata/pkgconfig/gnunetfragmentation.pc libdata/pkgconfig/gnunetfs.pc +libdata/pkgconfig/gnunetgns.pc libdata/pkgconfig/gnunethello.pc +libdata/pkgconfig/gnunetidentity.pc +libdata/pkgconfig/gnunetmesh.pc +libdata/pkgconfig/gnunetmicrophone.pc +libdata/pkgconfig/gnunetmulticast.pc +libdata/pkgconfig/gnunetmysql.pc +libdata/pkgconfig/gnunetnamestore.pc libdata/pkgconfig/gnunetnat.pc libdata/pkgconfig/gnunetnse.pc libdata/pkgconfig/gnunetpeerinfo.pc +libdata/pkgconfig/gnunetpostgres.pc +libdata/pkgconfig/gnunetpsyc.pc +libdata/pkgconfig/gnunetpsycstore.pc +libdata/pkgconfig/gnunetregex.pc +libdata/pkgconfig/gnunetrevocation.pc +libdata/pkgconfig/gnunetscalarproduct.pc +libdata/pkgconfig/gnunetset.pc +libdata/pkgconfig/gnunetspeaker.pc libdata/pkgconfig/gnunetstatistics.pc +libdata/pkgconfig/gnunettestbed.pc libdata/pkgconfig/gnunettesting.pc libdata/pkgconfig/gnunettransport.pc +libdata/pkgconfig/gnunettun.pc libdata/pkgconfig/gnunetutil.pc -share/gnunet/config.d/arm.conf -share/gnunet/config.d/ats.conf -share/gnunet/config.d/core.conf -share/gnunet/config.d/datacache.conf -share/gnunet/config.d/datastore.conf -share/gnunet/config.d/dht.conf -share/gnunet/config.d/fs.conf -share/gnunet/config.d/hostlist.conf -share/gnunet/config.d/lockmanager.conf -share/gnunet/config.d/mesh.conf -share/gnunet/config.d/namestore.conf -share/gnunet/config.d/nat.conf -share/gnunet/config.d/nse.conf -share/gnunet/config.d/peerinfo.conf -share/gnunet/config.d/resolver.conf -share/gnunet/config.d/statistics.conf -share/gnunet/config.d/template.conf -share/gnunet/config.d/testbed.conf -share/gnunet/config.d/testing.conf -share/gnunet/config.d/topology.conf -share/gnunet/config.d/transport.conf -share/gnunet/config.d/util.conf -share/gnunet/gnunet-logo-color.png -share/gnunet/hellos/02UK -share/gnunet/hellos/1G1M -share/gnunet/hellos/7RAV -share/gnunet/hellos/8B4T -share/gnunet/hellos/94CH -share/gnunet/hellos/ATF4 -share/gnunet/hellos/F1GT -share/gnunet/hellos/KD9V -share/gnunet/hellos/KUPL -share/gnunet/hellos/LJR8 -share/gnunet/hellos/R69Q -share/gnunet/hellos/R6OV -share/gnunet/hellos/RL7P -share/gnunet/testing_hostkeys.dat +libdata/pkgconfig/gnunetvpn.pc +man/man1/gnunet-arm.1.gz +man/man1/gnunet-ats.1.gz +man/man1/gnunet-auto-share.1.gz +man/man1/gnunet-config.1.gz +man/man1/gnunet-conversation-test.1.gz +man/man1/gnunet-conversation.1.gz +man/man1/gnunet-core.1.gz +man/man1/gnunet-datastore.1.gz +man/man1/gnunet-directory.1.gz +man/man1/gnunet-dns2gns.1.gz +man/man1/gnunet-download-manager.1.gz +man/man1/gnunet-download.1.gz +man/man1/gnunet-ecc.1.gz +man/man1/gnunet-fs.1.gz +man/man1/gnunet-gns-import.1.gz +man/man1/gnunet-gns-proxy.1.gz +man/man1/gnunet-gns.1.gz +man/man1/gnunet-identity.1.gz +man/man1/gnunet-mesh.1.gz +man/man1/gnunet-namecache.1.gz +man/man1/gnunet-namestore-fcfsd.1.gz +man/man1/gnunet-namestore.1.gz +man/man1/gnunet-nat-server.1.gz +man/man1/gnunet-peerinfo.1.gz +man/man1/gnunet-publish.1.gz +man/man1/gnunet-resolver.1.gz +man/man1/gnunet-revocation.1.gz +man/man1/gnunet-scalarproduct.1.gz +man/man1/gnunet-search.1.gz +man/man1/gnunet-statistics.1.gz +man/man1/gnunet-testing-run-service.1.gz +man/man1/gnunet-transport-certificate-creation.1.gz +man/man1/gnunet-transport.1.gz +man/man1/gnunet-unindex.1.gz +man/man1/gnunet-uri.1.gz +man/man1/gnunet-vpn.1.gz +man/man5/gnunet.conf.5.gz +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnunet_janitor.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnunet_pyexpect.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report.sh +%%DATADIR%%/config.d/arm.conf +%%DATADIR%%/config.d/ats.conf +%%DATADIR%%/config.d/conversation.conf +%%DATADIR%%/config.d/core.conf +%%DATADIR%%/config.d/datacache.conf +%%DATADIR%%/config.d/datastore.conf +%%DATADIR%%/config.d/dht.conf +%%DATADIR%%/config.d/dns.conf +%%DATADIR%%/config.d/exit.conf +%%DATADIR%%/config.d/fs.conf +%%DATADIR%%/config.d/gns.conf +%%DATADIR%%/config.d/hostlist.conf +%%DATADIR%%/config.d/identity.conf +%%DATADIR%%/config.d/mesh.conf +%%DATADIR%%/config.d/namecache.conf +%%DATADIR%%/config.d/namestore.conf +%%DATADIR%%/config.d/nat.conf +%%DATADIR%%/config.d/nse.conf +%%DATADIR%%/config.d/peerinfo.conf +%%DATADIR%%/config.d/pt.conf +%%DATADIR%%/config.d/regex.conf +%%DATADIR%%/config.d/resolver.conf +%%DATADIR%%/config.d/revocation.conf +%%DATADIR%%/config.d/set.conf +%%DATADIR%%/config.d/statistics.conf +%%DATADIR%%/config.d/template.conf +%%DATADIR%%/config.d/testbed.conf +%%DATADIR%%/config.d/testing.conf +%%DATADIR%%/config.d/topology.conf +%%DATADIR%%/config.d/transport.conf +%%DATADIR%%/config.d/util.conf +%%DATADIR%%/config.d/vpn.conf +%%DATADIR%%/gns-bcd.html +%%DATADIR%%/gns-bcd.tex +%%DATADIR%%/gnunet-logo-color.png +%%DATADIR%%/gnunet-logo.pdf +%%DATADIR%%/hellos/DPQIBOOJV8QBS3FGJ6B0K5NTSQ9SULV45H5KCR4HU7PQ64N8Q9F0 +%%DATADIR%%/hellos/R8TTJ9GAL5VIFOFNM8KNT3D83BVQPBNRHJSSD0IME63V821906EG +%%DATADIR%%/testing_hostkeys.ecc %%NLS%%share/locale/de/LC_MESSAGES/gnunet.mo %%NLS%%share/locale/es/LC_MESSAGES/gnunet.mo %%NLS%%share/locale/sv/LC_MESSAGES/gnunet.mo %%NLS%%share/locale/vi/LC_MESSAGES/gnunet.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/gnunet.mo -@dirrm share/gnunet/hellos -@dirrm share/gnunet/config.d -@dirrm share/gnunet +@dirrm %%DATADIR%%/hellos +@dirrm %%DATADIR%%/config.d +@dirrm %%DATADIR%% +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm lib/gnunet/libexec @dirrm lib/gnunet @dirrm include/gnunet -@exec if [ ! -d %%GNUNET_DAEMON_DIR%% ] ; then install -d -o gnunet -g gnunet -m 700 %%GNUNET_DAEMON_DIR%% ; fi -@exec chown -R gnunet:gnunet %%GNUNET_DAEMON_DIR%% -@exec chmod -R 700 %%GNUNET_DAEMON_DIR%% -@dirrmtry %%GNUNET_DAEMON_DIR%% Index: head/net-p2p/gnunet-gtk/Makefile =================================================================== --- head/net-p2p/gnunet-gtk/Makefile (revision 367203) +++ head/net-p2p/gnunet-gtk/Makefile (revision 367204) @@ -1,59 +1,49 @@ # Created by: bf # $FreeBSD$ PORTNAME= gnunet-gtk -DISTVERSION= 0.9.3 +PORTVERSION= 0.10.1 CATEGORIES= net-p2p ipv6 security -MASTER_SITES= GNU -MASTER_SITE_SUBDIR= gnunet +MASTER_SITES= GNU/gnunet MAINTAINER= ports@FreeBSD.org COMMENT= GTK interface to GNUnet -BROKEN= Does not fetch - LICENSE= GPLv3 LIB_DEPENDS= libgladeui-1.so:${PORTSDIR}/devel/glade3 \ - libgnunetutil.so:${PORTSDIR}/net-p2p/gnunet + libqrencode.so:${PORTSDIR}/graphics/libqrencode \ + libgnunetutil.so:${PORTSDIR}/net-p2p/gnunet \ + libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique -INSTALLS_ICONS= yes -USE_AUTOTOOLS= libltdl libtool -USES= pathfix iconv gmake pkgconfig -USE_LDCONFIG= yes - -CONFIGURE_ARGS= --with-extractor=${LOCALBASE} \ +USES= gmake iconv libtool pathfix pkgconfig +USE_GNOME= gtk20 +USE_AUTOTOOLS= libltdl +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-gtktest \ + --with-gtk-version=2 \ + --with-extractor=${LOCALBASE} \ --with-gnunet=${LOCALBASE} \ ${ICONV_CONFIGURE_ARG} +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes +INSTALLS_ICONS= yes -MAN1= gnunet-fs-gtk.1 +OPTIONS_DEFINE= DOCS -NO_STAGE= yes - -OPTIONS_DEFINE= DOCS NLS - -.include - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -CONFIGURE_ARGS+= --with-libintl-prefix=${LOCALBASE} -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - post-patch: - @${FIND} ${WRKSRC} -type f -name 'Makefile.in' -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -e \ - '/^[[:blank:]]*mkinstalldirs[[:blank:]]*=/s/=.*/= $$(mkdir_p)/' + @${REINPLACE_CMD} -e \ + 's|^\([[:space:]]\)install-docDATA$$|\1|' \ + ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|"$${mkinstalldirs}"|"$${MKDIR_P}"|' \ + ${WRKSRC}/pixmaps/Makefile.in -.if ${PORT_OPTIONS:MDOCS} -PORTDOCS= AUTHORS COPYING ChangeLog NEWS README - post-install: - @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for i in AUTHORS ChangeLog NEWS README + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} \ + ${STAGEDIR}${DOCSDIR}) +.endfor .include Index: head/net-p2p/gnunet-gtk/distinfo =================================================================== --- head/net-p2p/gnunet-gtk/distinfo (revision 367203) +++ head/net-p2p/gnunet-gtk/distinfo (revision 367204) @@ -1,2 +1,2 @@ -SHA256 (gnunet-gtk-0.9.3.tar.gz) = 6cbc841a3f45c8ef8e284006554af2ff0f88f04534aaa1aea0c2ec49e4b9e314 -SIZE (gnunet-gtk-0.9.3.tar.gz) = 1057982 +SHA256 (gnunet-gtk-0.10.1.tar.gz) = 8fac6aa405a0cca149b3ca373c0d80a932dff20f8e1d959863d50965749868dc +SIZE (gnunet-gtk-0.10.1.tar.gz) = 1547207 Index: head/net-p2p/gnunet-gtk/files/patch-configure =================================================================== --- head/net-p2p/gnunet-gtk/files/patch-configure (nonexistent) +++ head/net-p2p/gnunet-gtk/files/patch-configure (revision 367204) @@ -0,0 +1,24 @@ +--- configure.orig ++++ configure +@@ -14716,17 +14716,14 @@ + withval=$with_gtk_version; { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_gtk_version" >&5 + $as_echo "$with_gtk_version" >&6; } + case $with_gtk_version in +- *) +- if test "x${with_gtk_version:0:1}" == "x2" +- then ++ 2*) + check_for_3=false + check_for_2=$with_gtk_version +- elif test "x${with_gtk_version:0:1}" == "x3" +- then ++ ;; ++ 3*) + check_for_3=$with_gtk_version + check_for_2=false +- fi +- ;; ++ ;; + esac + + else Property changes on: head/net-p2p/gnunet-gtk/files/patch-configure ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet-gtk/files/patch-src__lib__eventloop.c =================================================================== --- head/net-p2p/gnunet-gtk/files/patch-src__lib__eventloop.c (nonexistent) +++ head/net-p2p/gnunet-gtk/files/patch-src__lib__eventloop.c (revision 367204) @@ -0,0 +1,11 @@ +--- src/lib/eventloop.c.orig ++++ src/lib/eventloop.c +@@ -181,7 +181,7 @@ + GNUNET_GTK_plug_me (const char *env_name, + GtkWidget *main_window) + { +-#ifdef GDK_WINDOWING_X11 ++#if defined(GDK_WINDOWING_X11) && GTK_MAJOR_VERSION >= 3 + const char *plugid; + GtkWidget *plug; + GtkWidget *child; Property changes on: head/net-p2p/gnunet-gtk/files/patch-src__lib__eventloop.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet-gtk/files/patch-src__main__gnunet-gtp.c =================================================================== --- head/net-p2p/gnunet-gtk/files/patch-src__main__gnunet-gtp.c (nonexistent) +++ head/net-p2p/gnunet-gtk/files/patch-src__main__gnunet-gtp.c (revision 367204) @@ -0,0 +1,20 @@ +--- src/main/gnunet-gtk.c.orig ++++ src/main/gnunet-gtk.c +@@ -177,7 +177,7 @@ + } + + +-#ifdef GDK_WINDOWING_X11 ++#if defined(GDK_WINDOWING_X11) && GTK_MAJOR_VERSION >= 3 + /** + * Start the child process for the plug. + * +@@ -308,7 +308,7 @@ + main_window = GTK_WIDGET (get_object ("gnunet_gtk_window")); + GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, + &cleanup_task, NULL); +-#ifdef GDK_WINDOWING_X11 ++#if defined(GDK_WINDOWING_X11) && GTK_MAJOR_VERSION >= 3 + plug ("gnunet_statistics_hbox", + "gnunet-statistics-gtk", + "GNUNET_STATISTICS_GTK_PLUG"); Property changes on: head/net-p2p/gnunet-gtk/files/patch-src__main__gnunet-gtp.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet-gtk/files/patch-src__setup__gnunet-setup-transport.c =================================================================== --- head/net-p2p/gnunet-gtk/files/patch-src__setup__gnunet-setup-transport.c (nonexistent) +++ head/net-p2p/gnunet-gtk/files/patch-src__setup__gnunet-setup-transport.c (revision 367204) @@ -0,0 +1,12 @@ +--- src/setup/gnunet-setup-transport.c.orig ++++ src/setup/gnunet-setup-transport.c +@@ -349,8 +349,7 @@ + if ( (sizeof (struct sockaddr_in6) == addrlen) && + (0 != memcmp (&in6addr_loopback, + &((struct sockaddr_in6 *)addr)->sin6_addr, +- sizeof (struct in6_addr))) && +- (! IN6_IS_ADDR_LINKLOCAL ((const struct sockaddr_in6*) addr)) ) ++ sizeof (struct in6_addr)))) + { + *have_v6 = GNUNET_YES; + GNUNET_log (GNUNET_ERROR_TYPE_INFO, Property changes on: head/net-p2p/gnunet-gtk/files/patch-src__setup__gnunet-setup-transport.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/gnunet-gtk/pkg-plist =================================================================== --- head/net-p2p/gnunet-gtk/pkg-plist (revision 367203) +++ head/net-p2p/gnunet-gtk/pkg-plist (revision 367204) @@ -1,301 +1,359 @@ +bin/gnunet-conversation-gtk bin/gnunet-fs-gtk -bin/gnunet-gns-gtk +bin/gnunet-gtk +bin/gnunet-identity-gtk +bin/gnunet-namestore-gtk bin/gnunet-peerinfo-gtk bin/gnunet-setup bin/gnunet-statistics-gtk include/gnunet-gtk/gnunet_gtk.h -lib/libgnunetgtk.a -lib/libgnunetgtk.la +include/gnunet-gtk/gnunet_gtk_namestore_plugin.h +lib/gnunet/libgnunet_plugin_gtk_namestore_a.so +lib/gnunet/libgnunet_plugin_gtk_namestore_aaaa.so +lib/gnunet/libgnunet_plugin_gtk_namestore_cname.so +lib/gnunet/libgnunet_plugin_gtk_namestore_gns2dns.so +lib/gnunet/libgnunet_plugin_gtk_namestore_leho.so +lib/gnunet/libgnunet_plugin_gtk_namestore_mx.so +lib/gnunet/libgnunet_plugin_gtk_namestore_phone.so +lib/gnunet/libgnunet_plugin_gtk_namestore_pkey.so +lib/gnunet/libgnunet_plugin_gtk_namestore_ptr.so +lib/gnunet/libgnunet_plugin_gtk_namestore_soa.so +lib/gnunet/libgnunet_plugin_gtk_namestore_txt.so +lib/gnunet/libgnunet_plugin_gtk_namestore_vpn.so lib/libgnunetgtk.so -lib/libgnunetgtk.so.2 +lib/libgnunetgtk.so.1 +lib/libgnunetgtk.so.1.1.0 +man/man1/gnunet-fs-gtk.1.gz +man/man1/gnunet-identity-gtk.1.gz +man/man1/gnunet-namestore-gtk.1.gz +man/man1/gnunet-peerinfo-gtk.1.gz +man/man1/gnunet-setup.1.gz +man/man1/gnunet-statistics-gtk.1.gz share/applications/gnunet-fs-gtk.desktop share/applications/gnunet-setup.desktop -share/gnunet-gtk/config.d/gnunet-fs-gtk.conf -share/gnunet-gtk/flags/ad.png -share/gnunet-gtk/flags/ae.png -share/gnunet-gtk/flags/af.png -share/gnunet-gtk/flags/ag.png -share/gnunet-gtk/flags/ai.png -share/gnunet-gtk/flags/al.png -share/gnunet-gtk/flags/am.png -share/gnunet-gtk/flags/an.png -share/gnunet-gtk/flags/ao.png -share/gnunet-gtk/flags/aq.png -share/gnunet-gtk/flags/ar.png -share/gnunet-gtk/flags/as.png -share/gnunet-gtk/flags/at.png -share/gnunet-gtk/flags/au.png -share/gnunet-gtk/flags/aw.png -share/gnunet-gtk/flags/ax.png -share/gnunet-gtk/flags/az.png -share/gnunet-gtk/flags/ba.png -share/gnunet-gtk/flags/bb.png -share/gnunet-gtk/flags/bd.png -share/gnunet-gtk/flags/be.png -share/gnunet-gtk/flags/bf.png -share/gnunet-gtk/flags/bg.png -share/gnunet-gtk/flags/bh.png -share/gnunet-gtk/flags/bi.png -share/gnunet-gtk/flags/bj.png -share/gnunet-gtk/flags/bm.png -share/gnunet-gtk/flags/bn.png -share/gnunet-gtk/flags/bo.png -share/gnunet-gtk/flags/br.png -share/gnunet-gtk/flags/bs.png -share/gnunet-gtk/flags/bt.png -share/gnunet-gtk/flags/bv.png -share/gnunet-gtk/flags/bw.png -share/gnunet-gtk/flags/by.png -share/gnunet-gtk/flags/ca.png -share/gnunet-gtk/flags/cc.png -share/gnunet-gtk/flags/cd.png -share/gnunet-gtk/flags/cf.png -share/gnunet-gtk/flags/cg.png -share/gnunet-gtk/flags/ch.png -share/gnunet-gtk/flags/ci.png -share/gnunet-gtk/flags/ck.png -share/gnunet-gtk/flags/cl.png -share/gnunet-gtk/flags/cm.png -share/gnunet-gtk/flags/cn.png -share/gnunet-gtk/flags/co.png -share/gnunet-gtk/flags/cr.png -share/gnunet-gtk/flags/cs.png -share/gnunet-gtk/flags/cu.png -share/gnunet-gtk/flags/cv.png -share/gnunet-gtk/flags/cx.png -share/gnunet-gtk/flags/cy.png -share/gnunet-gtk/flags/cz.png -share/gnunet-gtk/flags/de.png -share/gnunet-gtk/flags/dj.png -share/gnunet-gtk/flags/dk.png -share/gnunet-gtk/flags/dm.png -share/gnunet-gtk/flags/do.png -share/gnunet-gtk/flags/dz.png -share/gnunet-gtk/flags/ec.png -share/gnunet-gtk/flags/ee.png -share/gnunet-gtk/flags/eg.png -share/gnunet-gtk/flags/eh.png -share/gnunet-gtk/flags/er.png -share/gnunet-gtk/flags/es.png -share/gnunet-gtk/flags/et.png -share/gnunet-gtk/flags/eu.png -share/gnunet-gtk/flags/fi.png -share/gnunet-gtk/flags/fj.png -share/gnunet-gtk/flags/fk.png -share/gnunet-gtk/flags/fm.png -share/gnunet-gtk/flags/fo.png -share/gnunet-gtk/flags/fr.png -share/gnunet-gtk/flags/ga.png -share/gnunet-gtk/flags/gb.png -share/gnunet-gtk/flags/gd.png -share/gnunet-gtk/flags/ge.png -share/gnunet-gtk/flags/gf.png -share/gnunet-gtk/flags/gh.png -share/gnunet-gtk/flags/gi.png -share/gnunet-gtk/flags/gl.png -share/gnunet-gtk/flags/gm.png -share/gnunet-gtk/flags/gn.png -share/gnunet-gtk/flags/gp.png -share/gnunet-gtk/flags/gq.png -share/gnunet-gtk/flags/gr.png -share/gnunet-gtk/flags/gs.png -share/gnunet-gtk/flags/gt.png -share/gnunet-gtk/flags/gu.png -share/gnunet-gtk/flags/gw.png -share/gnunet-gtk/flags/gy.png -share/gnunet-gtk/flags/hk.png -share/gnunet-gtk/flags/hm.png -share/gnunet-gtk/flags/hn.png -share/gnunet-gtk/flags/hr.png -share/gnunet-gtk/flags/ht.png -share/gnunet-gtk/flags/hu.png -share/gnunet-gtk/flags/id.png -share/gnunet-gtk/flags/ie.png -share/gnunet-gtk/flags/il.png -share/gnunet-gtk/flags/in.png -share/gnunet-gtk/flags/io.png -share/gnunet-gtk/flags/iq.png -share/gnunet-gtk/flags/ir.png -share/gnunet-gtk/flags/it.png -share/gnunet-gtk/flags/jm.png -share/gnunet-gtk/flags/jo.png -share/gnunet-gtk/flags/jp.png -share/gnunet-gtk/flags/ke.png -share/gnunet-gtk/flags/kg.png -share/gnunet-gtk/flags/kh.png -share/gnunet-gtk/flags/ki.png -share/gnunet-gtk/flags/km.png -share/gnunet-gtk/flags/kn.png -share/gnunet-gtk/flags/kp.png -share/gnunet-gtk/flags/kr.png -share/gnunet-gtk/flags/kw.png -share/gnunet-gtk/flags/ky.png -share/gnunet-gtk/flags/kz.png -share/gnunet-gtk/flags/la.png -share/gnunet-gtk/flags/lb.png -share/gnunet-gtk/flags/lc.png -share/gnunet-gtk/flags/li.png -share/gnunet-gtk/flags/lk.png -share/gnunet-gtk/flags/lr.png -share/gnunet-gtk/flags/ls.png -share/gnunet-gtk/flags/lt.png -share/gnunet-gtk/flags/lu.png -share/gnunet-gtk/flags/lv.png -share/gnunet-gtk/flags/ly.png -share/gnunet-gtk/flags/ma.png -share/gnunet-gtk/flags/mc.png -share/gnunet-gtk/flags/md.png -share/gnunet-gtk/flags/mg.png -share/gnunet-gtk/flags/mh.png -share/gnunet-gtk/flags/mk.png -share/gnunet-gtk/flags/ml.png -share/gnunet-gtk/flags/mm.png -share/gnunet-gtk/flags/mn.png -share/gnunet-gtk/flags/mo.png -share/gnunet-gtk/flags/mp.png -share/gnunet-gtk/flags/mq.png -share/gnunet-gtk/flags/mr.png -share/gnunet-gtk/flags/ms.png -share/gnunet-gtk/flags/mt.png -share/gnunet-gtk/flags/mu.png -share/gnunet-gtk/flags/mv.png -share/gnunet-gtk/flags/mw.png -share/gnunet-gtk/flags/mx.png -share/gnunet-gtk/flags/my.png -share/gnunet-gtk/flags/mz.png -share/gnunet-gtk/flags/na.png -share/gnunet-gtk/flags/nc.png -share/gnunet-gtk/flags/ne.png -share/gnunet-gtk/flags/nf.png -share/gnunet-gtk/flags/ng.png -share/gnunet-gtk/flags/ni.png -share/gnunet-gtk/flags/nl.png -share/gnunet-gtk/flags/no.png -share/gnunet-gtk/flags/np.png -share/gnunet-gtk/flags/nr.png -share/gnunet-gtk/flags/nu.png -share/gnunet-gtk/flags/nz.png -share/gnunet-gtk/flags/om.png -share/gnunet-gtk/flags/pa.png -share/gnunet-gtk/flags/pe.png -share/gnunet-gtk/flags/pf.png -share/gnunet-gtk/flags/pg.png -share/gnunet-gtk/flags/ph.png -share/gnunet-gtk/flags/pk.png -share/gnunet-gtk/flags/pl.png -share/gnunet-gtk/flags/pm.png -share/gnunet-gtk/flags/pn.png -share/gnunet-gtk/flags/pr.png -share/gnunet-gtk/flags/ps.png -share/gnunet-gtk/flags/pt.png -share/gnunet-gtk/flags/pw.png -share/gnunet-gtk/flags/py.png -share/gnunet-gtk/flags/qa.png -share/gnunet-gtk/flags/re.png -share/gnunet-gtk/flags/ro.png -share/gnunet-gtk/flags/ru.png -share/gnunet-gtk/flags/rw.png -share/gnunet-gtk/flags/sa.png -share/gnunet-gtk/flags/sb.png -share/gnunet-gtk/flags/sc.png -share/gnunet-gtk/flags/sd.png -share/gnunet-gtk/flags/se.png -share/gnunet-gtk/flags/sg.png -share/gnunet-gtk/flags/sh.png -share/gnunet-gtk/flags/si.png -share/gnunet-gtk/flags/sj.png -share/gnunet-gtk/flags/sk.png -share/gnunet-gtk/flags/sl.png -share/gnunet-gtk/flags/sm.png -share/gnunet-gtk/flags/sn.png -share/gnunet-gtk/flags/so.png -share/gnunet-gtk/flags/sr.png -share/gnunet-gtk/flags/st.png -share/gnunet-gtk/flags/sv.png -share/gnunet-gtk/flags/sy.png -share/gnunet-gtk/flags/sz.png -share/gnunet-gtk/flags/tc.png -share/gnunet-gtk/flags/td.png -share/gnunet-gtk/flags/tf.png -share/gnunet-gtk/flags/tg.png -share/gnunet-gtk/flags/th.png -share/gnunet-gtk/flags/tj.png -share/gnunet-gtk/flags/tk.png -share/gnunet-gtk/flags/tl.png -share/gnunet-gtk/flags/tm.png -share/gnunet-gtk/flags/tn.png -share/gnunet-gtk/flags/to.png -share/gnunet-gtk/flags/tr.png -share/gnunet-gtk/flags/tt.png -share/gnunet-gtk/flags/tv.png -share/gnunet-gtk/flags/tw.png -share/gnunet-gtk/flags/tz.png -share/gnunet-gtk/flags/ua.png -share/gnunet-gtk/flags/ug.png -share/gnunet-gtk/flags/um.png -share/gnunet-gtk/flags/us.png -share/gnunet-gtk/flags/uy.png -share/gnunet-gtk/flags/uz.png -share/gnunet-gtk/flags/va.png -share/gnunet-gtk/flags/vc.png -share/gnunet-gtk/flags/ve.png -share/gnunet-gtk/flags/vg.png -share/gnunet-gtk/flags/vi.png -share/gnunet-gtk/flags/vn.png -share/gnunet-gtk/flags/vu.png -share/gnunet-gtk/flags/wf.png -share/gnunet-gtk/flags/ws.png -share/gnunet-gtk/flags/ye.png -share/gnunet-gtk/flags/yt.png -share/gnunet-gtk/flags/za.png -share/gnunet-gtk/flags/zm.png -share/gnunet-gtk/flags/zw.png -share/gnunet-gtk/gnunet-setup-oxygen-cancel.png -share/gnunet-gtk/gnunet-setup-oxygen-ok.png -share/gnunet-gtk/gnunet_fs_gtk_about_window.glade -share/gnunet-gtk/gnunet_fs_gtk_create_namespace_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_download_as_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_edit_publication.glade -share/gnunet-gtk/gnunet_fs_gtk_main_window.glade -share/gnunet-gtk/gnunet_fs_gtk_namespace_manager.glade -share/gnunet-gtk/gnunet_fs_gtk_open_directory_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_open_url_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_progress_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_publish_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_publish_directory_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_publish_file_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_publish_tab.glade -share/gnunet-gtk/gnunet_fs_gtk_search_tab.glade -share/gnunet-gtk/gnunet_fs_gtk_select_pseudonym_dialog.glade -share/gnunet-gtk/gnunet_fs_gtk_unindex.glade -share/gnunet-gtk/gnunet_gns_gtk_about_window.glade -share/gnunet-gtk/gnunet_gns_gtk_main_window.glade -share/gnunet-gtk/gnunet_gns_gtk_zone_open.glade -share/gnunet-gtk/gnunet_gtk_status_bar_menu.glade -share/gnunet-gtk/gnunet_logo.png -share/gnunet-gtk/gnunet_peerinfo_gtk_about_window.glade -share/gnunet-gtk/gnunet_peerinfo_gtk_main_window.glade -share/gnunet-gtk/gnunet_setup_gtk_main_window.glade -share/gnunet-gtk/gnunet_statistics_gtk_about_window.glade -share/gnunet-gtk/gnunet_statistics_gtk_main_window.glade +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%DATADIR%%/config.d/gnunet-fs-gtk.conf +%%DATADIR%%/config.d/gnunet-namestore-gtk.conf +%%DATADIR%%/downloaded.gif +%%DATADIR%%/downloading.gif +%%DATADIR%%/downloading_not_receiving.gif +%%DATADIR%%/error.gif +%%DATADIR%%/flags/ad.png +%%DATADIR%%/flags/ae.png +%%DATADIR%%/flags/af.png +%%DATADIR%%/flags/ag.png +%%DATADIR%%/flags/ai.png +%%DATADIR%%/flags/al.png +%%DATADIR%%/flags/am.png +%%DATADIR%%/flags/an.png +%%DATADIR%%/flags/ao.png +%%DATADIR%%/flags/aq.png +%%DATADIR%%/flags/ar.png +%%DATADIR%%/flags/as.png +%%DATADIR%%/flags/at.png +%%DATADIR%%/flags/au.png +%%DATADIR%%/flags/aw.png +%%DATADIR%%/flags/ax.png +%%DATADIR%%/flags/az.png +%%DATADIR%%/flags/ba.png +%%DATADIR%%/flags/bb.png +%%DATADIR%%/flags/bd.png +%%DATADIR%%/flags/be.png +%%DATADIR%%/flags/bf.png +%%DATADIR%%/flags/bg.png +%%DATADIR%%/flags/bh.png +%%DATADIR%%/flags/bi.png +%%DATADIR%%/flags/bj.png +%%DATADIR%%/flags/bm.png +%%DATADIR%%/flags/bn.png +%%DATADIR%%/flags/bo.png +%%DATADIR%%/flags/br.png +%%DATADIR%%/flags/bs.png +%%DATADIR%%/flags/bt.png +%%DATADIR%%/flags/bv.png +%%DATADIR%%/flags/bw.png +%%DATADIR%%/flags/by.png +%%DATADIR%%/flags/ca.png +%%DATADIR%%/flags/cc.png +%%DATADIR%%/flags/cd.png +%%DATADIR%%/flags/cf.png +%%DATADIR%%/flags/cg.png +%%DATADIR%%/flags/ch.png +%%DATADIR%%/flags/ci.png +%%DATADIR%%/flags/ck.png +%%DATADIR%%/flags/cl.png +%%DATADIR%%/flags/cm.png +%%DATADIR%%/flags/cn.png +%%DATADIR%%/flags/co.png +%%DATADIR%%/flags/cr.png +%%DATADIR%%/flags/cs.png +%%DATADIR%%/flags/cu.png +%%DATADIR%%/flags/cv.png +%%DATADIR%%/flags/cx.png +%%DATADIR%%/flags/cy.png +%%DATADIR%%/flags/cz.png +%%DATADIR%%/flags/de.png +%%DATADIR%%/flags/dj.png +%%DATADIR%%/flags/dk.png +%%DATADIR%%/flags/dm.png +%%DATADIR%%/flags/do.png +%%DATADIR%%/flags/dz.png +%%DATADIR%%/flags/ec.png +%%DATADIR%%/flags/ee.png +%%DATADIR%%/flags/eg.png +%%DATADIR%%/flags/eh.png +%%DATADIR%%/flags/er.png +%%DATADIR%%/flags/es.png +%%DATADIR%%/flags/et.png +%%DATADIR%%/flags/eu.png +%%DATADIR%%/flags/fi.png +%%DATADIR%%/flags/fj.png +%%DATADIR%%/flags/fk.png +%%DATADIR%%/flags/fm.png +%%DATADIR%%/flags/fo.png +%%DATADIR%%/flags/fr.png +%%DATADIR%%/flags/ga.png +%%DATADIR%%/flags/gb.png +%%DATADIR%%/flags/gd.png +%%DATADIR%%/flags/ge.png +%%DATADIR%%/flags/gf.png +%%DATADIR%%/flags/gh.png +%%DATADIR%%/flags/gi.png +%%DATADIR%%/flags/gl.png +%%DATADIR%%/flags/gm.png +%%DATADIR%%/flags/gn.png +%%DATADIR%%/flags/gp.png +%%DATADIR%%/flags/gq.png +%%DATADIR%%/flags/gr.png +%%DATADIR%%/flags/gs.png +%%DATADIR%%/flags/gt.png +%%DATADIR%%/flags/gu.png +%%DATADIR%%/flags/gw.png +%%DATADIR%%/flags/gy.png +%%DATADIR%%/flags/hk.png +%%DATADIR%%/flags/hm.png +%%DATADIR%%/flags/hn.png +%%DATADIR%%/flags/hr.png +%%DATADIR%%/flags/ht.png +%%DATADIR%%/flags/hu.png +%%DATADIR%%/flags/id.png +%%DATADIR%%/flags/ie.png +%%DATADIR%%/flags/il.png +%%DATADIR%%/flags/in.png +%%DATADIR%%/flags/io.png +%%DATADIR%%/flags/iq.png +%%DATADIR%%/flags/ir.png +%%DATADIR%%/flags/it.png +%%DATADIR%%/flags/jm.png +%%DATADIR%%/flags/jo.png +%%DATADIR%%/flags/jp.png +%%DATADIR%%/flags/ke.png +%%DATADIR%%/flags/kg.png +%%DATADIR%%/flags/kh.png +%%DATADIR%%/flags/ki.png +%%DATADIR%%/flags/km.png +%%DATADIR%%/flags/kn.png +%%DATADIR%%/flags/kp.png +%%DATADIR%%/flags/kr.png +%%DATADIR%%/flags/kw.png +%%DATADIR%%/flags/ky.png +%%DATADIR%%/flags/kz.png +%%DATADIR%%/flags/la.png +%%DATADIR%%/flags/lb.png +%%DATADIR%%/flags/lc.png +%%DATADIR%%/flags/li.png +%%DATADIR%%/flags/lk.png +%%DATADIR%%/flags/lr.png +%%DATADIR%%/flags/ls.png +%%DATADIR%%/flags/lt.png +%%DATADIR%%/flags/lu.png +%%DATADIR%%/flags/lv.png +%%DATADIR%%/flags/ly.png +%%DATADIR%%/flags/ma.png +%%DATADIR%%/flags/mc.png +%%DATADIR%%/flags/md.png +%%DATADIR%%/flags/mg.png +%%DATADIR%%/flags/mh.png +%%DATADIR%%/flags/mk.png +%%DATADIR%%/flags/ml.png +%%DATADIR%%/flags/mm.png +%%DATADIR%%/flags/mn.png +%%DATADIR%%/flags/mo.png +%%DATADIR%%/flags/mp.png +%%DATADIR%%/flags/mq.png +%%DATADIR%%/flags/mr.png +%%DATADIR%%/flags/ms.png +%%DATADIR%%/flags/mt.png +%%DATADIR%%/flags/mu.png +%%DATADIR%%/flags/mv.png +%%DATADIR%%/flags/mw.png +%%DATADIR%%/flags/mx.png +%%DATADIR%%/flags/my.png +%%DATADIR%%/flags/mz.png +%%DATADIR%%/flags/na.png +%%DATADIR%%/flags/nc.png +%%DATADIR%%/flags/ne.png +%%DATADIR%%/flags/nf.png +%%DATADIR%%/flags/ng.png +%%DATADIR%%/flags/ni.png +%%DATADIR%%/flags/nl.png +%%DATADIR%%/flags/no.png +%%DATADIR%%/flags/np.png +%%DATADIR%%/flags/nr.png +%%DATADIR%%/flags/nu.png +%%DATADIR%%/flags/nz.png +%%DATADIR%%/flags/om.png +%%DATADIR%%/flags/pa.png +%%DATADIR%%/flags/pe.png +%%DATADIR%%/flags/pf.png +%%DATADIR%%/flags/pg.png +%%DATADIR%%/flags/ph.png +%%DATADIR%%/flags/pk.png +%%DATADIR%%/flags/pl.png +%%DATADIR%%/flags/pm.png +%%DATADIR%%/flags/pn.png +%%DATADIR%%/flags/pr.png +%%DATADIR%%/flags/ps.png +%%DATADIR%%/flags/pt.png +%%DATADIR%%/flags/pw.png +%%DATADIR%%/flags/py.png +%%DATADIR%%/flags/qa.png +%%DATADIR%%/flags/re.png +%%DATADIR%%/flags/ro.png +%%DATADIR%%/flags/ru.png +%%DATADIR%%/flags/rw.png +%%DATADIR%%/flags/sa.png +%%DATADIR%%/flags/sb.png +%%DATADIR%%/flags/sc.png +%%DATADIR%%/flags/sd.png +%%DATADIR%%/flags/se.png +%%DATADIR%%/flags/sg.png +%%DATADIR%%/flags/sh.png +%%DATADIR%%/flags/si.png +%%DATADIR%%/flags/sj.png +%%DATADIR%%/flags/sk.png +%%DATADIR%%/flags/sl.png +%%DATADIR%%/flags/sm.png +%%DATADIR%%/flags/sn.png +%%DATADIR%%/flags/so.png +%%DATADIR%%/flags/sr.png +%%DATADIR%%/flags/st.png +%%DATADIR%%/flags/sv.png +%%DATADIR%%/flags/sy.png +%%DATADIR%%/flags/sz.png +%%DATADIR%%/flags/tc.png +%%DATADIR%%/flags/td.png +%%DATADIR%%/flags/tf.png +%%DATADIR%%/flags/tg.png +%%DATADIR%%/flags/th.png +%%DATADIR%%/flags/tj.png +%%DATADIR%%/flags/tk.png +%%DATADIR%%/flags/tl.png +%%DATADIR%%/flags/tm.png +%%DATADIR%%/flags/tn.png +%%DATADIR%%/flags/to.png +%%DATADIR%%/flags/tr.png +%%DATADIR%%/flags/tt.png +%%DATADIR%%/flags/tv.png +%%DATADIR%%/flags/tw.png +%%DATADIR%%/flags/tz.png +%%DATADIR%%/flags/ua.png +%%DATADIR%%/flags/ug.png +%%DATADIR%%/flags/um.png +%%DATADIR%%/flags/us.png +%%DATADIR%%/flags/uy.png +%%DATADIR%%/flags/uz.png +%%DATADIR%%/flags/va.png +%%DATADIR%%/flags/vc.png +%%DATADIR%%/flags/ve.png +%%DATADIR%%/flags/vg.png +%%DATADIR%%/flags/vi.png +%%DATADIR%%/flags/vn.png +%%DATADIR%%/flags/vu.png +%%DATADIR%%/flags/wf.png +%%DATADIR%%/flags/ws.png +%%DATADIR%%/flags/ye.png +%%DATADIR%%/flags/yt.png +%%DATADIR%%/flags/za.png +%%DATADIR%%/flags/zm.png +%%DATADIR%%/flags/zw.png +%%DATADIR%%/found_source.gif +%%DATADIR%%/fs.png +%%DATADIR%%/fs.svg +%%DATADIR%%/gns.png +%%DATADIR%%/gns.svg +%%DATADIR%%/gnunet-setup-oxygen-cancel.png +%%DATADIR%%/gnunet-setup-oxygen-ok.png +%%DATADIR%%/gnunet_conversation_gtk_about_window.glade +%%DATADIR%%/gnunet_conversation_gtk_main_window.glade +%%DATADIR%%/gnunet_fs_gtk_about_window.glade +%%DATADIR%%/gnunet_fs_gtk_download_as_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_edit_publication.glade +%%DATADIR%%/gnunet_fs_gtk_enter_nick_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_main_window.glade +%%DATADIR%%/gnunet_fs_gtk_open_directory_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_open_url_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_progress_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_pseu_progress_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_publish_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_publish_directory_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_publish_file_dialog.glade +%%DATADIR%%/gnunet_fs_gtk_publish_tab.glade +%%DATADIR%%/gnunet_fs_gtk_search_tab.glade +%%DATADIR%%/gnunet_fs_gtk_unindex.glade +%%DATADIR%%/gnunet_gtk.glade +%%DATADIR%%/gnunet_gtk_status_bar_menu.glade +%%DATADIR%%/gnunet_identity_gtk_about_window.glade +%%DATADIR%%/gnunet_identity_gtk_advertise_dialog.glade +%%DATADIR%%/gnunet_identity_gtk_main_window.glade +%%DATADIR%%/gnunet_logo.png +%%DATADIR%%/gnunet_namestore_edit_a.glade +%%DATADIR%%/gnunet_namestore_edit_aaaa.glade +%%DATADIR%%/gnunet_namestore_edit_cname.glade +%%DATADIR%%/gnunet_namestore_edit_gns2dns.glade +%%DATADIR%%/gnunet_namestore_edit_leho.glade +%%DATADIR%%/gnunet_namestore_edit_mx.glade +%%DATADIR%%/gnunet_namestore_edit_phone.glade +%%DATADIR%%/gnunet_namestore_edit_pkey.glade +%%DATADIR%%/gnunet_namestore_edit_ptr.glade +%%DATADIR%%/gnunet_namestore_edit_soa.glade +%%DATADIR%%/gnunet_namestore_edit_srv.glade +%%DATADIR%%/gnunet_namestore_edit_txt.glade +%%DATADIR%%/gnunet_namestore_edit_vpn.glade +%%DATADIR%%/gnunet_namestore_gtk_main_window.glade +%%DATADIR%%/gnunet_namestore_gtk_qr_save_as_dialog.glade +%%DATADIR%%/gnunet_peerinfo_gtk_about_window.glade +%%DATADIR%%/gnunet_peerinfo_gtk_main_window.glade +%%DATADIR%%/gnunet_setup_calendar_dialog.glade +%%DATADIR%%/gnunet_setup_main_window.glade +%%DATADIR%%/gnunet_statistics_gtk_about_window.glade +%%DATADIR%%/gnunet_statistics_gtk_main_window.glade +%%DATADIR%%/green.png +%%DATADIR%%/identity.png +%%DATADIR%%/identity.svg +%%DATADIR%%/peerinfo.png +%%DATADIR%%/peerinfo.svg +%%DATADIR%%/published.gif +%%DATADIR%%/publishing.gif +%%DATADIR%%/qr_dummy.png +%%DATADIR%%/red.png +%%DATADIR%%/searching_sources.gif +%%DATADIR%%/setup.png +%%DATADIR%%/setup.svg +%%DATADIR%%/statistics.png +%%DATADIR%%/statistics.svg share/icons/hicolor/16x16/apps/gnunet-fs-gtk.png +share/icons/hicolor/16x16/status/gnunet-fs-gtk-ns-association.png share/icons/hicolor/22x22/apps/gnunet-fs-gtk.png share/icons/hicolor/24x24/apps/gnunet-fs-gtk.png share/icons/hicolor/32x32/apps/gnunet-fs-gtk.png share/icons/hicolor/scalable/apps/gnunet-fs-gtk.svg -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/24x24/apps -@dirrmtry share/icons/hicolor/24x24 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons -@dirrm share/gnunet-gtk/flags -@dirrm share/gnunet-gtk/config.d -@dirrm share/gnunet-gtk +share/icons/hicolor/scalable/status/gnunet-fs-gtk-ns-association.svg +@dirrm %%DATADIR%%/flags +@dirrm %%DATADIR%%/config.d +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/gnunet-gtk