53a39676b9
NetBSD's FUSE implementation is part of the base system, and filesytems/fuse is the user-space implementation for systems with the /dev/fuse interface. It might be possible to use filesytems/fuse and perfused, but that's much harder than librefuse. Now orifs runs on NetBSD 6.
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.2 2014/02/18 03:00:52 gdt Exp $
|
|
|
|
DISTNAME= ori-0.8.1
|
|
PKGREVISION= 1
|
|
CATEGORIES= filesystems
|
|
MASTER_SITES= https://bitbucket.org/orifs/ori/downloads/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://ori.scs.stanford.edu/
|
|
COMMENT= Secure distributed file system
|
|
LICENSE= isc
|
|
|
|
BUILD_DEPENDS+= scons>=2.0:../../devel/scons
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= pkg-config
|
|
|
|
SUBST_CLASSES+= man
|
|
SUBST_SED.man+= -e "s,share/man,${PKGMANDIR},"
|
|
SUBST_FILES.man+= SConstruct
|
|
SUBST_STAGE.man= pre-build
|
|
SUBST_MESSAGE.man= Fixing man page installation path.
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/scons
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ${PREFIX}/bin/scons install PREFIX=${DESTDIR}${PREFIX}
|
|
|
|
.include "../../archivers/xz/buildlink3.mk"
|
|
.include "../../devel/boost-headers/buildlink3.mk"
|
|
.include "../../devel/libevent/buildlink3.mk"
|
|
.include "../../mk/fuse.buildlink3.mk"
|
|
.include "../../net/mDNSResponder/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|