Skip to content

Commit

Permalink
Update to 0.4.0
Browse files Browse the repository at this point in the history
- Statfs support
- FUSE 2.6 API
- Single threaded main loop
- Write support
- mkdir/rmdir
  • Loading branch information
sborrill committed Apr 29, 2008
1 parent 56f5488 commit cce127c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
5 changes: 3 additions & 2 deletions filesystems/fuse-gphotofs/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.1.1.1 2007/05/02 19:43:40 sborrill Exp $
# $NetBSD: Makefile,v 1.2 2008/04/29 09:39:17 sborrill Exp $
#

DISTNAME= gphotofs-0.3
DISTNAME= gphotofs-0.4.0
PKGNAME= fuse-${DISTNAME}
CATEGORIES= filesystems
EXTRACT_SUFX= .tar.bz2
Expand All @@ -22,5 +22,6 @@ post-install:

.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/libgphoto2/buildlink3.mk"
.include "../../devel/libltdl/buildlink3.mk"
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
9 changes: 5 additions & 4 deletions filesystems/fuse-gphotofs/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.1.1.1 2007/05/02 19:43:40 sborrill Exp $
$NetBSD: distinfo,v 1.2 2008/04/29 09:39:17 sborrill Exp $

SHA1 (gphotofs-0.3.tar.bz2) = 24b6a66f89da6f53bf4240a91003841c2ff41fc5
RMD160 (gphotofs-0.3.tar.bz2) = 34fc6c5019319c57fcfc8c53938fccbf6cede18d
Size (gphotofs-0.3.tar.bz2) = 76186 bytes
SHA1 (gphotofs-0.4.0.tar.bz2) = b580af6059b514185cd98b3961701023c18e7430
RMD160 (gphotofs-0.4.0.tar.bz2) = 1b752284297fcbb74e252ae988682a8486399b1b
Size (gphotofs-0.4.0.tar.bz2) = 267708 bytes
SHA1 (patch-aa) = ab598c3c3dd5d1ca568d3a7a433ac8f508c8a25f
SHA1 (patch-ab) = 9e36861c26ddbac5bc69a2559a20758408f5d0d7
15 changes: 15 additions & 0 deletions filesystems/fuse-gphotofs/patches/patch-ab
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$NetBSD: patch-ab,v 1.1 2008/04/29 09:39:17 sborrill Exp $

--- gphotofs.c.orig 2008-04-25 00:21:37.000000000 +0100
+++ gphotofs.c 2008-04-25 00:22:57.000000000 +0100
@@ -26,6 +26,10 @@
#include <fcntl.h>
#include <sys/time.h>

+#ifdef HAVE_LOCALE_H
+#include <locale.h>
+#endif
+
/*
* Static variables set by command line arguments.
*/

0 comments on commit cce127c

Please sign in to comment.