diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-04-28 20:01:07 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-04-28 20:01:07 +0000 |
commit | 27d44119e7e106f32a4b4b25539a57a35cc68823 (patch) | |
tree | 8462df47de7a523e2debd710ebc0516911e33a43 /sysutils/zisofs-tools | |
parent | f3184698839707db08f51b1529956b01b49932cf (diff) |
Notes
Diffstat (limited to 'sysutils/zisofs-tools')
-rw-r--r-- | sysutils/zisofs-tools/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sysutils/zisofs-tools/Makefile b/sysutils/zisofs-tools/Makefile index 25f83990f8a3..a39bb8491cac 100644 --- a/sysutils/zisofs-tools/Makefile +++ b/sysutils/zisofs-tools/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: zisofs-tools -# Date created: 24 Nov 2003 -# Whom: Nosov Artem <chip-set@mail.ru> -# +# Created by: Nosov Artem <chip-set@mail.ru> # $FreeBSD$ -# PORTNAME= zisofs-tools PORTVERSION= 1.0.8 @@ -30,14 +26,18 @@ MAN1= mkzftree.1 PLIST_FILES= bin/mkzftree -OPTIONS= LFS "Enable Large Files Support" on +OPTIONS_DEFINE= LFS DOCS +OPTIONS_DEFAULT= LFS +LFS_DESC= Enable Large Files Support -.if defined(WITHOUT_LFS) +.include <bsd.port.options.mk> + +.if ! ${PORT_OPTIONS:MLFS} CONFIGURE_ARGS+= --disable-largefile .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif |