mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
29 lines
551 B
Makefile
29 lines
551 B
Makefile
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gnu-efi
|
|
PORTVERSION= 3.0.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/gnu-efi
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= SDK for EFI applications
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/ar:devel/binutils
|
|
|
|
USES= gmake tar:bz2
|
|
USE_GCC= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
CFLAGS+= "-fPIC"
|
|
CPPFLAGS+= "-fPIC"
|
|
MAKE_ARGS+= CC=${CC} HOSTCC=${CC} AR=${AR}
|
|
ONLY_FOR_ARCHS= amd64
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/crt0-efi-x86_64.o
|
|
|
|
.include <bsd.port.mk>
|