forked from Lainports/freebsd-ports
- convert all fuse ports to use the new macro The macro makes sure sysutils/fusefs-libs gets installed and depending on fuse being in base or not it installs sysutils/fusefs-kmod. Approved by: portmgr (bapt)
37 lines
710 B
Makefile
37 lines
710 B
Makefile
# New ports collection makefile for: fusefs-ext4fuse
|
|
# Date created: 12 Nov 2011
|
|
# Whom: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ext4fuse
|
|
PORTVERSION= 20120803
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= CRITICAL
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= EXT4 implementation for FUSE
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo
|
|
|
|
USE_FUSE= yes
|
|
USE_GMAKE= yes
|
|
USE_PKGCONFIG= build
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
# explicitly empty to fix a cross compiling related issue (PR: 165480)
|
|
MAKE_ENV+= TARGET_ARCH=
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/ext4fuse
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|