diff options
author | Marcelo Araujo <araujo@FreeBSD.org> | 2008-02-06 17:34:38 +0000 |
---|---|---|
committer | Marcelo Araujo <araujo@FreeBSD.org> | 2008-02-06 17:34:38 +0000 |
commit | c05b93713e7cb296bea99be38589a6efa199bbcb (patch) | |
tree | 4ec308a30beecd15c4c4ba56aae5a72b7f3d9ca5 /sysutils/zisofs-tools/Makefile | |
parent | 67b17690d290df0719eb73de58eb535fc319e3d6 (diff) |
- Update to 1.0.8.
PR: ports/119762
Submitted by: Felippe de Meirelles Motta <lippemail@gmail.com>
Approved by: stas (mentor, implicit), maintainer timeout (> 2 weeks)
Notes
Notes:
svn path=/head/; revision=206793
Diffstat (limited to 'sysutils/zisofs-tools/Makefile')
-rw-r--r-- | sysutils/zisofs-tools/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/sysutils/zisofs-tools/Makefile b/sysutils/zisofs-tools/Makefile index 5da648a1d7f5..c0ce879e20df 100644 --- a/sysutils/zisofs-tools/Makefile +++ b/sysutils/zisofs-tools/Makefile @@ -6,15 +6,14 @@ # PORTNAME= zisofs-tools -PORTVERSION= 1.0.7 -PORTREVISION= 1 +PORTVERSION= 1.0.8 CATEGORIES= sysutils MASTER_SITES= http://www.kernel.org/pub/linux/utils/fs/zisofs/ MAINTAINER= chip-set@mail.ru COMMENT= User utilities for zisofs -PORTDOCS= README CHANGES INSTALL +PORTDOCS= CHANGES COPYING INSTALL MRULES README USE_AUTOTOOLS= autoconf:261 USE_BZIP2= yes @@ -28,12 +27,16 @@ MAN1= mkzftree.1 PLIST_FILES= bin/mkzftree +OPTIONS= LFS "Enable Large Files Support" on + +.if defined(WITHOUT_LFS) +CONFIGURE_ARGS+= --disable-largefile +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif .include <bsd.port.mk> |