1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/sysutils/zol/Makefile
Kris Moore 6873795c69 New Ports: sysutils/zol and sysutils/zol-kmod
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
2019-03-04 15:59:12 +00:00

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>