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
40 lines
965 B
Makefile
40 lines
965 B
Makefile
# Created by: Xin LI <delphij@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iet
|
|
PORTVERSION= 1.4.20.2
|
|
PORTREVISION= 10
|
|
CATEGORIES= net kld
|
|
MASTER_SITES= SF/iscsitarget/iscsitarget/${PORTVERSION}/
|
|
DISTNAME= iscsitarget-${PORTVERSION}
|
|
|
|
PATCH_SITES= LOCAL/delphij
|
|
PATCHFILES= ${PORTNAME}-${PORTVERSION}.diff.bz2
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= delphij@FreeBSD.org
|
|
COMMENT= The iSCSI Enterprise Target
|
|
|
|
LICENSE= GPLv2
|
|
|
|
SSP_UNSAFE= kernel module does not support ssp
|
|
BUILD_WRKSRC= ${WRKSRC}/freebsd
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
USE_RC_SUBR= ietd
|
|
USES= kmod uidfix
|
|
|
|
KMODDIR= ${PREFIX}/modules
|
|
PLIST_SUB+= KMODDIR=${KMODDIR}
|
|
MAKE_ENV+= KMODDIR=${KMODDIR} DATADIR=${DATADIR} SYSDIR="${SRC_BASE}/sys"
|
|
|
|
IET_CONF_FILES= ietd.conf initiators.allow initiators.deny targets.allow
|
|
|
|
.if !exists(${SRC_BASE}/sys/Makefile)
|
|
IGNORE= requires kernel sources to build
|
|
.endif
|
|
|
|
pre-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR} ${STAGEDIR}${KMODDIR} ${STAGEDIR}${ETCDIR}
|
|
|
|
.include <bsd.port.mk>
|