mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
and apply them to the latest released version (2.15). This mainly adds support for new AVR devices that appeared on the market recently, and fixes one relocation bug for the EEPROM section that could be noted when a bootloader section is also present.
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# New ports collection makefile for: avr-gcc
|
|
# Date created: 30 Nov 2000
|
|
# Whom: Joerg Wunsch <joerg@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= binutils
|
|
PORTVERSION= 2.15
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEWARE}
|
|
MASTER_SITE_SUBDIR= binutils/releases
|
|
PKGNAMEPREFIX= avr-
|
|
|
|
MAINTAINER= joerg@freebsd.org
|
|
COMMENT= GNU binutils for Atmel AVR 8-bit RISC cross-development
|
|
|
|
WRKSRC= ${WRKDIR}/binutils-${PORTVERSION}
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= --target=avr
|
|
.if (${MACHINE_ARCH} == "amd64")
|
|
MACHINE_ARCH= x86_64
|
|
.endif
|
|
USE_INC_LIBTOOL_VER= 13
|
|
LIBTOOLFILES= configure bfd/configure binutils/configure etc/configure \
|
|
gas/configure gprof/configure intl/configure ld/configure \
|
|
libiberty/configure opcodes/configure
|
|
|
|
MAN1= \
|
|
avr-addr2line.1 \
|
|
avr-ar.1 \
|
|
avr-as.1 \
|
|
avr-c++filt.1 \
|
|
avr-dlltool.1 \
|
|
avr-ld.1 \
|
|
avr-nlmconv.1 \
|
|
avr-nm.1 \
|
|
avr-objcopy.1 \
|
|
avr-objdump.1 \
|
|
avr-ranlib.1 \
|
|
avr-readelf.1 \
|
|
avr-size.1 \
|
|
avr-strings.1 \
|
|
avr-strip.1 \
|
|
avr-windres.1
|
|
INFO= as binutils ld
|
|
|
|
.include <bsd.port.mk>
|