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

(-)/usr/home/tinderbox/portstrees/FreeBSD/ports/sysutils/mtpfs/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	mtpfs
8
PORTNAME=	mtpfs
9
PORTVERSION=	0.6
9
PORTVERSION=	0.9
10
PORTREVISION=	4
11
CATEGORIES=	sysutils
10
CATEGORIES=	sysutils
12
MASTER_SITES=	http://www.adebenham.com/mtpfs/
11
MASTER_SITES=	http://www.adebenham.com/mtpfs/
13
12
(-)/usr/home/tinderbox/portstrees/FreeBSD/ports/sysutils/mtpfs/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (mtpfs-0.6.tar.gz) = d81202b04b621334952d42527ee1c8e7
1
MD5 (mtpfs-0.9.tar.gz) = 70adfdbef3b228f7f6db4c01a08cf29a
2
SHA256 (mtpfs-0.6.tar.gz) = be5245d779aaa8dbec6844ae3f62dfa236957c3444607f7387528ad5125a61a3
2
SHA256 (mtpfs-0.9.tar.gz) = 828e82955232155380b243348eb16cb5f6acfe02ddbf97222308b2fc2dcb1d09
3
SIZE (mtpfs-0.6.tar.gz) = 91014
3
SIZE (mtpfs-0.9.tar.gz) = 95038
(-)/usr/home/tinderbox/portstrees/FreeBSD/ports/sysutils/mtpfs/files/patch-mtpfs.h (-6 / +7 lines)
Lines 1-22 Link Here
1
--- mtpfs.h.orig	Sun Jul  1 11:45:49 2007
1
--- mtpfs.h.orig	2009-01-04 03:03:56.000000000 +0800
2
+++ mtpfs.h	Sun Jul  1 11:46:22 2007
2
+++ mtpfs.h	2009-01-04 03:05:16.000000000 +0800
3
@@ -18,7 +18,9 @@
3
@@ -18,8 +18,9 @@
4
 #include <fcntl.h>
4
 #include <fcntl.h>
5
 #include <dirent.h>
5
 #include <dirent.h>
6
 #include <errno.h>
6
 #include <errno.h>
7
-#include <sys/statfs.h>
7
-#include <sys/statfs.h>
8
-
8
+#include <sys/param.h>
9
+#include <sys/param.h>
9
+#include <sys/mount.h>
10
+#include <sys/mount.h>
10
+#include <sys/statvfs.h>
11
+#include <sys/statvfs.h>
11
 
12
 #include <libmtp.h>
12
 #include <libmtp.h>
13
 #include <glib.h>
13
 #include <glib.h>
14
@@ -48,7 +50,7 @@
14
 #include <id3tag.h>
15
@@ -49,7 +50,7 @@
15
 static int mtpfs_unlink (const gchar * path);
16
 static int mtpfs_unlink (const gchar * path);
16
 static int mtpfs_mkdir (const char *path, mode_t mode);
17
 static int mtpfs_mkdir (const char *path, mode_t mode);
17
 static int mtpfs_rmdir (const char *path);
18
 static int mtpfs_rmdir (const char *path);
18
-static int mtpfs_statfs (const char *path, struct statfs *stbuf);
19
-static int mtpfs_statfs (const char *path, struct statfs *stbuf);
19
+static int mtpfs_statfs (const char *path, struct statvfs *stbuf);
20
+static int mtpfs_statfs (const char *path, struct statvfs *stbuf);
21
 int calc_length(int f);
20
 
22
 
21
 
23
 
22
 static LIBMTP_mtpdevice_t *device;

Return to bug 130142