View | Details | Raw Unified | Return to bug 141818
Collapse All | Expand All

(-)net-p2p/gnunet/Makefile (-96 / +70 lines)
Lines 7-135 Link Here
7
#
7
#
8
8
9
PORTNAME=	gnunet
9
PORTNAME=	gnunet
10
PORTVERSION=	0.6.6b
10
PORTVERSION=	0.8.0c
11
PORTREVISION=	9
12
CATEGORIES=	net-p2p ipv6
11
CATEGORIES=	net-p2p ipv6
13
MASTER_SITES=	http://www.ovmj.org/GNUnet/download/ \
12
MASTER_SITES=	GNU \
14
		${MASTER_SITE_GNU}
13
		http://gnunet.org/download/
15
MASTER_SITE_SUBDIR=	${PORTNAME}
16
DISTNAME=	GNUnet-${PORTVERSION}
14
DISTNAME=	GNUnet-${PORTVERSION}
17
15
18
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=	ports@FreeBSD.org
19
COMMENT=	An anonymous, distributed, reputation-based network
17
COMMENT=	An anonymous, distributed, reputation-based network
20
18
21
LIB_DEPENDS=	gmp.8:${PORTSDIR}/math/libgmp4
19
LIB_DEPENDS=	adns.1:${PORTSDIR}/dns/adns \
20
		cares.2:${PORTSDIR}/dns/c-ares \
21
		curl.5:${PORTSDIR}/ftp/curl \
22
		guile.20:${PORTSDIR}/lang/guile \
23
		esmtp.6:${PORTSDIR}/mail/libesmtp \
24
		gmp.8:${PORTSDIR}/math/libgmp4 \
25
		gcrypt.16:${PORTSDIR}/security/libgcrypt \
26
		extractor.2:${PORTSDIR}/textproc/libextractor \
27
		microhttpd.6:${PORTSDIR}/www/libmicrohttpd
28
29
OPTIONS=	MYSQL	"Enable MySQL support"		on \
30
		PGSQL	"Enable PostgreSQL support"	off \
31
		SQLITE	"Enable SQLite support"		off
22
32
23
USE_AUTOTOOLS=	libltdl:22 libtool:22
24
GNU_CONFIGURE=	yes
25
USE_BZIP2=	yes
33
USE_BZIP2=	yes
34
USE_GNOME=	gnomehack libglade2
26
USE_GETTEXT=	yes
35
USE_GETTEXT=	yes
27
USE_GMAKE=	yes
36
USE_GMAKE=	yes
28
USE_GNOME=	gnometarget gtk20 lthack
37
USE_AUTOTOOLS=	libltdl:22 libtool:22
29
USE_OPENSSL=	yes
38
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
39
CONFIGURE_ARGS=	--disable-ltdl-install \
40
		--without-dialog \
41
		--without-cdialog \
42
		--without-qt
30
USE_LDCONFIG=	yes
43
USE_LDCONFIG=	yes
31
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include"
32
CONFIGURE_ARGS=	--disable-ltdl-install --with-crypto
33
LDFLAGS+=	-L${LOCALBASE}/lib
34
35
.if defined(WITH_GDBM)
36
LIB_DEPENDS+=		gdbm.3:${PORTSDIR}/databases/gdbm
37
PLIST_SUB+=		WITH_GDBM=""
38
.else
39
CONFIGURE_ARGS+=	--without-gdbm
40
PLIST_SUB+=		WITH_GDBM="@comment "
41
.endif
42
44
43
.if defined(WITH_MYSQL)
45
MAN1=		gnunet-auto-share.1 gnunet-chat.1 gnunet-directory.1 \
44
USE_MYSQL=	yes
46
		gnunet-download-manager.1 gnunet-download.1 gnunet-insert.1 \
45
CONFIGURE_ARGS+=	--with-mysql
47
		gnunet-peer-info.1 gnunet-pseudonym.1 gnunet-search.1 \
46
.else
48
		gnunet-setup.1 gnunet-stats.1 gnunet-tbench.1 \
47
CONFIGURE_ARGS+=	--without-mysql
49
		gnunet-testbed.1 gnunet-tracekit.1 gnunet-transport-check.1 \
48
.endif
50
		gnunet-unindex.1 gnunet-update.1 gnunet-vpn.1 \
51
		gnunetd.1
52
MAN5=		gnunet.conf.5 gnunetd.conf.5
49
53
50
.if defined(WITH_TDB)
54
CPPFLAGS=	-I${LOCALBASE}/include
51
LIB_DEPENDS+=		tdb.1:${PORTSDIR}/databases/tdb
55
LDFLAGS=	-L${LOCALBASE}/lib
52
PLIST_SUB+=		WITH_TDB=""
53
.else
54
CONFIGURE_ARGS+=	--without-tdb
55
PLIST_SUB+=		WITH_TDB="@comment "
56
.endif
57
56
58
.if defined(WITH_BDB3)
57
.include <bsd.port.pre.mk>
59
LIB_DEPENDS+=		db3:${PORTSDIR}/databases/db3
60
CONFIGURE_ARGS+=	--with-bdb=${LOCALBASE}
61
.else
62
CONFIGURE_ARGS+=	--without-bdb
63
.endif
64
58
65
.if defined(WITH_SQLITE)
59
.if defined(WITHOUT_MYSQL)
66
LIB_DEPENDS+=		sqlite3.8:${PORTSDIR}/databases/sqlite3
60
CONFIGURE_ARGS+=	--without-mysql
67
CONFIGURE_ARGS+=	--with-sqlite
61
PLIST_SUB+=		MYSQL="@comment "
68
PLIST_SUB+=		WITH_SQLITE=""
69
.else
62
.else
70
CONFIGURE_ARGS+=	--without-sqlite
63
USE_MYSQL=		yes
71
PLIST_SUB+=		WITH_SQLITE="@comment "
64
CONFIGURE_ARGS+=	--with-mysql=${LOCALBASE}
65
PLIST_SUB+=		MYSQL=""
72
.endif
66
.endif
73
67
74
.if defined(WITH_IPV6)
68
.if defined(WITH_PGSQL)
75
PKGNAMESUFFIX=		-ipv6
69
USE_PGSQL=		yes
76
CONFIGURE_ARGS+=	--enable-ipv6
70
CONFIGURE_ARGS+=	--with-postgres=${LOCALBASE}
77
PLIST_SUB+=		WITH_IPV6=""
71
PLIST_SUB+=		PGSQL=""
78
.else
72
.else
79
PLIST_SUB+=		WITH_IPV6="@comment "
73
74
CONFIGURE_ARGS+=	--without-postgres
75
PLIST_SUB+=		PGSQL="@comment "
80
.endif
76
.endif
81
77
82
.if defined(WITH_GUILE)
78
.if defined(WITH_SQLITE)
83
LIB_DEPENDS+=		guile.20:${PORTSDIR}/lang/guile
79
USE_SQLITE=		yes
84
CONFIGURE_ARGS+=	--enable-guile
80
CONFIGURE_ARGS+=	--with-sqlite=${LOCALBASE}
85
MAN1+=			gnunet-download-manager.1
81
PLIST_SUB+=		SQLITE=""
86
PLIST_SUB+=		WITH_GUILE=""
87
.else
82
.else
88
CONFIGURE_ARGS+=	--disable-guile
83
CONFIGURE_ARGS+=	--without-sqlite
89
PLIST_SUB+=		WITH_GUILE="@comment "
84
PLIST_SUB+=		SQLITE="@comment "
90
.endif
85
.endif
91
86
92
MAN1=		gnunet-chat.1 gnunet-check.1 gnunet-convert.1 \
93
		gnunet-delete.1 gnunet-directory.1 \
94
		gnunet-download.1 gnunet-gtk.1 gnunet-insert.1 \
95
		gnunet-peer-info.1 gnunet-pseudonym.1 \
96
		gnunet-search.1 gnunet-stats.1 gnunet-tbench.1 \
97
		gnunet-testbed.1 gnunet-tracekit.1 gnunet-transport-check.1 \
98
		gnunet-update.1 gnunetd.1
99
MAN5=		gnunet.conf.5
100
101
.include <bsd.port.pre.mk>
102
103
pre-everything::
104
	@${ECHO_MSG} ""
105
	@${ECHO_MSG} "You can build GNUnet with the following options:"
106
	@${ECHO_MSG} "		WITH_MYSQL=yes		Turn on MySQL support"
107
	@${ECHO_MSG} "		WITH_TDB=yes		Turn on TDB support"
108
	@${ECHO_MSG} "		WITH_BDB3=yes		Turn on Berkely DB library support"
109
	@${ECHO_MSG} "		WITH_GDBM=yes		Turn on GNU dbm support"
110
	@${ECHO_MSG} "		WITH_SQLITE=yes		Turn on sqlite support"
111
	@${ECHO_MSG} "		WITH_IPV6=yes		Turn on to enable IPv6 support"
112
	@${ECHO_MSG} ""
113
114
post-patch:
87
post-patch:
115
	@${FIND} ${WRKSRC} -name configure | ${XARGS} \
88
.for i in configure src/applications/sqstore_postgres/postgres.c
116
	${REINPLACE_CMD} -e \
89
	@${REINPLACE_CMD} -e 's|postgresql/||g' ${WRKSRC}/${i}
117
		's|-pthread [\$$]CFLAGS|${PTHREAD_CFLAGS} \$$CFLAGS|g ; \
90
.endfor
118
		 s|-lpthread|${PTHREAD_LIBS}|g'
119
	${REINPLACE_CMD} -e \
120
		's|^#include <values.h>|#include <limits.h>|g' \
121
		${WRKSRC}/src/applications/afs/module/manager.c
122
	${REINPLACE_CMD} -e \
123
		's|%%PREFIX%%|${PREFIX}|g' \
124
		${WRKSRC}/src/include/gnunet_util.h
125
91
126
post-install:
92
post-install:
127
	${INSTALL_DATA}	${WRKSRC}/contrib/gnunet.root ${PREFIX}/etc/gnunet.conf-dist
93
.for i in gnunet.conf gnunetd.conf
128
.ifndef(NOPORTDOCS)
94
	${INSTALL_DATA}	${WRKSRC}/contrib/${i} ${PREFIX}/etc/${i}-dist
129
	${MKDIR} ${DOCSDIR}
95
.endfor
130
	${INSTALL_DATA}	${WRKSRC}/contrib/gnunet.user ${DOCSDIR}
96
.if !defined(NOPORTDOCS)
131
	${INSTALL_DATA}	${WRKSRC}/README ${DOCSDIR}
97
	@${MKDIR} ${DOCSDIR}
132
	${INSTALL_DATA}	${WRKSRC}/ChangeLog ${DOCSDIR}
98
.for i in AUTHORS ChangeLog HACKING README UPDATING
99
	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
100
.endfor
101
.endif
102
.if !defined(NOPORTEXAMPLES)
103
	@${MKDIR} ${EXAMPLESDIR}
104
	${INSTALL_DATA} ${WRKSRC}/contrib/*.cgi ${EXAMPLESDIR}
105
	${INSTALL_DATA} ${WRKSRC}/contrib/*.php ${EXAMPLESDIR}
106
	${INSTALL_DATA} ${WRKSRC}/contrib/*.sh ${EXAMPLESDIR}
133
.endif
107
.endif
134
108
135
.include <bsd.port.post.mk>
109
.include <bsd.port.post.mk>
(-)net-p2p/gnunet/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (GNUnet-0.6.6b.tar.bz2) = dc04ecf7d1e7d4ccfde62fad101a301f
1
MD5 (GNUnet-0.8.0c.tar.bz2) = c98c4c8c538013f69e12e586c63b281e
2
SHA256 (GNUnet-0.6.6b.tar.bz2) = d454715a0531b2e0fe2a94ba60b5a8b89d720f3c384c65e94d24118be1a47bb1
2
SHA256 (GNUnet-0.8.0c.tar.bz2) = 03ad449f8acc3abb0f6afcd496dfb04a48c1eb811df57a856f46eb9334e79c22
3
SIZE (GNUnet-0.6.6b.tar.bz2) = 1291441
3
SIZE (GNUnet-0.8.0c.tar.bz2) = 1448541
(-)net-p2p/gnunet/files/patch-configure (-16 lines)
Lines 1-16 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-configure,v 1.4 2004/08/02 18:16:02 krion Exp $
3
4
--- configure.orig	Mon Aug  2 20:01:59 2004
5
+++ configure	Mon Aug  2 20:02:55 2004
6
@@ -15035,8 +15035,8 @@
7
 echo "${ECHO_T}\"$with_mysql\"" >&6
8
    if test "$with_mysql" != "no"
9
    then
10
-    LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS $ZLIBS"
11
-    CPPFLAGS="-I$with_mysql/include $CPPFLAGS"
12
+    LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql $LDFLAGS $ZLIBS"
13
+    CPPFLAGS="-I${LOCALBASE}/include $CPPFLAGS"
14
 
15
 for ac_header in mysql/mysql.h
16
 do
(-)net-p2p/gnunet/files/patch-src_applications_afs_module_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_afs_module_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/afs/module/Makefile.in.orig
5
+++ src/applications/afs/module/Makefile.in
6
@@ -203,7 +203,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(libgnunetafs_database_bdb_la_SOURCES) \
13
 	$(libgnunetafs_database_directory_la_SOURCES) \
14
 	$(libgnunetafs_database_gdbm_la_SOURCES) \
(-)net-p2p/gnunet/files/patch-src_applications_afs_tools_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_afs_tools_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/afs/tools/Makefile.in.orig
5
+++ src/applications/afs/tools/Makefile.in
6
@@ -104,7 +104,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(gnunet_delete_SOURCES) $(gnunet_directory_SOURCES) \
13
 	$(gnunet_download_SOURCES) $(gnunet_insert_SOURCES) \
14
 	$(gnunet_pseudonym_SOURCES) $(gnunet_search_SOURCES)
(-)net-p2p/gnunet/files/patch-src_applications_chat_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_chat_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/chat/Makefile.in.orig
5
+++ src/applications/chat/Makefile.in
6
@@ -80,7 +80,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(libgnunetchat_protocol_la_SOURCES) $(gnunet_chat_SOURCES)
13
 DIST_SOURCES = $(libgnunetchat_protocol_la_SOURCES) \
14
 	$(gnunet_chat_SOURCES)
(-)net-p2p/gnunet/files/patch-src_applications_dht_tools_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_dht_tools_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/dht/tools/Makefile.in.orig
5
+++ src/applications/dht/tools/Makefile.in
6
@@ -84,7 +84,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(libgnunetdht_api_la_SOURCES) $(gnunet_dht_join_SOURCES) \
13
 	$(gnunet_dht_query_SOURCES)
14
 DIST_SOURCES = $(libgnunetdht_api_la_SOURCES) \
(-)net-p2p/gnunet/files/patch-src_applications_stats_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_stats_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/stats/Makefile.in.orig
5
+++ src/applications/stats/Makefile.in
6
@@ -71,7 +71,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(gnunet_stats_SOURCES)
13
 DIST_SOURCES = $(gnunet_stats_SOURCES)
14
 ETAGS = etags
(-)net-p2p/gnunet/files/patch-src_applications_tbench_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_tbench_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/tbench/Makefile.in.orig
5
+++ src/applications/tbench/Makefile.in
6
@@ -81,7 +81,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(libgnunettbench_protocol_la_SOURCES) \
13
 	$(gnunet_tbench_SOURCES)
14
 DIST_SOURCES = $(libgnunettbench_protocol_la_SOURCES) \
(-)net-p2p/gnunet/files/patch-src_applications_testbed_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_testbed_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/testbed/Makefile.in.orig
5
+++ src/applications/testbed/Makefile.in
6
@@ -84,7 +84,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(libgnunettestbed_protocol_la_SOURCES) \
13
 	$(gnunet_testbed_SOURCES)
14
 DIST_SOURCES = $(libgnunettestbed_protocol_la_SOURCES) \
(-)net-p2p/gnunet/files/patch-src_applications_tracekit_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_applications_tracekit_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/applications/tracekit/Makefile.in.orig
5
+++ src/applications/tracekit/Makefile.in
6
@@ -81,7 +81,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(libgnunettracekit_protocol_la_SOURCES) \
13
 	$(gnunet_tracekit_SOURCES)
14
 DIST_SOURCES = $(libgnunettracekit_protocol_la_SOURCES) \
(-)net-p2p/gnunet/files/patch-src_conf_Makefile.in (-23 lines)
Lines 1-23 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_conf_Makefile.in,v 1.3 2005/04/10 20:18:56 krion Exp $
3
4
--- src/conf/Makefile.in.orig
5
+++ src/conf/Makefile.in
6
@@ -100,7 +100,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(gnunet_setup_SOURCES) gnunet-win-tool.c
13
 DIST_SOURCES = $(am__gnunet_setup_SOURCES_DIST) gnunet-win-tool.c
14
 ETAGS = etags
15
@@ -312,7 +312,7 @@
16
  gnunet-setup.c
17
 
18
 gnunet_setup_LDFLAGS = \
19
- $(curses_lib)
20
+ $(curses_lib) $(LTLIBINTL)
21
 
22
 gnunet_setup_LDADD = \
23
  $(top_builddir)/src/util/libgnunetutil.la
(-)net-p2p/gnunet/files/patch-src_include_gnunet__util.h (-25 lines)
Lines 1-25 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_include_gnunet__util.h,v 1.2 2005/01/24 15:49:31 krion Exp $
3
4
--- src/include/gnunet_util.h.orig
5
+++ src/include/gnunet_util.h
6
@@ -637,7 +637,7 @@
7
  * Default names of the configuration files.
8
  */
9
 #define DEFAULT_CLIENT_CONFIG_FILE "~/.gnunet/gnunet.conf"
10
-#define DEFAULT_DAEMON_CONFIG_FILE "/etc/gnunet.conf"
11
+#define DEFAULT_DAEMON_CONFIG_FILE "%%PREFIX%%/etc/gnunet.conf"
12
 
13
 /* *******************API *********************** */
14
 
15
@@ -1053,8 +1053,8 @@
16
  * @param ip the IP to check (in network byte order)
17
  * @return NO if the IP is not in the list, YES if it it is
18
  */
19
-int checkIP6Listed(const CIDR6Network * list,
20
-		   const IP6addr * ip);
21
+int checkIP6Listed(CIDR6Network * list,
22
+		   IP6addr * ip);
23
 
24
 /**
25
  * Parse a network specification. The argument specifies
(-)net-p2p/gnunet/files/patch-src_include_platform.h (-10 lines)
Lines 1-10 Link Here
1
--- src/include/platform.h.orig	Sat Nov  5 20:32:56 2005
2
+++ src/include/platform.h	Sat Nov  5 20:33:19 2005
3
@@ -57,6 +57,7 @@
4
  #include <Winsock2.h>
5
 #else
6
 #ifndef MINGW
7
+ #include <sys/types.h>
8
  #include <netdb.h>
9
  #include <sys/socket.h>
10
  #include <netinet/in.h>
(-)net-p2p/gnunet/files/patch-src_server_Makefile.in (-14 lines)
Lines 1-14 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_server_Makefile.in,v 1.4 2005/04/10 20:18:56 krion Exp $
3
4
--- src/server/Makefile.in.orig
5
+++ src/server/Makefile.in
6
@@ -108,7 +108,7 @@
7
 	$(AM_CFLAGS) $(CFLAGS)
8
 CCLD = $(CC)
9
 LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
10
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
11
+	$(AM_LDFLAGS) $(LDFLAGS) $(LTLIBINTL) -o $@
12
 SOURCES = $(fragmentationtest_SOURCES) $(gnunet_peer_info_SOURCES) \
13
 	$(gnunet_transport_check_SOURCES) $(gnunet_update_SOURCES) \
14
 	$(gnunetd_SOURCES)
(-)net-p2p/gnunet/files/patch-src_transports_udp6.c (-21 lines)
Lines 1-21 Link Here
1
2
$FreeBSD: ports/net-p2p/gnunet/files/patch-src_transports_udp6.c,v 1.2 2005/01/24 15:49:31 krion Exp $
3
4
--- src/transports/udp6.c.orig
5
+++ src/transports/udp6.c
6
@@ -275,6 +275,7 @@
7
 #endif
8
     /* quick test of the packet, if failed, repeat! */
9
     if (size != ntohs(udp6m.size)) {
10
+      char * tmp = MALLOC(INET6_ADDRSTRLEN);
11
       LOG(LOG_WARNING,
12
 	  _("Packed received from %s:%d (UDP6) failed format check."),
13
 	  inet_ntop(AF_INET6,
14
@@ -282,6 +283,7 @@
15
 		    tmp,
16
 		    INET6_ADDRSTRLEN), 
17
 	  ntohs(incoming.sin6_port));
18
+      FREE(tmp);
19
       goto RETRY;
20
     }
21
     GNUNET_ASSERT(sizeof(struct in6_addr) == sizeof(IP6addr));
(-)net-p2p/gnunet/pkg-plist (-93 / +278 lines)
Lines 1-13 Link Here
1
bin/gnunet-auto-share
1
bin/gnunet-chat
2
bin/gnunet-chat
2
bin/gnunet-check
3
bin/gnunet-convert
4
bin/gnunet-delete
5
bin/gnunet-dht-join
6
bin/gnunet-dht-query
7
bin/gnunet-directory
3
bin/gnunet-directory
8
bin/gnunet-download
4
bin/gnunet-download
9
%%WITH_GUILE%%bin/gnunet-download-manager.scm
10
bin/gnunet-gtk
11
bin/gnunet-insert
5
bin/gnunet-insert
12
bin/gnunet-peer-info
6
bin/gnunet-peer-info
13
bin/gnunet-pseudonym
7
bin/gnunet-pseudonym
Lines 15-113 Link Here
15
bin/gnunet-setup
9
bin/gnunet-setup
16
bin/gnunet-stats
10
bin/gnunet-stats
17
bin/gnunet-tbench
11
bin/gnunet-tbench
18
bin/gnunet-testbed
19
bin/gnunet-tracekit
12
bin/gnunet-tracekit
20
bin/gnunet-transport-check
13
bin/gnunet-transport-check
14
bin/gnunet-unindex
21
bin/gnunet-update
15
bin/gnunet-update
22
bin/gnunetd
16
bin/gnunetd
17
bin/remotetest
23
etc/gnunet.conf-dist
18
etc/gnunet.conf-dist
24
include/gnunet_afs_esed2.h
19
etc/gnunetd.conf-dist
25
include/gnunet_core.h
20
include/GNUnet/gnunet_bootstrap_service.h
26
include/gnunet_dht.h
21
include/GNUnet/gnunet_chat_lib.h
27
include/gnunet_dht_datastore_memory.h
22
include/GNUnet/gnunet_collection_lib.h
28
include/gnunet_dht_lib.h
23
include/GNUnet/gnunet_core.h
29
include/gnunet_dht_service.h
24
include/GNUnet/gnunet_datastore_service.h
30
include/gnunet_rpc_service.h
25
include/GNUnet/gnunet_dht_lib.h
31
include/gnunet_transport.h
26
include/GNUnet/gnunet_dht_service.h
32
include/gnunet_util.h
27
include/GNUnet/gnunet_directories.h
33
lib/libgnunet_afs_esed2.a
28
include/GNUnet/gnunet_dstore_service.h
34
lib/libgnunet_afs_esed2.la
29
include/GNUnet/gnunet_ecrs_lib.h
35
lib/libgnunet_afs_esed2.so
30
include/GNUnet/gnunet_fragmentation_service.h
36
lib/libgnunet_afs_esed2.so.0
31
include/GNUnet/gnunet_fs_lib.h
37
lib/libgnunetafs_protocol.a
32
include/GNUnet/gnunet_fsui_lib.h
38
lib/libgnunetafs_protocol.la
33
include/GNUnet/gnunet_getoption_lib.h
39
lib/libgnunetafs_protocol.so
34
include/GNUnet/gnunet_identity_lib.h
40
lib/libgnunetchat_protocol.a
35
include/GNUnet/gnunet_identity_service.h
41
lib/libgnunetchat_protocol.la
36
include/GNUnet/gnunet_kvstore_service.h
42
lib/libgnunetchat_protocol.so
37
include/GNUnet/gnunet_mysql.h
43
lib/libgnunetdht_api.a
38
include/GNUnet/gnunet_namespace_lib.h
44
lib/libgnunetdht_api.la
39
include/GNUnet/gnunet_pingpong_service.h
45
lib/libgnunetdht_api.so
40
include/GNUnet/gnunet_protocols.h
46
lib/libgnunetdht_api.so.0
41
include/GNUnet/gnunet_remote_lib.h
47
lib/libgnunetdht_datastore_memory.a
42
include/GNUnet/gnunet_rpc_lib.h
48
lib/libgnunetdht_datastore_memory.la
43
include/GNUnet/gnunet_rpc_service.h
49
lib/libgnunetdht_datastore_memory.so
44
include/GNUnet/gnunet_session_service.h
50
lib/libgnunetdht_datastore_memory.so.0
45
include/GNUnet/gnunet_setup_lib.h
51
lib/libgnunetdht_protocol.a
46
include/GNUnet/gnunet_sqstore_service.h
52
lib/libgnunetdht_protocol.la
47
include/GNUnet/gnunet_state_service.h
53
lib/libgnunetdht_protocol.so
48
include/GNUnet/gnunet_stats_lib.h
54
lib/libgnunetrpc_protocol.a
49
include/GNUnet/gnunet_stats_service.h
55
lib/libgnunetrpc_protocol.la
50
include/GNUnet/gnunet_testing_lib.h
56
lib/libgnunetrpc_protocol.so
51
include/GNUnet/gnunet_topology_service.h
57
lib/libgnunetrpc_util.a
52
include/GNUnet/gnunet_tracekit_lib.h
58
lib/libgnunetrpc_util.la
53
include/GNUnet/gnunet_traffic_lib.h
59
lib/libgnunetrpc_util.so
54
include/GNUnet/gnunet_traffic_service.h
60
lib/libgnunetrpc_util.so.0
55
include/GNUnet/gnunet_transport.h
61
lib/libgnunettbench_protocol.a
56
include/GNUnet/gnunet_transport_service.h
62
lib/libgnunettbench_protocol.la
57
include/GNUnet/gnunet_upnp_service.h
63
lib/libgnunettbench_protocol.so
58
include/GNUnet/gnunet_uritrack_lib.h
64
lib/libgnunettestbed_protocol.a
59
include/GNUnet/gnunet_util.h
65
lib/libgnunettestbed_protocol.la
60
include/GNUnet/gnunet_util_boot.h
66
lib/libgnunettestbed_protocol.so
61
include/GNUnet/gnunet_util_common.h
67
lib/libgnunettracekit_protocol.a
62
include/GNUnet/gnunet_util_config.h
68
lib/libgnunettracekit_protocol.la
63
include/GNUnet/gnunet_util_containers.h
69
lib/libgnunettracekit_protocol.so
64
include/GNUnet/gnunet_util_core.h
70
lib/libgnunettransport_http.a
65
include/GNUnet/gnunet_util_cron.h
71
lib/libgnunettransport_http.la
66
include/GNUnet/gnunet_util_crypto.h
72
lib/libgnunettransport_http.so
67
include/GNUnet/gnunet_util_disk.h
73
lib/libgnunettransport_nat.a
68
include/GNUnet/gnunet_util_error.h
74
lib/libgnunettransport_nat.la
69
include/GNUnet/gnunet_util_error_loggers.h
75
lib/libgnunettransport_nat.so
70
include/GNUnet/gnunet_util_getopt.h
76
lib/libgnunettransport_smtp.a
71
include/GNUnet/gnunet_util_network.h
77
lib/libgnunettransport_smtp.la
72
include/GNUnet/gnunet_util_network_client.h
78
lib/libgnunettransport_smtp.so
73
include/GNUnet/gnunet_util_os.h
79
lib/libgnunettransport_tcp.a
74
include/GNUnet/gnunet_util_pseudonym.h
80
lib/libgnunettransport_tcp.la
75
include/GNUnet/gnunet_util_string.h
81
lib/libgnunettransport_tcp.so
76
include/GNUnet/gnunet_util_threads.h
82
lib/libgnunettransport_udp.a
77
lib/GNUnet/libgnunetmodule_advertising.a
83
lib/libgnunettransport_udp.la
78
lib/GNUnet/libgnunetmodule_advertising.la
84
lib/libgnunettransport_udp.so
79
lib/GNUnet/libgnunetmodule_advertising.so
80
lib/GNUnet/libgnunetmodule_bootstrap.a
81
lib/GNUnet/libgnunetmodule_bootstrap.la
82
lib/GNUnet/libgnunetmodule_bootstrap.so
83
lib/GNUnet/libgnunetmodule_chat.a
84
lib/GNUnet/libgnunetmodule_chat.la
85
lib/GNUnet/libgnunetmodule_chat.so
86
lib/GNUnet/libgnunetmodule_datastore.a
87
lib/GNUnet/libgnunetmodule_datastore.la
88
lib/GNUnet/libgnunetmodule_datastore.so
89
lib/GNUnet/libgnunetmodule_dht.a
90
lib/GNUnet/libgnunetmodule_dht.la
91
lib/GNUnet/libgnunetmodule_dht.so
92
%%MYSQL%%lib/GNUnet/libgnunetmodule_dstore_mysql.a
93
%%MYSQL%%lib/GNUnet/libgnunetmodule_dstore_mysql.la
94
%%MYSQL%%lib/GNUnet/libgnunetmodule_dstore_mysql.so
95
%%SQLITE%%lib/GNUnet/libgnunetmodule_dstore_sqlite.a
96
%%SQLITE%%lib/GNUnet/libgnunetmodule_dstore_sqlite.la
97
%%SQLITE%%lib/GNUnet/libgnunetmodule_dstore_sqlite.so
98
lib/GNUnet/libgnunetmodule_fragmentation.a
99
lib/GNUnet/libgnunetmodule_fragmentation.la
100
lib/GNUnet/libgnunetmodule_fragmentation.so
101
lib/GNUnet/libgnunetmodule_fs.a
102
lib/GNUnet/libgnunetmodule_fs.la
103
lib/GNUnet/libgnunetmodule_fs.so
104
lib/GNUnet/libgnunetmodule_getoption.a
105
lib/GNUnet/libgnunetmodule_getoption.la
106
lib/GNUnet/libgnunetmodule_getoption.so
107
lib/GNUnet/libgnunetmodule_hostlist.a
108
lib/GNUnet/libgnunetmodule_hostlist.la
109
lib/GNUnet/libgnunetmodule_hostlist.so
110
lib/GNUnet/libgnunetmodule_identity.a
111
lib/GNUnet/libgnunetmodule_identity.la
112
lib/GNUnet/libgnunetmodule_identity.so
113
%%SQLITE%%lib/GNUnet/libgnunetmodule_kvstore_sqlite.a
114
%%SQLITE%%lib/GNUnet/libgnunetmodule_kvstore_sqlite.la
115
%%SQLITE%%lib/GNUnet/libgnunetmodule_kvstore_sqlite.so
116
lib/GNUnet/libgnunetmodule_pingpong.a
117
lib/GNUnet/libgnunetmodule_pingpong.la
118
lib/GNUnet/libgnunetmodule_pingpong.so
119
lib/GNUnet/libgnunetmodule_rpc.a
120
lib/GNUnet/libgnunetmodule_rpc.la
121
lib/GNUnet/libgnunetmodule_rpc.so
122
lib/GNUnet/libgnunetmodule_session.a
123
lib/GNUnet/libgnunetmodule_session.la
124
lib/GNUnet/libgnunetmodule_session.so
125
%%MYSQL%%lib/GNUnet/libgnunetmodule_sqstore_mysql.a
126
%%MYSQL%%lib/GNUnet/libgnunetmodule_sqstore_mysql.la
127
%%MYSQL%%lib/GNUnet/libgnunetmodule_sqstore_mysql.so
128
%%PGSQL%%lib/GNUnet/libgnunetmodule_sqstore_postgres.a
129
%%PGSQL%%lib/GNUnet/libgnunetmodule_sqstore_postgres.la
130
%%PGSQL%%lib/GNUnet/libgnunetmodule_sqstore_postgres.so
131
%%SQLITE%%lib/GNUnet/libgnunetmodule_sqstore_sqlite.a
132
%%SQLITE%%lib/GNUnet/libgnunetmodule_sqstore_sqlite.la
133
%%SQLITE%%lib/GNUnet/libgnunetmodule_sqstore_sqlite.so
134
lib/GNUnet/libgnunetmodule_state.a
135
lib/GNUnet/libgnunetmodule_state.la
136
lib/GNUnet/libgnunetmodule_state.so
137
lib/GNUnet/libgnunetmodule_stats.a
138
lib/GNUnet/libgnunetmodule_stats.la
139
lib/GNUnet/libgnunetmodule_stats.so
140
lib/GNUnet/libgnunetmodule_tbench.a
141
lib/GNUnet/libgnunetmodule_tbench.la
142
lib/GNUnet/libgnunetmodule_tbench.so
143
lib/GNUnet/libgnunetmodule_template.a
144
lib/GNUnet/libgnunetmodule_template.la
145
lib/GNUnet/libgnunetmodule_template.so
146
lib/GNUnet/libgnunetmodule_topology_default.a
147
lib/GNUnet/libgnunetmodule_topology_default.la
148
lib/GNUnet/libgnunetmodule_topology_default.so
149
lib/GNUnet/libgnunetmodule_tracekit.a
150
lib/GNUnet/libgnunetmodule_tracekit.la
151
lib/GNUnet/libgnunetmodule_tracekit.so
152
lib/GNUnet/libgnunetmodule_traffic.a
153
lib/GNUnet/libgnunetmodule_traffic.la
154
lib/GNUnet/libgnunetmodule_traffic.so
155
lib/GNUnet/libgnunetmodule_transport.a
156
lib/GNUnet/libgnunetmodule_transport.la
157
lib/GNUnet/libgnunetmodule_transport.so
158
lib/GNUnet/libgnunetmodule_upnp.a
159
lib/GNUnet/libgnunetmodule_upnp.la
160
lib/GNUnet/libgnunetmodule_upnp.so
161
lib/GNUnet/libgnunetsetup_gtk.a
162
lib/GNUnet/libgnunetsetup_gtk.la
163
lib/GNUnet/libgnunetsetup_gtk.so
164
lib/GNUnet/libgnunetsetup_text.a
165
lib/GNUnet/libgnunetsetup_text.la
166
lib/GNUnet/libgnunetsetup_text.so
167
lib/GNUnet/libgnunettransport_http.a
168
lib/GNUnet/libgnunettransport_http.la
169
lib/GNUnet/libgnunettransport_http.so
170
lib/GNUnet/libgnunettransport_nat.a
171
lib/GNUnet/libgnunettransport_nat.la
172
lib/GNUnet/libgnunettransport_nat.so
173
lib/GNUnet/libgnunettransport_smtp.a
174
lib/GNUnet/libgnunettransport_smtp.la
175
lib/GNUnet/libgnunettransport_smtp.so
176
lib/GNUnet/libgnunettransport_tcp.a
177
lib/GNUnet/libgnunettransport_tcp.la
178
lib/GNUnet/libgnunettransport_tcp.so
179
lib/GNUnet/libgnunettransport_udp.a
180
lib/GNUnet/libgnunettransport_udp.la
181
lib/GNUnet/libgnunettransport_udp.so
182
lib/libgnunetchatapi.a
183
lib/libgnunetchatapi.la
184
lib/libgnunetchatapi.so
185
lib/libgnunetchatapi.so.0
186
lib/libgnunetcollection.a
187
lib/libgnunetcollection.la
188
lib/libgnunetcollection.so
189
lib/libgnunetcollection.so.0
190
lib/libgnunetcore.a
191
lib/libgnunetcore.la
192
lib/libgnunetcore.so
193
lib/libgnunetcore.so.0
194
lib/libgnunetdhtapi.a
195
lib/libgnunetdhtapi.la
196
lib/libgnunetdhtapi.so
197
lib/libgnunetdhtapi.so.0
198
lib/libgnunetecrs.a
199
lib/libgnunetecrs.la
200
lib/libgnunetecrs.so
201
lib/libgnunetecrs.so.0
202
lib/libgnunetecrscore.a
203
lib/libgnunetecrscore.la
204
lib/libgnunetecrscore.so
205
lib/libgnunetecrscore.so.0
206
lib/libgnunetfs.a
207
lib/libgnunetfs.la
208
lib/libgnunetfs.so
209
lib/libgnunetfs.so.0
210
lib/libgnunetfsui.a
211
lib/libgnunetfsui.la
212
lib/libgnunetfsui.so
213
lib/libgnunetfsui.so.0
214
lib/libgnunetgetoptionapi.a
215
lib/libgnunetgetoptionapi.la
216
lib/libgnunetgetoptionapi.so
217
lib/libgnunetgetoptionapi.so.0
218
lib/libgnunetidentityapi.a
219
lib/libgnunetidentityapi.la
220
lib/libgnunetidentityapi.so
221
lib/libgnunetidentityapi.so.0
222
lib/libgnunetip.a
223
lib/libgnunetip.la
224
lib/libgnunetip.so
225
lib/libgnunetip.so.0
226
%%MYSQL%%lib/libgnunetmysql.a
227
%%MYSQL%%lib/libgnunetmysql.la
228
%%MYSQL%%lib/libgnunetmysql.so
229
%%MYSQL%%lib/libgnunetmysql.so.0
230
lib/libgnunetnamespace.a
231
lib/libgnunetnamespace.la
232
lib/libgnunetnamespace.so
233
lib/libgnunetnamespace.so.0
234
lib/libgnunetremoteapi.a
235
lib/libgnunetremoteapi.la
236
lib/libgnunetremoteapi.so
237
lib/libgnunetremoteapi.so.0
238
lib/libgnunetrpcutil.a
239
lib/libgnunetrpcutil.la
240
lib/libgnunetrpcutil.so
241
lib/libgnunetrpcutil.so.0
242
lib/libgnunetsetup.a
243
lib/libgnunetsetup.la
244
lib/libgnunetsetup.so
245
lib/libgnunetsetup.so.0
246
lib/libgnunetstatsapi.a
247
lib/libgnunetstatsapi.la
248
lib/libgnunetstatsapi.so
249
lib/libgnunetstatsapi.so.0
250
lib/libgnunettestingapi.a
251
lib/libgnunettestingapi.la
252
lib/libgnunettestingapi.so
253
lib/libgnunettestingapi.so.0
254
lib/libgnunettracekitapi.a
255
lib/libgnunettracekitapi.la
256
lib/libgnunettracekitapi.so
257
lib/libgnunettracekitapi.so.0
258
lib/libgnunettrafficapi.a
259
lib/libgnunettrafficapi.la
260
lib/libgnunettrafficapi.so
261
lib/libgnunettrafficapi.so.0
262
lib/libgnuneturitrack.a
263
lib/libgnuneturitrack.la
264
lib/libgnuneturitrack.so
265
lib/libgnuneturitrack.so.0
85
lib/libgnunetutil.a
266
lib/libgnunetutil.a
86
lib/libgnunetutil.la
267
lib/libgnunetutil.la
87
lib/libgnunetutil.so
268
lib/libgnunetutil.so
88
lib/libgnunetutil.so.0
269
lib/libgnunetutil.so.3
89
share/GNUnet/gnunet_logo.png
270
share/GNUnet/config-client.scm
90
share/locale/de/LC_MESSAGES/GNUnet.mo
271
share/GNUnet/config-daemon.scm
91
lib/libgnunetafs_database_directory.a
272
share/GNUnet/gnunet-lab-testing.conf
92
lib/libgnunetafs_database_directory.la
273
share/GNUnet/gnunet-logo-color.png
93
lib/libgnunetafs_database_directory.so
274
share/GNUnet/gnunet-setup.glade
94
%%WITH_GDBM%%lib/libgnunetafs_database_gdbm.a
275
share/GNUnet/gnunet-testing.conf
95
%%WITH_GDBM%%lib/libgnunetafs_database_gdbm.la
276
share/GNUnet/gnunetd.conf.skel
96
%%WITH_GDBM%%lib/libgnunetafs_database_gdbm.so
277
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
97
%%WITH_TDB%%lib/libgnunetafs_database_tdb.a
98
%%WITH_TDB%%lib/libgnunetafs_database_tdb.la
99
%%WITH_TDB%%lib/libgnunetafs_database_tdb.so
100
%%WITH_SQLITE%%lib/libgnunetafs_database_sqlite.a
101
%%WITH_SQLITE%%lib/libgnunetafs_database_sqlite.la
102
%%WITH_SQLITE%%lib/libgnunetafs_database_sqlite.so
103
%%WITH_IPV6%%lib/libgnunettransport_tcp6.a
104
%%WITH_IPV6%%lib/libgnunettransport_tcp6.la
105
%%WITH_IPV6%%lib/libgnunettransport_tcp6.so
106
%%WITH_IPV6%%lib/libgnunettransport_udp6.a
107
%%WITH_IPV6%%lib/libgnunettransport_udp6.la
108
%%WITH_IPV6%%lib/libgnunettransport_udp6.so
109
@dirrm share/GNUnet
110
%%PORTDOCS%%%%DOCSDIR%%/README
111
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
278
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
112
%%PORTDOCS%%%%DOCSDIR%%/gnunet.user
279
%%PORTDOCS%%%%DOCSDIR%%/HACKING
280
%%PORTDOCS%%%%DOCSDIR%%/README
281
%%PORTDOCS%%%%DOCSDIR%%/UPDATING
282
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnmessage.sh
283
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hostlist.cgi
284
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hostlist.php
285
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/junkinsert.sh
286
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/junklookup.sh
287
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/namespacehelper.sh
288
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report.sh
289
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/visualize_stats.sh
290
share/locale/de/LC_MESSAGES/GNUnet.mo
291
share/locale/es/LC_MESSAGES/GNUnet.mo
292
share/locale/sv/LC_MESSAGES/GNUnet.mo
293
share/locale/vi/LC_MESSAGES/GNUnet.mo
294
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
113
%%PORTDOCS%%@dirrm %%DOCSDIR%%
295
%%PORTDOCS%%@dirrm %%DOCSDIR%%
296
@dirrm share/GNUnet
297
@dirrm lib/GNUnet
298
@dirrm include/GNUnet

Return to bug 141818