mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b49b74c37a
PR: 14464 Submitted by: maintainer
39 lines
972 B
Makefile
39 lines
972 B
Makefile
# New ports collection makefile for: etherboot
|
|
# Version required: 4.2.9
|
|
# Date created: 16 April 1999
|
|
# Whom: Doug Ambrisko <ambrisko@whistle.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= etherboot-4.2.9
|
|
PKGNAME= etherboot-4.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.slug.org.au/etherboot/ \
|
|
http://www.us.kernel.org/pub/linux/devel/gcc/
|
|
DISTFILES= ${DISTNAME}.tar.gz ${BINUTILS_VER}.tar.gz
|
|
|
|
MAINTAINER= ambrisko@whistle.com
|
|
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|
|
|
NO_PACKAGE= lots of configuration necessary
|
|
USE_GMAKE=1
|
|
WRKSRC= ${WRKDIR}/${PKGNAME}/src-32
|
|
BINUTILS_VER= binutils-2.9.1.0.25 # need newer version of gas for data32
|
|
|
|
pre-configure:
|
|
cd ${WRKDIR}/${BINUTILS_VER} ; \
|
|
./configure -host=i386-unknown-freebsdelf
|
|
|
|
pre-build:
|
|
cd ${WRKDIR}/${BINUTILS_VER} ; \
|
|
make
|
|
|
|
do-install:
|
|
@${ECHO} Refer ${PKGDIR}/DESCR and ${WRKDIR}/${PKGNAME}/doc for how to
|
|
@${ECHO} build and install the rom/floppy image.
|
|
@exit 1
|
|
|
|
.include <bsd.port.mk>
|