ports/109561: [PATCH] sysutils/fusefs-funionfs: update to 0.4.2, reset maintainership

Gea-Suan Lin gslin at gslin.org
Mon Feb 26 13:20:06 UTC 2007


>Number:         109561
>Category:       ports
>Synopsis:       [PATCH] sysutils/fusefs-funionfs: update to 0.4.2, reset maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 26 13:20:05 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Gea-Suan Lin
>Release:        FreeBSD 6.2-RELEASE i386
>Organization:
>Environment:
System: FreeBSD netnews.NCTU.edu.tw 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Sun Jan 14 14:05:12 CST 2007
>Description:
- Update to 0.4.2
- Reset maintainership to ports at FreeBSD.org

Added file(s):
- files/patch-configure
- files/patch-funionfs.h

Port maintainer (gslin at gslin.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- fusefs-funionfs-0.4.2.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/sysutils/fusefs-funionfs/Makefile /home/staff/gslin/work/ports/fusefs-funionfs/Makefile
--- /usr/ports/sysutils/fusefs-funionfs/Makefile	Tue Aug 15 03:14:49 2006
+++ /home/staff/gslin/work/ports/fusefs-funionfs/Makefile	Mon Feb 26 21:12:01 2007
@@ -6,27 +6,24 @@
 #
 
 PORTNAME=	funionfs
-PORTVERSION=	0.4.1
+PORTVERSION=	0.4.2
 CATEGORIES=	sysutils
 MASTER_SITES=	http://funionfs.apiou.org/file/
 PKGNAMEPREFIX=	fusefs-
 
-MAINTAINER=	gslin at gslin.org
+MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Union filesystem for the FUSE driver
 
-RUN_DEPENDS=	${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
 BUILD_DEPENDS=	${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs
+RUN_DEPENDS=	${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
 
-PLIST_FILES=	bin/funionfs
-
-do-build:
-	(cd ${WRKSRC} && ${CC} ${CFLAGS} -DFUSE_USE_VERSION=25 \
-	 -D_FILE_OFFSET_BITS=64 -I${LOCALBASE}/include/fuse \
-	 -o funionfs main.c \
-	 -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lfuse)
+CONFIGURE_ARGS=	--mandir=${MANPREFIX}/man
+CONFIGURE_ENV=	CFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \
+		LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+GNU_CONFIGURE=	yes
 
-do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/funionfs ${TARGETDIR}/bin
+MAN1=		funionfs.1
+PLIST_FILES=	bin/funionfs
 
 .include <bsd.port.pre.mk>
 
diff -ruN --exclude=CVS /usr/ports/sysutils/fusefs-funionfs/distinfo /home/staff/gslin/work/ports/fusefs-funionfs/distinfo
--- /usr/ports/sysutils/fusefs-funionfs/distinfo	Wed Jul 19 08:57:52 2006
+++ /home/staff/gslin/work/ports/fusefs-funionfs/distinfo	Mon Feb 26 20:53:44 2007
@@ -1,3 +1,3 @@
-MD5 (funionfs-0.4.1.tar.gz) = 373b74fdf280f2dcd646e79f7ac84ca0
-SHA256 (funionfs-0.4.1.tar.gz) = 6192c14b6ab34e8dac331f93997c4ea27f4705276aab0230363a4e83536b967a
-SIZE (funionfs-0.4.1.tar.gz) = 23698
+MD5 (funionfs-0.4.2.tar.gz) = d099f05fb198625a3ed4dfe61554d7ce
+SHA256 (funionfs-0.4.2.tar.gz) = b67f50f990947034f2ed3beb7cac381f77bc05545e86f5b20a30cd665b7074f5
+SIZE (funionfs-0.4.2.tar.gz) = 853921
diff -ruN --exclude=CVS /usr/ports/sysutils/fusefs-funionfs/files/patch-configure /home/staff/gslin/work/ports/fusefs-funionfs/files/patch-configure
--- /usr/ports/sysutils/fusefs-funionfs/files/patch-configure	Thu Jan  1 08:00:00 1970
+++ /home/staff/gslin/work/ports/fusefs-funionfs/files/patch-configure	Mon Feb 26 21:08:53 2007
@@ -0,0 +1,11 @@
+--- configure.orig	Mon Feb 26 21:08:32 2007
++++ configure	Mon Feb 26 21:08:48 2007
+@@ -19750,7 +19750,7 @@
+ 
+ 
+ # version 2.5 of fuse
+-CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=25 -DHAVE_SETXATTR"
++CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=25"
+ 
+ # version 2.3 or 2.4 of fuse used don't forget to modify Makefile.am to add compat/fuse_opt.c
+ #CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=22 -DHAVE_SETXATTR"
diff -ruN --exclude=CVS /usr/ports/sysutils/fusefs-funionfs/files/patch-funionfs.h /home/staff/gslin/work/ports/fusefs-funionfs/files/patch-funionfs.h
--- /usr/ports/sysutils/fusefs-funionfs/files/patch-funionfs.h	Thu Jan  1 08:00:00 1970
+++ /home/staff/gslin/work/ports/fusefs-funionfs/files/patch-funionfs.h	Mon Feb 26 21:06:56 2007
@@ -0,0 +1,11 @@
+--- funionfs.h.orig	Mon Feb 26 21:06:15 2007
++++ funionfs.h	Mon Feb 26 21:06:40 2007
+@@ -2,6 +2,8 @@
+ #ifndef _FUNIONFS_H
+ #define _FUNIONFS_H
+ 
++#include <pthread.h>
++
+ // use the new API
+ 
+ #define VERSION "0.4.2"
--- fusefs-funionfs-0.4.2.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list