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

(-)gtk-gnutella/Makefile (+2 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	gtk-gnutella
8
PORTNAME=	gtk-gnutella
9
PORTVERSION=	0.90
9
PORTVERSION=	0.90
10
PORTREVISION=	1
10
CATEGORIES=	net
11
CATEGORIES=	net
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
12
		http://gtk-gnutella.sourceforge.net/download/ \
13
		http://gtk-gnutella.sourceforge.net/download/ \
Lines 15-20 Link Here
15
16
16
MAINTAINER=	roman@xpert.com
17
MAINTAINER=	roman@xpert.com
17
18
19
USE_BZIP2=	yes
18
USE_X_PREFIX=	yes
20
USE_X_PREFIX=	yes
19
USE_GMAKE=	yes
21
USE_GMAKE=	yes
20
USE_GTK=	yes
22
USE_GTK=	yes
(-)gtk-gnutella/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (gtk-gnutella-0.90.tar.gz) = 7cdbd439c70d4b0f01c3e29b7a4229b4
1
MD5 (gtk-gnutella-0.90.tar.bz2) = 4f43c0260391106e0f8b7d50efe83c13
(-)gtk-gnutella/files/patch-aa (-12 lines)
Lines 1-12 Link Here
1
--- src/misc.h.orig	Sun Jul 14 23:38:00 2002
2
+++ src/misc.h	Sun Jul 14 23:38:15 2002
3
@@ -78,7 +78,9 @@
4
 gchar *short_uptime(guint32 s);
5
 guint32 random_value(guint32 max);
6
 void strlower(gchar *, gchar *);
7
+#ifndef __FreeBSD__
8
 guchar *strcasestr(const guchar *haystack, const guchar *needle);
9
+#endif
10
 gchar *build_url_from_download(struct download *d);
11
 
12
 #endif /* __misc_h__ */
(-)gtk-gnutella/files/patch-ab (-18 lines)
Lines 1-18 Link Here
1
--- src/misc.c.orig	Sun Jul 14 23:38:20 2002
2
+++ src/misc.c	Sun Jul 14 23:39:14 2002
3
@@ -562,6 +562,7 @@
4
 	} while (*src++);
5
 }
6
 
7
+#ifndef __FreeBSD__
8
 /*
9
  * strcasestr
10
  *
11
@@ -615,6 +616,7 @@
12
 
13
 	return NULL;		/* Not found */
14
 }
15
+#endif
16
 
17
 /* 
18
  * build_url_from_download:
(-)gtk-gnutella/files/patch-ac (-10 lines)
Lines 1-10 Link Here
1
--- src/filter.c.orig	Mon Jun 24 17:53:53 2002
2
+++ src/filter.c	Fri Jul 12 21:47:57 2002
3
@@ -23,6 +23,7 @@
4
  *----------------------------------------------------------------------
5
  */
6
 
7
+#include <sys/types.h>
8
 #include <netinet/in.h>
9
 #include <arpa/inet.h>
10
 
(-)gtk-gnutella/files/patch-ad (-10 lines)
Lines 1-10 Link Here
1
--- src/filter_gui.c.orig	Fri Jul 12 21:48:49 2002
2
+++ src/filter_gui.c	Fri Jul 12 21:49:01 2002
3
@@ -26,6 +26,7 @@
4
 /*
5
  * For ntohl and inet_addr
6
  */
7
+#include <sys/types.h>
8
 #include <netinet/in.h> 
9
 #include <arpa/inet.h>
10
 
(-)gtk-gnutella/files/patch-ae (-10 lines)
Lines 1-10 Link Here
1
--- src/http.c.orig	Fri Jun 21 07:19:09 2002
2
+++ src/http.c	Fri Jul 12 21:51:31 2002
3
@@ -31,6 +31,7 @@
4
 #include <string.h>
5
 #include <ctype.h>
6
 #include <errno.h>
7
+#include <time.h>
8
 
9
 #include "http.h"
10
 #include "appconfig.h"

Return to bug 42059