pkgsrc/sysutils/grub/Makefile
wiz 05f347b12d Apply patch:
Fix problem with systems with more than 2 GB memory (notably,
x86_64-based systems).  Thanks Goswin Brederlow.

From Debian via Andrew Daugherity in PR 36627.

Bump PKGREVISION.

pkglint cleanup while here.
2010-02-21 16:44:52 +00:00

72 lines
1.8 KiB
Makefile

# $NetBSD: Makefile,v 1.54 2010/02/21 16:44:52 wiz Exp $
DISTNAME= grub-0.97
PKGREVISION= 9
CATEGORIES= sysutils
MASTER_SITES= ftp://alpha.gnu.org/gnu/grub/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.gnu.org/software/grub/
COMMENT= GRand Unified Bootloader -- Boots *BSD, Linux, groks ffs, FAT, ext2
LICENSE= gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
ONLY_FOR_PLATFORM= *-*-i386 NetBSD-[5-9].*-x86_64
GNU_CONFIGURE= YES
USE_TOOLS+= gmake
INFO_FILES= YES
INSTALLATION_DIRS= share/doc/grub
BUILDLINK_TRANSFORM+= opt:-fno-builtin:-ffreestanding
.include "../../mk/bsd.prefs.mk"
BUILD_DEFS+= GRUB_NETWORK_CARDS
BUILD_DEFS+= GRUB_PRESET_COMMAND
BUILD_DEFS+= GRUB_SCAN_ARGS
.include "../../mk/curses.buildlink3.mk"
PLIST_VARS+= netboot
.if defined(GRUB_NETWORK_CARDS)
CONFIGURE_ARGS+= --enable-diskless
PLIST.netboot= yes
.for nic in ${GRUB_NETWORK_CARDS}
CONFIGURE_ARGS+= --enable-${nic}
.endfor
post-install: grub-netboot-install
.PHONY: grub-netboot-install
grub-netboot-install:
${INSTALL_DATA} ${WRKSRC}/netboot/README.netboot \
${PREFIX}/share/doc/grub
.endif
.if defined(GRUB_PRESET_COMMAND) && !empty(GRUB_PRESET_COMMAND)
CONFIGURE_ARGS+= --enable-preset-menu=${WRKSRC}/presetmenu
post-extract: grub-presetmenu
.PHONY: grub-presetmenu
grub-presetmenu:
${ECHO} ${GRUB_PRESET_COMMAND} > ${WRKSRC}/presetmenu
.endif
.if defined(GRUB_SCAN_ARGS)
CONFIGURE_ARGS+= ${GRUB_SCAN_ARGS}
.endif
SUBST_CLASSES+= grubterm
SUBST_STAGE.grubterm= post-patch
SUBST_MESSAGE.grubterm= Changing references to <term.h> to <grubterm.h>
SUBST_FILES.grubterm= grub/*.c stage2/Makefile.in stage2/*.c
SUBST_SED.grubterm= -e "s,<term.h>,<grubterm.h>,g"
SUBST_SED.grubterm+= -e "s, term.h , grubterm.h ,g"
post-extract:
${MV} ${WRKSRC}/stage2/term.h ${WRKSRC}/stage2/grubterm.h
.include "../../mk/bsd.pkg.mk"