1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Upgrade to version 1.4.5.

This commit is contained in:
Joerg Wunsch 2006-10-09 20:30:41 +00:00
parent fd8abdfd3b
commit 3457ff54d4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=175137
5 changed files with 26 additions and 35 deletions

View File

@ -6,9 +6,8 @@
#
PORTNAME= avr-libc
PORTVERSION= 1.4.4
PORTVERSION= 1.4.5
PORTEPOCH= 1
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -18,10 +17,10 @@ COMMENT= A C and math library for the Atmel AVR controller family
BUILD_DEPENDS= avr-as:${PORTSDIR}/devel/avr-binutils \
avr-ld:${PORTSDIR}/devel/avr-binutils \
avr-gcc:${PORTSDIR}/devel/avr-gcc-3
avr-gcc:${PORTSDIR}/devel/avr-gcc
RUN_DEPENDS= avr-as:${PORTSDIR}/devel/avr-binutils \
avr-ld:${PORTSDIR}/devel/avr-binutils \
avr-gcc:${PORTSDIR}/devel/avr-gcc-3
avr-gcc:${PORTSDIR}/devel/avr-gcc
.if !defined(NOPORTDOCS)
BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen \
latex:${PORTSDIR}/print/teTeX \

View File

@ -1,3 +1,3 @@
MD5 (avr-libc-1.4.4.tar.bz2) = 04f774841b9dc9886de8120f1dfb16e3
SHA256 (avr-libc-1.4.4.tar.bz2) = 9b44bbc533c49bd913b68550adb9348e02bef14a4f2c1e6d69884cefdaacbf57
SIZE (avr-libc-1.4.4.tar.bz2) = 853501
MD5 (avr-libc-1.4.5.tar.bz2) = 4ff3b350e1cefc995dae0b6266c16f46
SHA256 (avr-libc-1.4.5.tar.bz2) = 14a0ecccdcc6c2689bbc2bc489ba9ceaa7ab3a49a8b4e96e00de6ba3f7d81115
SIZE (avr-libc-1.4.5.tar.bz2) = 863599

View File

@ -1,28 +0,0 @@
Index: doc/examples/demo/Makefile
===================================================================
RCS file: /home/cvs/avr-libc/avr-libc/doc/examples/demo/Makefile,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -u -r1.10 -r1.11
--- doc/examples/demo/Makefile 19 Apr 2006 20:09:20 -0000 1.10
+++ doc/examples/demo/Makefile 28 Aug 2006 05:23:27 -0000 1.11
@@ -108,13 +108,16 @@
esrec: $(PRG)_eeprom.srec
%_eeprom.hex: %.elf
- $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O ihex $< $@
+ $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O ihex $< $@ \
+ || { echo empty $@ not generated; exit 0; }
%_eeprom.srec: %.elf
- $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O srec $< $@
+ $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O srec $< $@ \
+ || { echo empty $@ not generated; exit 0; }
%_eeprom.bin: %.elf
- $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O binary $< $@
+ $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O binary $< $@ \
+ || { echo empty $@ not generated; exit 0; }
# Every thing below here is used by avr-libc's build system and can be ignored
# by the casual user.

View File

@ -36,8 +36,12 @@ avr/include/avr/iom162.h
avr/include/avr/iom163.h
avr/include/avr/iom164.h
avr/include/avr/iom165.h
avr/include/avr/iom165p.h
avr/include/avr/iom168.h
avr/include/avr/iom169.h
avr/include/avr/iom169p.h
avr/include/avr/iom2560.h
avr/include/avr/iom2561.h
avr/include/avr/iom32.h
avr/include/avr/iom323.h
avr/include/avr/iom324.h
@ -89,6 +93,7 @@ avr/include/avr/iousbxx6_7.h
avr/include/avr/parity.h
avr/include/avr/pgmspace.h
avr/include/avr/portpins.h
avr/include/avr/power.h
avr/include/avr/sfr_defs.h
avr/include/avr/signal.h
avr/include/avr/sleep.h
@ -146,8 +151,10 @@ avr/lib/avr5/crtm162.o
avr/lib/avr5/crtm163.o
avr/lib/avr5/crtm164p.o
avr/lib/avr5/crtm165.o
avr/lib/avr5/crtm165p.o
avr/lib/avr5/crtm168.o
avr/lib/avr5/crtm169.o
avr/lib/avr5/crtm169p.o
avr/lib/avr5/crtm32.o
avr/lib/avr5/crtm323.o
avr/lib/avr5/crtm324p.o
@ -174,6 +181,14 @@ avr/lib/avr5/libprintf_flt.a
avr/lib/avr5/libprintf_min.a
avr/lib/avr5/libscanf_flt.a
avr/lib/avr5/libscanf_min.a
avr/lib/avr6/crtm2560.o
avr/lib/avr6/crtm2561.o
avr/lib/avr6/libc.a
avr/lib/avr6/libm.a
avr/lib/avr6/libprintf_flt.a
avr/lib/avr6/libprintf_min.a
avr/lib/avr6/libscanf_flt.a
avr/lib/avr6/libscanf_min.a
avr/lib/crt86401.o
avr/lib/crtc8534.o
avr/lib/crts1200.o

View File

@ -1,5 +1,9 @@
share/doc/avr-libc/avr-libc-user-manual.pdf
share/doc/avr-libc/avr-libc-user-manual.ps
share/doc/avr-libc/examples/asmdemo/Makefile
share/doc/avr-libc/examples/asmdemo/asmdemo.c
share/doc/avr-libc/examples/asmdemo/isrs.S
share/doc/avr-libc/examples/asmdemo/project.h
share/doc/avr-libc/examples/demo/Makefile
share/doc/avr-libc/examples/demo/demo.c
share/doc/avr-libc/examples/demo/iocompat.h
@ -20,6 +24,7 @@ share/doc/avr-libc/examples/twitest/twitest.c
@dirrm share/doc/avr-libc/examples/stdiodemo
@dirrm share/doc/avr-libc/examples/largedemo
@dirrm share/doc/avr-libc/examples/demo
@dirrm share/doc/avr-libc/examples/asmdemo
@dirrm share/doc/avr-libc/examples
@dirrm share/doc/avr-libc/man/man3
@dirrm share/doc/avr-libc/man