blob: 5761841de90f9da4e6f513c9432341e3e31e22f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: options.mk,v 1.2 2014/09/05 12:14:24 gsutre Exp $
#
#
# Description of options (taken from configure --help):
# debug include memory manager debugging
# freetype build and install the `grub-mkfont' utility
#
PKG_OPTIONS_VAR= PKG_OPTIONS.grub2
PKG_SUPPORTED_OPTIONS= debug freetype
PKG_SUGGESTED_OPTIONS= freetype
.include "../../mk/bsd.options.mk"
PLIST_VARS+= freetype
UNIFONT= unifont-5.1.20080820.pcf
SITES.${UNIFONT}.gz= http://unifoundry.com/
post-extract: do-move-unifont
.PHONY: do-move-unifont
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-mm-debug
.else
CONFIGURE_ARGS+= --disable-mm-debug
.endif
.if !empty(PKG_OPTIONS:Mfreetype)
CONFIGURE_ARGS+= --enable-grub-mkfont
PLIST.freetype= yes
DISTFILES+= ${UNIFONT}.gz
BUILD_DEPENDS+= dejavu-ttf>=2.34nb1:../../fonts/dejavu-ttf
do-move-unifont:
${MV} ${WRKDIR}/${UNIFONT} ${WRKSRC}/unifont.pcf
.include "../../graphics/freetype2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-grub-mkfont
do-move-unifont:
.endif
|