pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/doc Update devel/sdcc to 2.4.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f3e188458a92
branches:  trunk
changeset: 476337:f3e188458a92
user:      xtraeme <xtraeme%pkgsrc.org@localhost>
date:      Mon Jun 07 00:16:58 2004 +0000

description:
Update devel/sdcc to 2.4.0.

Too many changes to list here, please review the Changelog file.
Mostly they were bugfixes.

The patch to update to this version was sent via private email
by Sergio Jimenez <tripledes at eslack dot org>.

diffstat:

 devel/sdcc/Makefile         |    18 +-
 devel/sdcc/PLIST            |  2598 +++++++++++++++++++++++++++---------------
 devel/sdcc/distinfo         |    34 +-
 devel/sdcc/patches/patch-aa |    13 -
 devel/sdcc/patches/patch-ab |    40 -
 devel/sdcc/patches/patch-ac |    21 -
 devel/sdcc/patches/patch-ad |    13 -
 devel/sdcc/patches/patch-ae |    13 -
 devel/sdcc/patches/patch-af |    13 -
 devel/sdcc/patches/patch-ag |    20 -
 devel/sdcc/patches/patch-ah |    16 -
 devel/sdcc/patches/patch-ai |    21 -
 devel/sdcc/patches/patch-aj |    13 -
 devel/sdcc/patches/patch-ak |    42 -
 devel/sdcc/patches/patch-al |    13 -
 devel/sdcc/patches/patch-am |    13 -
 devel/sdcc/patches/patch-an |    13 -
 devel/sdcc/patches/patch-ao |    25 -
 devel/sdcc/patches/patch-ap |    13 -
 devel/sdcc/patches/patch-aq |    14 -
 devel/sdcc/patches/patch-ar |    11 -
 devel/sdcc/patches/patch-as |    11 -
 devel/sdcc/patches/patch-at |    11 -
 devel/sdcc/patches/patch-au |    11 -
 devel/sdcc/patches/patch-av |    12 -
 devel/sdcc/patches/patch-aw |    23 -
 devel/sdcc/patches/patch-ax |    13 -
 devel/sdcc/patches/patch-ay |    13 -
 devel/sdcc/patches/patch-az |    12 -
 devel/sdcc/patches/patch-ba |    12 -
 devel/sdcc/patches/patch-bb |    12 -
 devel/sdcc/patches/patch-bc |    13 -
 doc/CHANGES                 |     3 +-
 33 files changed, 1699 insertions(+), 1424 deletions(-)

diffs (truncated from 3317 to 300 lines):

diff -r 88683d8b3671 -r f3e188458a92 devel/sdcc/Makefile
--- a/devel/sdcc/Makefile       Mon Jun 07 00:01:02 2004 +0000
+++ b/devel/sdcc/Makefile       Mon Jun 07 00:16:58 2004 +0000
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.22 2004/04/21 03:50:07 snj Exp $
+# $NetBSD: Makefile,v 1.23 2004/06/07 00:16:58 xtraeme Exp $
 # FreeBSD: ports/devel/sdcc/Makefile,v 1.5 2000/04/15 15:13:38 knu Exp
 
-DISTNAME=      sdcc-2.2.1-src
+DISTNAME=      sdcc-2.4.0
 PKGNAME=       ${DISTNAME:S/-src//}
-PKGREVISION=   1
 CATEGORIES=    devel lang
-MASTER_SITES=  http://web.kd0yu.com/sdcc/
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=sdcc/}
 
 MAINTAINER=    tech-pkg%NetBSD.org@localhost
 HOMEPAGE=      http://sdcc.sourceforge.net/
@@ -21,7 +20,7 @@
 
 ALL_TARGET=    dep all
 
-WRKSRC=                        ${WRKDIR}/${DISTNAME:S/-src//}
+WRKSRC=                        ${WRKDIR}/${DISTNAME:S/-2.4.0//}
 USE_BUILDLINK3=                YES
 GNU_CONFIGURE=         YES
 USE_GNU_TOOLS+=                make
@@ -32,6 +31,7 @@
 # by default on some, not on others
 CPPFLAGS+=             -fdollars-in-identifiers
 CONFIGURE_ENV+=                MACHINE_ARCH=${MACHINE_ARCH}
+CONFIGURE_ENV+=                sdcc_cv_CCggdb="no"
 MAKE_ENV+=             _OPSYS_RPATH_NAME=${_OPSYS_RPATH_NAME}
 
 .include "../../mk/bsd.prefs.mk"
@@ -40,21 +40,19 @@
 CPPFLAGS+=             -DYY_NEVER_INTERACTIVE
 
 post-extract:
-       ${RM} -f ${WRKSRC}/as/mcs51/string.h ${WRKSRC}/as/z80/string.h
+       @${RM} -f ${WRKSRC}/as/mcs51/string.h ${WRKSRC}/as/z80/string.h
 
 pre-configure: sys-endian-buildlink
 
 sys-endian-buildlink:
-       ${MKDIR} ${BUILDLINK_DIR}/include
-       ${LN} -fs /usr/include/sys/endian.h ${BUILDLINK_DIR}/include
+       @${MKDIR} ${BUILDLINK_DIR}/include
+       @${LN} -fs /usr/include/sys/endian.h ${BUILDLINK_DIR}/include
 .endif
 
 post-install:
        ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sdcc
        ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sdcc/avr
        ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sdcc/z80
-       ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/sdcc/
-       ${INSTALL_DATA} ${WRKSRC}/doc/*.sgml ${PREFIX}/share/doc/sdcc/
        ${INSTALL_DATA} ${WRKSRC}/doc/*.lyx ${PREFIX}/share/doc/sdcc/
        ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/sdcc/
        ${INSTALL_DATA} ${WRKSRC}/doc/avr/avr_design.txt ${PREFIX}/share/doc/sdcc/avr
diff -r 88683d8b3671 -r f3e188458a92 devel/sdcc/PLIST
--- a/devel/sdcc/PLIST  Mon Jun 07 00:01:02 2004 +0000
+++ b/devel/sdcc/PLIST  Mon Jun 07 00:16:58 2004 +0000
@@ -1,927 +1,1701 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:26:41 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2004/06/07 00:16:58 xtraeme Exp $
+bin/as-gbz80
+bin/as-hc08
+bin/as-z80
 bin/aslink
 bin/asx8051
+bin/link-gbz80
+bin/link-hc08
+bin/link-z80
+bin/makebin
 bin/packihx
 bin/s51
 bin/savr
 bin/sdcc
+bin/sdcclib
 bin/sdcdb
 bin/sdcdb.el
 bin/sdcdbsrc.el
 bin/sdcpp
-share/doc/sdcc/SDCCBugsFixed.html
-share/doc/sdcc/SDCCUdoc-1.html
-share/doc/sdcc/SDCCUdoc-10.html
-share/doc/sdcc/SDCCUdoc-11.html
-share/doc/sdcc/SDCCUdoc-12.html
-share/doc/sdcc/SDCCUdoc-13.html
-share/doc/sdcc/SDCCUdoc-14.html
-share/doc/sdcc/SDCCUdoc-15.html
-share/doc/sdcc/SDCCUdoc-16.html
-share/doc/sdcc/SDCCUdoc-17.html
-share/doc/sdcc/SDCCUdoc-18.html
-share/doc/sdcc/SDCCUdoc-19.html
-share/doc/sdcc/SDCCUdoc-2.html
-share/doc/sdcc/SDCCUdoc-20.html
-share/doc/sdcc/SDCCUdoc-21.html
-share/doc/sdcc/SDCCUdoc-22.html
-share/doc/sdcc/SDCCUdoc-23.html
-share/doc/sdcc/SDCCUdoc-24.html
-share/doc/sdcc/SDCCUdoc-25.html
-share/doc/sdcc/SDCCUdoc-26.html
-share/doc/sdcc/SDCCUdoc-27.html
-share/doc/sdcc/SDCCUdoc-28.html
-share/doc/sdcc/SDCCUdoc-29.html
-share/doc/sdcc/SDCCUdoc-3.html
-share/doc/sdcc/SDCCUdoc-30.html
-share/doc/sdcc/SDCCUdoc-31.html
-share/doc/sdcc/SDCCUdoc-4.html
-share/doc/sdcc/SDCCUdoc-5.html
-share/doc/sdcc/SDCCUdoc-6.html
-share/doc/sdcc/SDCCUdoc-7.html
-share/doc/sdcc/SDCCUdoc-8.html
-share/doc/sdcc/SDCCUdoc-9.html
-share/doc/sdcc/SDCCUdoc.html
-share/doc/sdcc/SDCCUdoc.lyx
-share/doc/sdcc/SDCCUdoc.sgml
-share/doc/sdcc/SDCCUdoc.txt
-share/doc/sdcc/SDCCWebPage.html
-share/doc/sdcc/bccinst.txt
-share/doc/sdcc/cdbfile.html
+bin/serialview
+bin/shc08
+share/doc/sdcc/INSTALL.txt
+share/doc/sdcc/README.txt
+share/doc/sdcc/TININative.txt
+share/doc/sdcc/avr/avr_design.txt
+share/doc/sdcc/builtins.txt
+share/doc/sdcc/cdbfileformat.lyx
 share/doc/sdcc/choices.txt
-share/doc/sdcc/cygwininst.txt
+share/doc/sdcc/libdoc.txt
+share/doc/sdcc/macro-sys-design.txt
 share/doc/sdcc/random-notes.txt
-share/doc/sdcc/avr/avr_design.txt
+share/doc/sdcc/sdccman.lyx
+share/doc/sdcc/test_suite_spec.lyx
 share/doc/sdcc/z80/README
-share/doc/ucsim/UCsim.jpg
-share/doc/ucsim/analyzer.html
-share/doc/ucsim/burst.gif
-share/doc/ucsim/cmd.html
-share/doc/ucsim/cmd_bp.html
-share/doc/ucsim/cmd_dump.html
-share/doc/ucsim/cmd_exec.html
-share/doc/ucsim/cmd_general.html
-share/doc/ucsim/cmd_set.html
-share/doc/ucsim/commref.html
-share/doc/ucsim/cpu.gif
-share/doc/ucsim/cpu.html
-share/doc/ucsim/cpu_types.html
-share/doc/ucsim/index.html
-share/doc/ucsim/interrupt.gif
-share/doc/ucsim/interrupt.html
-share/doc/ucsim/invoke.html
-share/doc/ucsim/mulcons.html
-share/doc/ucsim/new.gif
-share/doc/ucsim/obsolete.html
-share/doc/ucsim/post.jpg
-share/doc/ucsim/serial.html
-share/doc/ucsim/serial1.fig
-share/doc/ucsim/serial1.gif
-share/doc/ucsim/serial2.fig
-share/doc/ucsim/serial2.gif
-share/doc/ucsim/term_cpuopt.gif
-share/doc/ucsim/term_cpuopt.html
-share/doc/ucsim/timers.gif
-share/doc/ucsim/timers.html
-share/doc/ucsim/wins.gif
-share/doc/ucsim/wins.html
-share/sdcc/include/_float.h
-share/sdcc/include/assert.h
-share/sdcc/include/at89S8252.h
-share/sdcc/include/at89c55.h
-share/sdcc/include/at89x1051.h
-share/sdcc/include/at89x2051.h
-share/sdcc/include/at89x51.h
-share/sdcc/include/at89x52.h
-share/sdcc/include/canc515c.h
-share/sdcc/include/ctype.h
-share/sdcc/include/ds80c390.h
-share/sdcc/include/float.h
-share/sdcc/include/limits.h
-share/sdcc/include/malloc.h
-share/sdcc/include/math.h
-share/sdcc/include/reg51.h
-share/sdcc/include/reg515.h
-share/sdcc/include/reg552.h
-share/sdcc/include/reg764.h
-share/sdcc/include/regc515c.h
-share/sdcc/include/sab80515.h
-share/sdcc/include/ser.h
-share/sdcc/include/ser_ir.h
-share/sdcc/include/serial.h
-share/sdcc/include/serial390.h
-share/sdcc/include/setjmp.h
-share/sdcc/include/stdarg.h
-share/sdcc/include/stdio.h
-share/sdcc/include/stdlib.h
-share/sdcc/include/string.h
-share/sdcc/lib/_atoi.c
-share/sdcc/lib/_atol.c
-share/sdcc/lib/_autobaud.c
-share/sdcc/lib/_bp.c
-share/sdcc/lib/_decdptr.c
-share/sdcc/lib/_divsint.c
-share/sdcc/lib/_divslong.c
-share/sdcc/lib/_divuint.c
-share/sdcc/lib/_divulong.c
-share/sdcc/lib/_fs2schar.c
-share/sdcc/lib/_fs2sint.c
-share/sdcc/lib/_fs2slong.c
-share/sdcc/lib/_fs2uchar.c
-share/sdcc/lib/_fs2uint.c
-share/sdcc/lib/_fs2ulong.c
-share/sdcc/lib/_fsadd.c
-share/sdcc/lib/_fsdiv.c
-share/sdcc/lib/_fseq.c
-share/sdcc/lib/_fsgt.c
-share/sdcc/lib/_fslt.c
-share/sdcc/lib/_fsmul.c
-share/sdcc/lib/_fsneq.c
-share/sdcc/lib/_fssub.c
-share/sdcc/lib/_gptrget.c
-share/sdcc/lib/_gptrput.c
-share/sdcc/lib/_iscntrl.c
-share/sdcc/lib/_isdigit.c
-share/sdcc/lib/_isgraph.c
-share/sdcc/lib/_islower.c
-share/sdcc/lib/_isprint.c
-share/sdcc/lib/_ispunct.c
-share/sdcc/lib/_isspace.c
-share/sdcc/lib/_isupper.c
-share/sdcc/lib/_isxdigit.c
-share/sdcc/lib/_memcmp.c
-share/sdcc/lib/_memcpy.c
-share/sdcc/lib/_memset.c
-share/sdcc/lib/_modsint.c
-share/sdcc/lib/_modslong.c
-share/sdcc/lib/_moduint.c
-share/sdcc/lib/_modulong.c
-share/sdcc/lib/_mulsint.c
-share/sdcc/lib/_muluint.c
-share/sdcc/lib/_mululong.c
-share/sdcc/lib/_muslong.c
-share/sdcc/lib/_schar2fs.c
-share/sdcc/lib/_ser.c
-share/sdcc/lib/_setjmp.c
-share/sdcc/lib/_sint2fs.c
-share/sdcc/lib/_slong2fs.c
-share/sdcc/lib/_spx.c
-share/sdcc/lib/_startup.c
-share/sdcc/lib/_strcat.c
-share/sdcc/lib/_strchr.c
-share/sdcc/lib/_strcmp.c
-share/sdcc/lib/_strcpy.c
-share/sdcc/lib/_strcspn.c
-share/sdcc/lib/_strlen.c
-share/sdcc/lib/_strncat.c
-share/sdcc/lib/_strncmp.c
-share/sdcc/lib/_strncpy.c
-share/sdcc/lib/_strpbrk.c
-share/sdcc/lib/_strrchr.c
-share/sdcc/lib/_strspn.c
-share/sdcc/lib/_strstr.c
-share/sdcc/lib/_strtok.c
-share/sdcc/lib/_uchar2fs.c
-share/sdcc/lib/_uint2fs.c
-share/sdcc/lib/_ulong2fs.c
-share/sdcc/lib/assert.c
-share/sdcc/lib/gets.c
-share/sdcc/lib/malloc.c
-share/sdcc/lib/printf_large.c
-share/sdcc/lib/printfl.c
-share/sdcc/lib/puts.c
-share/sdcc/lib/ser_ir.c
-share/sdcc/lib/serial.c
-share/sdcc/lib/vprintf.c
-share/sdcc/lib/ds390/_atoi.asm
-share/sdcc/lib/ds390/_atoi.cdb
-share/sdcc/lib/ds390/_atoi.rel
-share/sdcc/lib/ds390/_atol.asm
-share/sdcc/lib/ds390/_atol.cdb
-share/sdcc/lib/ds390/_atol.rel
-share/sdcc/lib/ds390/_autobaud.asm
-share/sdcc/lib/ds390/_autobaud.cdb
-share/sdcc/lib/ds390/_autobaud.rel
-share/sdcc/lib/ds390/_bp.asm
-share/sdcc/lib/ds390/_bp.cdb
-share/sdcc/lib/ds390/_bp.rel
-share/sdcc/lib/ds390/_decdptr.asm
-share/sdcc/lib/ds390/_decdptr.cdb
-share/sdcc/lib/ds390/_decdptr.rel
-share/sdcc/lib/ds390/_divsint.asm
-share/sdcc/lib/ds390/_divsint.cdb
-share/sdcc/lib/ds390/_divsint.rel
-share/sdcc/lib/ds390/_divslong.asm
-share/sdcc/lib/ds390/_divslong.cdb



Home | Main Index | Thread Index | Old Index