mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
35 lines
913 B
Makefile
35 lines
913 B
Makefile
# New ports collection makefile for: fusefs-unionfs
|
|
# Date created: 2006-07-16
|
|
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unionfs
|
|
PORTVERSION= 0.24
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://podgorny.cz/unionfs-fuse/releases/
|
|
PKGNAMEPREFIX= fusefs-
|
|
DISTNAME= unionfs-fuse-${PORTVERSION}
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
COMMENT= FUSE based implementation of the well-known unionfs
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs
|
|
|
|
PLIST_FILES= bin/unionfs
|
|
|
|
USE_BZIP2= yes
|
|
|
|
do-build:
|
|
(cd ${WRKSRC}/src && \
|
|
${CC} ${CFLAGS} -I${LOCALBASE}/include/fuse \
|
|
-D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26 -U_POSIX_SYNCHRONIZED_IO \
|
|
-o unionfs *.c -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lfuse -lm)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/unionfs ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|