[Midnightbsd-cvs] mports: sysutils/fusefs-curlftpfs: update to .92, set license

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Apr 3 02:18:56 EDT 2009


Log Message:
-----------
update to .92, set license

Modified Files:
--------------
    mports/sysutils/fusefs-curlftpfs:
        Makefile (r1.1 -> r1.2)
        distinfo (r1.1 -> r1.2)

Removed Files:
-------------
    mports/sysutils/fusefs-curlftpfs/files:
        patch-ftpfs-ls.c

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/sysutils/fusefs-curlftpfs/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -L sysutils/fusefs-curlftpfs/Makefile -L sysutils/fusefs-curlftpfs/Makefile -u -r1.1 -r1.2
--- sysutils/fusefs-curlftpfs/Makefile
+++ sysutils/fusefs-curlftpfs/Makefile
@@ -1,22 +1,17 @@
-# New ports collection makefile for:	fusefs-curlftpfs
-# Date created:		25 May 2006
-# Whom:			Andrew Pantyukhin <infofarmer at FreeBSD.org>
-#
 # $MidnightBSD$
-# $FreeBSD: ports/sysutils/fusefs-curlftpfs/Makefile,v 1.6 2006/12/15 22:08:00 sat Exp $
-#
 
 PORTNAME=	curlftpfs
-PORTVERSION=	0.9
+PORTVERSION=	0.9.2
 CATEGORIES=	sysutils
 MASTER_SITES=	SF
 PKGNAMEPREFIX=	fusefs-
 
 MAINTAINER=	ports at MidnightBSD.org
 COMMENT=	Mount remote ftp directories
+LICENSE=	gpl2
 
 LIB_DEPENDS=	fuse.2:${PORTSDIR}/sysutils/fusefs-libs \
-		curl.4:${PORTSDIR}/ftp/curl
+		curl.5:${PORTSDIR}/ftp/curl
 RUN_DEPENDS=	${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
 
 GNU_CONFIGURE=	yes
Index: distinfo
===================================================================
RCS file: /home/cvs/mports/sysutils/fusefs-curlftpfs/distinfo,v
retrieving revision 1.1
retrieving revision 1.2
diff -L sysutils/fusefs-curlftpfs/distinfo -L sysutils/fusefs-curlftpfs/distinfo -u -r1.1 -r1.2
--- sysutils/fusefs-curlftpfs/distinfo
+++ sysutils/fusefs-curlftpfs/distinfo
@@ -1,3 +1,4 @@
-MD5 (curlftpfs-0.9.tar.gz) = 7e29eb1963d4023bb7ea530a1b4274c4
-SHA256 (curlftpfs-0.9.tar.gz) = b49e17152d9f782309bf0f42c4ef1f90911294861e4323d418cdcadfa28450cc
-SIZE (curlftpfs-0.9.tar.gz) = 347657
+MD5 (curlftpfs-0.9.2.tar.gz) = b452123f755114cd4461d56c648d9f12
+SHA256 (curlftpfs-0.9.2.tar.gz) = 4eb44739c7078ba0edde177bdd266c4cfb7c621075f47f64c85a06b12b3c6958
+RMD160 (curlftpfs-0.9.2.tar.gz) = 16740731fc75b4249a8fddcae355ad1a9d408061
+SIZE (curlftpfs-0.9.2.tar.gz) = 365503
--- sysutils/fusefs-curlftpfs/files/patch-ftpfs-ls.c
+++ /dev/null
@@ -1,65 +0,0 @@
---- ftpfs-ls.c.orig	Tue Dec 12 11:09:37 2006
-+++ ftpfs-ls.c	Tue Dec 12 11:09:42 2006
-@@ -6,7 +6,12 @@
-     See the file COPYING.
- */
- 
-+#ifndef __FreeBSD__
- #define _XOPEN_SOURCE 600
-+#else
-+#define _XOPEN_SOURCE
-+#endif
-+
- #include <time.h>
- #include <string.h>
- #include <sys/types.h>
-@@ -27,7 +32,7 @@
-   long nlink = 1;
-   char user[33];
-   char group[33];
--  long size;
-+  unsigned long long size;
-   char month[4];
-   char day[3];
-   char year[6];
-@@ -42,25 +47,25 @@
- 
- #define SPACES "%*[ \t]"
-   res = sscanf(line,
--               "%11s" SPACES
-+               "%11s"
-                "%lu"  SPACES
-                "%32s" SPACES
-                "%32s" SPACES
--               "%lu"  SPACES
-+               "%llu" SPACES
-                "%3s"  SPACES
-                "%2s"  SPACES
--               "%5s"  SPACES
-+               "%5s"  "%*c"
-                "%1023c",
-                mode, &nlink, user, group, &size, month, day, year, file);
-   if (res < 9) {
-     res = sscanf(line,
--                 "%11s" SPACES
-+                 "%11s"
-                  "%32s" SPACES
-                  "%32s" SPACES
--                 "%lu"  SPACES
-+                 "%llu" SPACES
-                  "%3s"  SPACES
-                  "%2s"  SPACES
--                 "%5s"  SPACES
-+                 "%5s"  "%*c"
-                  "%1023c",
-                  mode, user, group, &size, month, day, year, file);
-     if (res < 8) {
-@@ -156,7 +161,7 @@
-   if (!strcmp(size, "<DIR>")) {
-     sbuf->st_mode |= S_IFDIR;
-   } else {
--    int nsize = strtol(size, NULL, 0);
-+    unsigned long long nsize = strtoull(size, NULL, 0);
-     sbuf->st_mode |= S_IFREG;
-     sbuf->st_size = nsize;
-     if (ftpfs.blksize) {


More information about the Midnightbsd-cvs mailing list