diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2008-07-05 11:39:42 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2008-07-05 11:39:42 +0000 |
commit | c7906ef2a532e71070d102e53d9cb8f0e0a7d9d3 (patch) | |
tree | e698260e0c57525bea8a3f719ce987d812d53423 /sysutils/fusefs-gunzip | |
parent | 77837c356700e25ba40b3ce78ac3ab93183e3d1a (diff) | |
download | ports-c7906ef2a532e71070d102e53d9cb8f0e0a7d9d3.tar.gz ports-c7906ef2a532e71070d102e53d9cb8f0e0a7d9d3.zip |
Notes
Diffstat (limited to 'sysutils/fusefs-gunzip')
-rw-r--r-- | sysutils/fusefs-gunzip/Makefile | 41 | ||||
-rw-r--r-- | sysutils/fusefs-gunzip/distinfo | 3 | ||||
-rw-r--r-- | sysutils/fusefs-gunzip/files/patch-fuse.gunzip.c | 12 | ||||
-rw-r--r-- | sysutils/fusefs-gunzip/pkg-descr | 7 |
4 files changed, 63 insertions, 0 deletions
diff --git a/sysutils/fusefs-gunzip/Makefile b/sysutils/fusefs-gunzip/Makefile new file mode 100644 index 000000000000..55c83fba4723 --- /dev/null +++ b/sysutils/fusefs-gunzip/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: fusefs-gunzip +# Date created: 2008-06-16 +# Whom: Evgeny Zhirnov <jirnov@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= fuse.gunzip +PORTVERSION= 20070320 +CATEGORIES= sysutils +MASTER_SITES= http://fuse.gunzip.silverice.org/files/ + +MAINTAINER= jirnov@gmail.com +COMMENT= Fuse.gunzip provides transparent decompression of gzip compressed files + +BUILD_DEPENDS= ${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs +RUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod + +WRKSRC= ${WRKDIR}/fuse.gunzip + +PLIST_FILES= bin/fuse.gunzip + +NO_INSTALL_MANPAGES= yes + +do-build: + (cd ${WRKSRC} && \ + ${CC} ${CFLAGS} -I${LOCALBASE}/include -I${LOCALBASE}/include/fuse \ + -D_FILE_OFFSET_BITS=64 \ + -o fuse.gunzip fuse.gunzip.c -L${LOCALBASE}/lib ${PTHREAD_LIBS} \ + -lulockmgr -lz -lfuse -liconv -lm) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/fuse.gunzip ${PREFIX}/bin + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600000 # Inherited from fusefs-kmod +IGNORE= requires FreeBSD 6.x or above +.endif + +.include <bsd.port.post.mk> diff --git a/sysutils/fusefs-gunzip/distinfo b/sysutils/fusefs-gunzip/distinfo new file mode 100644 index 000000000000..d4d562f9e05e --- /dev/null +++ b/sysutils/fusefs-gunzip/distinfo @@ -0,0 +1,3 @@ +MD5 (fuse.gunzip-20070320.tar.gz) = ac08b1716285701042cb72936b3f7ec0 +SHA256 (fuse.gunzip-20070320.tar.gz) = f7111805898ddd059da9b59002447ba44e94d77707d3d398579ce754d2cd23c2 +SIZE (fuse.gunzip-20070320.tar.gz) = 16002 diff --git a/sysutils/fusefs-gunzip/files/patch-fuse.gunzip.c b/sysutils/fusefs-gunzip/files/patch-fuse.gunzip.c new file mode 100644 index 000000000000..3d5be3af8b56 --- /dev/null +++ b/sysutils/fusefs-gunzip/files/patch-fuse.gunzip.c @@ -0,0 +1,12 @@ +--- fuse.gunzip.c.orig 2007-03-21 01:19:26.000000000 +0300 ++++ fuse.gunzip.c 2008-06-16 01:46:43.000000000 +0400 +@@ -38,9 +38,6 @@ + #include <config.h> + */ + +-#define HAVE_SETXATTR 1 +-#define HAVE_FDATASYNC 1 +- + #define _GNU_SOURCE + + #include <fuse.h> diff --git a/sysutils/fusefs-gunzip/pkg-descr b/sysutils/fusefs-gunzip/pkg-descr new file mode 100644 index 000000000000..95196b74c544 --- /dev/null +++ b/sysutils/fusefs-gunzip/pkg-descr @@ -0,0 +1,7 @@ +fuse.gunzip provides transparent decompression of gzip compressed files. +Files read as if they were not compressed. +Typical usage is to provide transparent decompression for /usr +However, it can be enabled for /opt and /home also. +System administrators select which files to compress. + +WWW: http://fuse.gunzip.silverice.org/ |