89f8b05214
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler.
28 lines
551 B
Makefile
28 lines
551 B
Makefile
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gnu-efi
|
|
PORTVERSION= 3.0.3
|
|
PORTREVISION= 1
|
|
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>
|