blob: acaf1ddf03dfa5635931f82c4a5f6ac014cf394b (
plain) (
blame)
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
42
43
44
45
46
47
|
# New ports collection makefile for: grub
# Whom: rjoseph@mammalia.org
# Date created: 24 July 2000
#
# $FreeBSD$
#
PORTNAME= grub
PORTVERSION= 0.97
PORTREVISION= 4
CATEGORIES= sysutils
MASTER_SITES= ftp://alpha.gnu.org/gnu/grub/
MAINTAINER= sem@FreeBSD.org
COMMENT= GRand Unified Bootloader
USE_AUTOTOOLS= automake autoconf
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-freebsd-freebsd${OSREL}
CONFIGURE_ARGS+= --libdir=${PREFIX}/share
ONLY_FOR_ARCHS= i386
GRUB_DIR= ${DATADIR:C|^${PREFIX}/||}/i386-freebsd
MAN1= mbchk.1
MAN8= grub.8 grub-install.8 grub-md5-crypt.8 grub-terminfo.8
INFO= grub multiboot
PLIST_DIRS= ${GRUB_DIR} ${DATADIR:C|^${PREFIX}/||}
PLIST_FILES= bin/mbchk sbin/grub sbin/grub-install sbin/grub-md5-crypt \
sbin/grub-terminfo sbin/grub-set-default \
${GRUB_DIR}/stage1 ${GRUB_DIR}/stage2
.for f in e2fs fat ffs iso9660 jfs minix reiserfs ufs2 vstafs xfs
PLIST_FILES+= ${GRUB_DIR}/${f}_stage1_5
.endfor
PLIST_FILES+= ${GRUB_DIR}/stage2_eltorito
PORTSCOUT= limit:^0
pre-configure:
@cd ${WRKSRC}; ${ACLOCAL}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|