summaryrefslogtreecommitdiff
path: root/filesystems
diff options
context:
space:
mode:
Diffstat (limited to 'filesystems')
-rw-r--r--filesystems/fuse-archivemount/Makefile6
-rw-r--r--filesystems/fuse-cddfs/Makefile8
-rw-r--r--filesystems/fuse-gmailfs/Makefile17
-rw-r--r--filesystems/fuse-httpfs/Makefile6
-rw-r--r--filesystems/fuse-loggedfs/Makefile11
-rw-r--r--filesystems/fuse-lzofs/Makefile6
-rw-r--r--filesystems/fuse-unionfs/Makefile9
7 files changed, 43 insertions, 20 deletions
diff --git a/filesystems/fuse-archivemount/Makefile b/filesystems/fuse-archivemount/Makefile
index bb9a1fd678e..9b7d5adf630 100644
--- a/filesystems/fuse-archivemount/Makefile
+++ b/filesystems/fuse-archivemount/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2007/07/29 17:37:51 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= archivemount-0.5.3
@@ -11,6 +11,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.cybernoia.de/software/archivemount/
COMMENT= FUSE gateway to libarchive
+PKG_DESTDIR_SUPPORT= user-destdir
+
USE_TOOLS+= gmake
NO_CONFIGURE= yes
@@ -23,7 +25,7 @@ CPPFLAGS+= -DHAVE_STATVFS
INSTALLATION_DIRS= bin
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/archivemount ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/archivemount ${DESTDIR}${PREFIX}/bin
.include "../../archivers/libarchive/buildlink3.mk"
.include "../../mk/fuse.buildlink3.mk"
diff --git a/filesystems/fuse-cddfs/Makefile b/filesystems/fuse-cddfs/Makefile
index 784c3538595..bcafdb7d9a0 100644
--- a/filesystems/fuse-cddfs/Makefile
+++ b/filesystems/fuse-cddfs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2007/02/20 22:57:44 xtraeme Exp $
+# $NetBSD: Makefile,v 1.2 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= cddfs-0.2
@@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://castet.matthieu.free.fr/cddfs/
COMMENT= FUSE filesystem that uses libparanoia for audio CDs
+PKG_DESTDIR_SUPPORT= user-destdir
+
NO_CONFIGURE= yes
BUILD_TARGET= cddfs
@@ -18,8 +20,8 @@ BUILDLINK_FNAME_TRANSFORM.cdparanoia+= -e "s|/cdparanoia/|/|g"
INSTALLATION_DIRS= bin share/doc/fuse-cddfs
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/cddfs ${PREFIX}/bin
- ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/fuse-cddfs
+ ${INSTALL_PROGRAM} ${WRKSRC}/cddfs ${DESTDIR}${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/fuse-cddfs
.include "../../audio/cdparanoia/buildlink3.mk"
.include "../../mk/fuse.buildlink3.mk"
diff --git a/filesystems/fuse-gmailfs/Makefile b/filesystems/fuse-gmailfs/Makefile
index 582b9a03e28..ee41c19666f 100644
--- a/filesystems/fuse-gmailfs/Makefile
+++ b/filesystems/fuse-gmailfs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2007/05/04 22:55:10 agc Exp $
+# $NetBSD: Makefile,v 1.2 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= gmailfs-0.7.2
@@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html
COMMENT= FUSE filesystem which uses Google mail for free space
+PKG_DESTDIR_SUPPORT= user-destdir
+
NO_BUILD= yes
PYTHON_VERSIONS_ACCEPTED= 24
PYTHON_PATCH_SCRIPTS= gmailfs.py mount.gmailfs
@@ -27,11 +29,16 @@ SUBST_MESSAGE.config= Fixing paths.
PLIST_SUBST+= PYSITELIB=${PYSITELIB:Q}
+INSTALLATION_DIRS= sbin ${PYSITELIB}
+
do-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/gmailfs.py ${PREFIX}/${PYSITELIB}/
- ${INSTALL_SCRIPT} ${WRKSRC}/mount.gmailfs ${PREFIX}/sbin/mount_gmailfs
- ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gmailfs
- ${INSTALL_DATA} ${WRKSRC}/gmailfs.conf ${PREFIX}/share/examples/gmailfs/
+ ${INSTALL_SCRIPT} ${WRKSRC}/gmailfs.py \
+ ${DESTDIR}${PREFIX}/${PYSITELIB}/
+ ${INSTALL_SCRIPT} ${WRKSRC}/mount.gmailfs \
+ ${DESTDIR}${PREFIX}/sbin/mount_gmailfs
+ ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/gmailfs
+ ${INSTALL_DATA} ${WRKSRC}/gmailfs.conf \
+ ${DESTDIR}${PREFIX}/share/examples/gmailfs/
.include "../../filesystems/py-fuse-bindings/buildlink3.mk"
diff --git a/filesystems/fuse-httpfs/Makefile b/filesystems/fuse-httpfs/Makefile
index 707623afa93..5cce644224b 100644
--- a/filesystems/fuse-httpfs/Makefile
+++ b/filesystems/fuse-httpfs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2007/03/15 22:55:21 agc Exp $
+# $NetBSD: Makefile,v 1.3 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= httpfs_with_static_binaries_${DIST_VER}
@@ -12,6 +12,8 @@ COMMENT= FUSE HTTP filesystem
DIST_VER= 2.06.08.26
+PKG_DESTDIR_SUPPORT= user-destdir
+
NO_CONFIGURE= yes
WRKSRC= ${WRKDIR}
@@ -27,7 +29,7 @@ do-build:
${WRKSRC}/httpfs.c -o ${WRKSRC}/httpfs
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/httpfs ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/httpfs ${DESTDIR}${PREFIX}/bin
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/filesystems/fuse-loggedfs/Makefile b/filesystems/fuse-loggedfs/Makefile
index ffba171727a..a215f513add 100644
--- a/filesystems/fuse-loggedfs/Makefile
+++ b/filesystems/fuse-loggedfs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2007/06/11 22:02:37 xtraeme Exp $
+# $NetBSD: Makefile,v 1.3 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= loggedfs-0.4
@@ -11,6 +11,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= ${MASTER_SITE_SOURCEFORGE:=loggedfs/}
COMMENT= FUSE file system which logs all operations
+PKG_DESTDIR_SUPPORT= user-destdir
+
.if exists(/usr/include/sys/statvfs.h)
CPPFLAGS+= -DHAVE_SYS_STATVFS_H
.endif
@@ -19,12 +21,13 @@ CPPFLAGS+= -DHAVE_SYS_STATVFS_H
CPPFLAGS+= -DHAVE_SETXATTR
.endif
-USE_LANGUAGES+= c++
+USE_LANGUAGES+= c++
+INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/loggedfs ${PREFIX}/bin/loggedfs
+ ${INSTALL_PROGRAM} ${WRKSRC}/loggedfs ${DESTDIR}${PREFIX}/bin/loggedfs
${INSTALL_MAN} ${WRKSRC}/loggedfs.1 \
- ${PREFIX}/${PKGMANDIR}/man1/loggedfs.1
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/loggedfs.1
.include "../../devel/librlog/buildlink3.mk"
.include "../../devel/pcre/buildlink3.mk"
diff --git a/filesystems/fuse-lzofs/Makefile b/filesystems/fuse-lzofs/Makefile
index d9e7b9ddf7b..2acf0a76b1d 100644
--- a/filesystems/fuse-lzofs/Makefile
+++ b/filesystems/fuse-lzofs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2007/03/15 22:55:21 agc Exp $
+# $NetBSD: Makefile,v 1.3 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= LZOlayer_fs-20060306
@@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://north.one.pl/~kazik/pub/LZOlayer/
COMMENT= Filesystem which allows you to use transparently compressed files
+PKG_DESTDIR_SUPPORT= user-destdir
+
USE_TOOLS+= gmake
NO_CONFIGURE= yes
BUILD_TARGET= default
@@ -17,7 +19,7 @@ BUILD_TARGET= default
INSTALLATION_DIRS= bin
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/lzo_fs ${PREFIX}/bin/lzo_fs
+ ${INSTALL_PROGRAM} ${WRKSRC}/lzo_fs ${DESTDIR}${PREFIX}/bin/lzo_fs
.include "../../archivers/lzo/buildlink3.mk"
.include "../../mk/fuse.buildlink3.mk"
diff --git a/filesystems/fuse-unionfs/Makefile b/filesystems/fuse-unionfs/Makefile
index b1619a1e66b..84f2ee425d8 100644
--- a/filesystems/fuse-unionfs/Makefile
+++ b/filesystems/fuse-unionfs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2007/03/10 12:51:03 agc Exp $
+# $NetBSD: Makefile,v 1.2 2008/03/03 19:31:31 jlam Exp $
#
DISTNAME= unionfs-fuse-0.17
@@ -11,10 +11,15 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://podgorny.cz/unionfs-fuse/
COMMENT= FUSE-based union filesystem
+PKG_DESTDIR_SUPPORT= user-destdir
+
BUILD_TARGET= unionfs
+INSTALLATION_DIRS= bin
+
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/unionfs ${PREFIX}/bin/fuse-unionfs
+ ${INSTALL_PROGRAM} ${WRKSRC}/unionfs \
+ ${DESTDIR}${PREFIX}/bin/fuse-unionfs
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"