1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/devel/avr-gcc/Makefile
Antoine Brodin 517671973b Add explicit USES=iconv
Reported by:	pkg-fallout (via devel/avr-libc)
2018-11-25 08:25:09 +00:00

72 lines
1.9 KiB
Makefile

# $FreeBSD$
PORTNAME= gcc
PORTVERSION= 5.4.0
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= GCC/releases/gcc-${DIST_VERSION}
PKGNAMEPREFIX= avr-
DISTNAME= gcc-${DIST_VERSION}
MAINTAINER= joerg@FreeBSD.org
COMMENT= FSF GCC for Atmel AVR 8-bit RISC cross-development
LICENSE= GPLv3 GPLv3RLE
LICENSE_COMB= multi
BUILD_DEPENDS= avr-as:devel/avr-binutils \
avr-ld:devel/avr-binutils
LIB_DEPENDS= libmpfr.so:math/mpfr \
libgmp.so:math/gmp \
libmpc.so:math/mpc
RUN_DEPENDS= avr-as:devel/avr-binutils \
avr-ld:devel/avr-binutils
# DIST_VERSION relates to downloads, GCC_VERSION and SUFFIX to names
# of executables and directories once installed. A PORTVERSION of
# 4.Y.2.s20130808 results in values of 4.Y-20130808, 4.Y.2, and 4Y
# for these three.
DIST_VERSION= ${PORTVERSION:C/([0-9]+\.[0-9]+).*\.s([0-9]+)/\1-\2/}
GCC_VERSION= ${PORTVERSION:C/(.+)\.s[0-9]{8}/\1/}
SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/}
USES= bison gmake iconv libtool makeinfo perl5 tar:bzip2
USE_PERL5= build
CPPFLAGS+= -I${LOCALBASE}/include
GNU_CONFIGURE= yes
CONFLICTS= avr-gcc-devel*
CONFIGURE_ARGS= --target=avr --disable-libssp --with-gmp=${LOCALBASE} --enable-languages="c c++"
WITHOUT_CPU_CFLAGS=This is a cross-compiler.
INFO= cpp gcc gccint cppinternals gccinstall
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
BROKEN_aarch64= Fails to package: cannot find manpages
BROKEN_mips64= Fails to configure: cannot compute suffix of object files
.include <bsd.port.pre.mk>
.if (${ARCH} == "amd64")
ARCH= x86_64
.endif
post-patch:
@${FIND} ${WRKSRC} -type f \( -name '*.[ch]' -o -name '*.cc' \) | \
${XARGS} ${EGREP} -l '"(HOST_WIDE|PLUGIN_COND|PRId64)' | \
${XARGS} ${REINPLACE_CMD} -E -e 's/"(HOST_WIDE|PLUGIN_COND|PRId64)/" \1/g'
post-configure:
${MKDIR} ${WRKSRC}/gcc/include
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/gcc/avr/${PORTVERSION}/liblto_plugin.so.0
.include <bsd.port.post.mk>