freebsd-ports/sysutils/grub2/Makefile
Juergen Lock 5a9e3a5b0a Fix build with MKFONT and without it but with (updated) freetype present.
PR:		ports/187984 [1], ports/188526 [2]
Submitted by:	Joseph Mingrone <jrm@ftfl.ca> [1]
Submitted by:	Andrey Zholos <aaz@q-fu.com> [2]
2014-04-18 17:03:05 +00:00

76 lines
1.7 KiB
Makefile

# Created by: sem@FreeBSD.org
# $FreeBSD$
PORTNAME= grub2
PORTVERSION= 2.00
PORTREVISION= 4
CATEGORIES= sysutils
MASTER_SITES= GNU/grub
DISTNAME= grub-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Multiboot boot loader
LICENSE= GPLv3
BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
help2man:${PORTSDIR}/misc/help2man
CONFLICTS= grub-0*
SSP_UNSAFE= yes
USE_XZ= yes
USE_GCC= yes
USE_AUTOTOOLS= automake aclocal autoconf
ACLOCAL_ARGS= -Im4
GNU_CONFIGURE= yes
USES= bison gettext gmake
ONLY_FOR_ARCHS= i386 amd64
INFO= grub grub-dev
MAKE_JOBS_UNSAFE= yes
CONFIGURE_ARGS= --disable-werror --localedir=${PREFIX}/share/locale
CONFIGURE_ENV= CPP="${CC} -E" \
LEX=${LOCALBASE}/bin/flex
OPTIONS_DEFINE= MKFONT FUSE
MKFONT_DESC= Build grub-mkfont (require freetype2)
FUSE_DESC= Build grub-mount (require FUSE)
.include <bsd.port.pre.mk>
.if ${ARCH} != "amd64"
EFIEMU= "@comment "
.endif
PLIST_SUB+= EFIEMU=${EFIEMU}
.if ${PORT_OPTIONS:MMKFONT}
LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2
BUILD_DEPENDS+= ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf:${PORTSDIR}/x11-fonts/dejavu
MAN1+= grub-mkfont.1
CONFIGURE_ARGS+= --enable-grub-mkfont
.else
CONFIGURE_ARGS+= --disable-grub-mkfont
MKFONT= "@comment "
.endif
PLIST_SUB+= MKFONT=${MKFONT}
.if ${PORT_OPTIONS:MFUSE}
LIB_DEPENDS+= fuse:${PORTSDIR}/sysutils/fusefs-libs
CONFIGURE_ARGS+= --enable-grub-mount
.else
CONFIGURE_ARGS+= --disable-grub-mount
FUSE= "@comment "
.endif
PLIST_SUB+= FUSE=${FUSE}
post-patch:
@${LN} -s ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf ${WRKSRC}
@${TOUCH} -t 200001010000 ${WRKSRC}/Makefile.util.def
post-configure:
@${LN} -sfh /usr/include/machine /usr/include/sys /usr/include/x86 ${WRKSRC}/grub-core
.include <bsd.port.post.mk>