freebsd-ports/sysutils/avfs/Makefile
Florian Smeets d26530b713 - introduce a USE_FUSE macro
- 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)
2012-12-14 15:47:00 +00:00

58 lines
1.1 KiB
Makefile

# New ports collection makefile for: avfs
# Date created: 2008-06-14
# Whom: Evgeny Zhirnov <jirnov@gmail.com>
#
# $FreeBSD$
#
PORTNAME= avfs
PORTVERSION= 0.9.9
CATEGORIES= sysutils
MASTER_SITES= SF/avf/${PORTNAME}/${PORTVERSION}
MAINTAINER= jirnov@gmail.com
COMMENT= A Virtual File System
BUILD_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash
BROKEN= does not package
NO_INSTALL_MANPAGES= yes
CPPFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -liconv
GNU_CONFIGURE= yes
USE_FUSE= yes
USE_GMAKE= yes
USE_BZIP2= yes
USE_LDCONFIG= yes
OPTIONS= DEBUG "Enable debug" off \
LIBRARY "Enable library" off \
FUSE "Enable fuse" on
.include <bsd.port.pre.mk>
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --enable-debug
.else
CONFIGURE_ARGS+= --disable-debug
.endif
.if defined(WITH_LIBRARY)
CONFIGURE_ARGS+= --enable-library
PLIST_SUB+= LIBRARY=""
.else
CONFIGURE_ARGS+= --disable-library
PLIST_SUB+= LIBRARY="@comment "
.endif
.if defined(WITH_FUSE)
CONFIGURE_ARGS+= --enable-fuse
PLIST_SUB+= FUSE=""
.else
CONFIGURE_ARGS+= --disable-fuse
PLIST_SUB+= FUSE="@comment "
.endif
.include <bsd.port.post.mk>