From owner-svn-soc-all@FreeBSD.ORG Fri May 29 20:52:56 2015 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 933CD44C for ; Fri, 29 May 2015 20:52:56 +0000 (UTC) (envelope-from kczekirda@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81C511E86 for ; Fri, 29 May 2015 20:52:56 +0000 (UTC) (envelope-from kczekirda@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4TKquDF027016 for ; Fri, 29 May 2015 20:52:56 GMT (envelope-from kczekirda@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.9/8.14.9/Submit) id t4TKqtYI027008 for svn-soc-all@FreeBSD.org; Fri, 29 May 2015 20:52:55 GMT (envelope-from kczekirda@FreeBSD.org) Date: Fri, 29 May 2015 20:52:55 GMT Message-Id: <201505292052.t4TKqtYI027008@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to kczekirda@FreeBSD.org using -f From: kczekirda@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r286384 - soc2015/kczekirda/ipxe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 May 2015 20:52:56 -0000 Author: kczekirda Date: Fri May 29 20:52:55 2015 New Revision: 286384 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=286384 Log: build done Added: soc2015/kczekirda/ipxe/pkg-descr Modified: soc2015/kczekirda/ipxe/Makefile Modified: soc2015/kczekirda/ipxe/Makefile ============================================================================== --- soc2015/kczekirda/ipxe/Makefile Fri May 29 19:42:55 2015 (r286383) +++ soc2015/kczekirda/ipxe/Makefile Fri May 29 20:52:55 2015 (r286384) @@ -15,8 +15,10 @@ ONLY_FOR_ARCHS_REASON= not yet ported to anything other than amd64/i386 BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash \ - mkisofs:${PORTSDIR}/sysutils/cdrtools + mkisofs:${PORTSDIR}/sysutils/cdrtools \ + gcc:${PORTSDIR}/lang/gcc49 +MAKE_JOBS_SAFE= yes USES= gmake USE_GCC= yes WRKSRC= ${WRKDIR}/${DISTNAME}/src @@ -27,6 +29,11 @@ MAKE_ARGS+= ARCH=i386 .endif +.if exists(/usr/local/bin/gcc49) +GCC=gcc49 +CC=gcc49 +.endif + BINLIST= bin/undionly.kpxe bin/undionly.kkpxe bin/ipxe.iso bin/ipxe.usb ALL_TARGET?= ${BINLIST} Added: soc2015/kczekirda/ipxe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2015/kczekirda/ipxe/pkg-descr Fri May 29 20:52:55 2015 (r286384) @@ -0,0 +1,5 @@ +iPXE is an open-source PXE implementation and bootloader. + +Create network booting code that allows computers to load their operating system from a network or to extend an existing PXE implementation with support for additional protocols, such iSCSI, HTTP, TFTP, NFS, FTP and ATA over Ethernet. + +WWW: http://www.ipxe.org/