mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
6873795c69
Adds the userland and kernel module to run ZFS on Linux ported to FreeBSD. Requires FreeBSD with AES-CCM support, now available in HEAD after 1300013. Reviewed by: miwi@FreeBSD.org Sponsored by: iXsystems
42 lines
729 B
Makefile
42 lines
729 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= zol
|
|
PORTVERSION= 2019030100
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= kmoore@FreeBSD.org
|
|
COMMENT= ZFS
|
|
|
|
LICENSE= CDDL
|
|
|
|
RUN_DEPENDS= zol-kmod>=0:sysutils/zol-kmod
|
|
|
|
USES= autoreconf:build libtool gmake gettext-runtime:run
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --with-config="user"
|
|
|
|
OPTIONS_DEFINE= DEBUG
|
|
OPTIONS_SUB= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zfsonfreebsd
|
|
GH_PROJECT= ZoF
|
|
GH_TAGNAME= e10a5fb
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 1300013
|
|
IGNORE= needs FreeBSD 13 with AES-CCM support
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
|
CONFIGURE_ARGS+= --enable-debug --enable-debuginfo
|
|
.endif
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ./autogen.sh
|
|
|
|
.include <bsd.port.post.mk>
|