mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
40 lines
846 B
Makefile
40 lines
846 B
Makefile
# Created by: Nosov Artem <chip-set@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zisofs-tools
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_KERNEL_ORG}
|
|
MASTER_SITE_SUBDIR= linux/utils/fs/zisofs
|
|
|
|
MAINTAINER= chip-set@mail.ru
|
|
COMMENT= User utilities for zisofs
|
|
|
|
PORTDOCS= CHANGES COPYING INSTALL MRULES README
|
|
|
|
USE_AUTOTOOLS= autoconf
|
|
USES= gmake tar:bzip2 desthack
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAKE_ARGS+= CFLAGS="${CFLAGS} -I${LOCALBASE}/include"
|
|
|
|
PLIST_FILES= bin/mkzftree \
|
|
man/man1/mkzftree.1.gz
|
|
|
|
OPTIONS_DEFINE= LFS DOCS
|
|
OPTIONS_DEFAULT= LFS
|
|
LFS_DESC= Enable Large Files Support
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ! ${PORT_OPTIONS:MLFS}
|
|
CONFIGURE_ARGS+= --disable-largefile
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|