60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
38 lines
811 B
Makefile
38 lines
811 B
Makefile
# Created by: Nosov Artem <chip-set@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zisofs-tools
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= KERNEL_ORG/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>
|