1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/sysutils/syslinux/Makefile
Alexey Dokuchaev f5d854dfc3 sysutils/syslinux: remove artificial architecture limitation
Added with a dubious reason in r423370 (89d3f87471).

This program can be used in stand-alone environments to populate bootable
media, e.g. as dependency of `sysutils/unetbootin' port, and GNU/Linux is
certainly available on far more architectures than could be listed here.
2021-10-24 05:50:15 +00:00

44 lines
1.1 KiB
Makefile

# Created by: luigi@FreeBSD.org
PORTNAME= syslinux
PORTVERSION= 6.03
CATEGORIES= sysutils
MASTER_SITES= KERNEL_ORG/linux/utils/boot/syslinux
MAINTAINER= beastieboy@beastieboy.net
COMMENT= Boot loader for the Linux operating system
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= nasm:devel/nasm
RUN_DEPENDS= mtools:emulators/mtools
USES= perl5 gmake tar:xz
USE_PERL5= build
MAKE_ARGS= CC="${CC}"
ALL_TARGET= bios
PLIST_FILES= bin/syslinux \
man/man1/syslinux.1.gz
PORTDATA= *
pre-patch:
@(cd ${WRKSRC}; \
${FIND} . -type f -exec ${GREP} -le 'elf_i386' \{\} \; | \
${XARGS} ${REINPLACE_CMD} -e 's/elf_i386/elf_i386_fbsd/g;' )
post-patch:
@${REINPLACE_CMD} -e \
's|^UMAKEDEPS|#UMAKEDEPS|' ${WRKSRC}/mk/syslinux.mk
do-install:
${STRIP_CMD} ${WRKSRC}/bios/mtools/syslinux
${INSTALL_PROGRAM} ${WRKSRC}/bios/mtools/syslinux ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man/syslinux.1 ${STAGEDIR}${MANPREFIX}/man/man1
${FIND} -d ${WRKSRC} -type d -empty -delete
${MKDIR} ${STAGEDIR}${DATADIR}
(cd ${WRKSRC} && ${COPYTREE_SHARE} "bios efi32 efi64" ${STAGEDIR}${DATADIR})
.include <bsd.port.mk>