5572fb2f44
(http://people.freebsd.org/~kientzle/libarchive/) and FUSE (http://fuse.sourceforge.net). It can be used to mount a (possibly compressed) archive (as in .tar.gz or .tar.bz2) and use it like an ordinary filesystem. WWW: http://www.cybernoia.de/software/archivemount/ PR: ports/124793 Submitted by: Evgeny Zhirnov <jirnov at gmail.com>
35 lines
807 B
Makefile
35 lines
807 B
Makefile
# New ports collection makefile for: archivemount
|
|
# Date created: 2008-06-20
|
|
# Whom: Evgeny Zhirnov <jirnov@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= archivemount
|
|
PORTVERSION= 0.5.3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.cybernoia.de/software/archivemount/
|
|
|
|
MAINTAINER= jirnov@gmail.com
|
|
COMMENT= Mount archives with FUSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs
|
|
RUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
|
|
|
|
PLIST_FILES= bin/archivemount
|
|
|
|
NO_INSTALL_MANPAGES= yes
|
|
USE_GMAKE= yes
|
|
USE_ICONV= yes
|
|
USE_GCC= 4.2+
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/archivemount ${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>
|