1f2da4d299
Commit r293886 removed rtrequest() from sys/net/route.c in 11-CURRENT. This update patches isboot.c to call rtrequest_fib() instead. I have already sent the patch to the isboot maintainer, so hopefully this is only needed until the next point release. This allows the port to build on 11-CURRENT as well as 10.x. PR: 209024 Submitted by: John Nielsen <john@jnielsen.net> (maintainer)
29 lines
645 B
Makefile
29 lines
645 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= isboot-kmod
|
|
PORTVERSION= 0.2.13
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.peach.ne.jp/archives/isboot/
|
|
DISTNAME= isboot-${PORTVERSION}
|
|
|
|
MAINTAINER= john@jnielsen.net
|
|
COMMENT= Kernel module enabling iSCSI boot
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= kmod uidfix
|
|
SUB_FILES= pkg-message
|
|
WRKSRC_SUBDIR= src
|
|
PLIST_FILES= ${KMODDIR}/isboot.ko
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS VIMAGE
|
|
VIMAGE_DESC= Build for a kernel with 'options VIMAGE'
|
|
VIMAGE_CFLAGS= -DVIMAGE
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKDIR}/${DISTNAME} && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|