Skip to content

Commit

Permalink
misc/seabios: Update to 1.16.0; use binutils binaries
Browse files Browse the repository at this point in the history
Upstream release information:
https://www.seabios.org/Releases#SeaBIOS_1.15.0
https://www.seabios.org/Releases#SeaBIOS_1.16.0

When ports set USE_BINUTILS=yes, the environment is adjusted with, e.g.,
OBJDUMP=${LOCALBASE}/bin/objdump, so that binaries from devel/binutils
are used during the build.  SeaBIOS, however, ignores these environment
variables, so supply them to MAKE_ARGS.  This will fix the build when
/usr/bin/llvm-objdump is linked to /usr/bin/objdump.  See PR 267854.

PR:		267854
Approved by:	royger (maintainer)
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D37667
  • Loading branch information
Jehops committed Dec 12, 2022
1 parent 33b05a1 commit 766fafa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions misc/seabios/Makefile
@@ -1,5 +1,5 @@
PORTNAME= seabios
PORTVERSION= 1.14.0
PORTVERSION= 1.16.0
PORTREVISION= 0
CATEGORIES= misc
MASTER_SITES= https://www.seabios.org/downloads/
Expand All @@ -15,7 +15,8 @@ ONLY_FOR_ARCHS_REASON= specific to x86

USES= gmake python:build

MAKE_ARGS= HOSTCC="${CC}" LD="${LD}" PYTHON="${PYTHON_CMD}"
MAKE_ARGS= AS="${AS}" HOSTCC="${CC}" LD="${LD}" OBJCPY="${OBJCPY}" \
OBJDUMP="${OBJDUMP}" PYTHON="${PYTHON_CMD}"
NO_ARCH= yes
USE_GCC= yes:build
USE_BINUTILS= yes
Expand Down
6 changes: 3 additions & 3 deletions misc/seabios/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1598455909
SHA256 (seabios-1.14.0.tar.gz) = eb70cc62b29aa83e10a653233acebf4bb154d00d0c87dc2a2c6e2da75e5e81fd
SIZE (seabios-1.14.0.tar.gz) = 628985
TIMESTAMP = 1670623319
SHA256 (seabios-1.16.0.tar.gz) = d44d8e97ad56f3fd23ed3076077a770d37a5e7bae22daa59656ff41c3334fb34
SIZE (seabios-1.16.0.tar.gz) = 635419

0 comments on commit 766fafa

Please sign in to comment.