Commit graph

588 commits

Author SHA1 Message Date
ryoon
f8e628f818 * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes
are replaced with .include "../../devel/readline/buildlink3.mk", and
  USE_GNU_READLINE are removed,

* .include "../../devel/readline/buildlink3.mk" without USE_GNU_READLINE
  are replaced with .include "../../mk/readline.buildlink3.mk".
2013-07-15 02:02:17 +00:00
dholland
d3edcc962e info/dir is not supposed to be in the PLIST. 2013-06-22 21:22:35 +00:00
mef
d9db7e9b61 - Add LICENSE
- Following tweak on Makefile:
 PATH differs between clang and gcc, add trick by looking for path-by-path
 to be adapted to environments. Proposed by dholland@ thanks.
 Confirmed on following combinations so far.
   NetBSD/amd64 6.1	gcc-4.5.3
   NetBSD/amd64 6.99.21 	clang version 3.2
   NetBSD/i386  5.2  	gcc-4.1.3
   NetBSD/macppc 6.1 	gcc-4.5.3
   DragonFly/i386 3.4.2 	gcc-4.7.2
2013-06-16 20:33:17 +00:00
ryoon
6fdaf959ee Update to 2.20.11
* Update MASTER_SITES.
* Add LICENSE.
* Build with distfile's Makefile.
* Install our own do-install target (install target is not provided).

Changelog:

2.20.11 -- 07 April 2008

    * Peter H. Froehlich <phf at acm dot org> took over as maintainer
      from Andrew Davie, but both Andrew and Thomas Mathys still help.

    * DASM moved to sourceforge.net, the new website for DASM is now
      available at <http://dasm-dillon.sourceforge.net/>.

    * Fixed (the obvious version of) the long-standing "-1 bug" that
      made DASM reject sources with negative integer literals; there
      may still be signed/unsigned problems in other areas; there is
      certainly still a range checking error.

    * Fixed the usage message to reflect that symbol table sorting is
      controlled by -T and not by -t as the message claimed; also the
      format of the usage message is now more GNU-like.

    * The range of values for -T is now checked, you have to stick to
      0 or 1, arbitrary numbers will not work anymore.

    * Removed spurious output when running DASM. In general command
      line tools should only make output when there's something to
      report (a central Unix tenent). Sorry if you miss the messages,
      just look at the usage information instead. :-)

    * Added new -E# option to select format of error messages; -E0 is
      the default MS style, -E1 is "classic" style from Matthew Dillon,
      -E2 is GNU style from their coding standards.

2.20.10 -- 31 October 2004

    * Thomas Mathys added support for the Fairchild F8 processor to
      DASM. Thank you, Thomas!

    * Support files for the Channel-F Video Entertainment System (VES)
      added.

2.20.08 -- unreleased

    * Documentation changed from Word documents back to text files.

2.20.07 -- 17 July 2003

    * No user-visible changes.

2.20.05 -- unreleased

    * Symbol table dump is now performed even if an error occurred.

    * Symbol table dump now displays string symbols in string form.

2.20.04 -- 24 April 2003

    * Command line options now allow "/" as prefix in addition to "-"
      as before.

    * Division by zero is now treated as an unrecoverable error.

    * Error messages now contain more information about the error,
      including the actual source code where possible.

    * Output reworked. Typically, the -v option is now unnecessary as
      more appropriate messages allow you to find errors better.
      Compatibility with the -v option has been maintained, although
      there may be a few minor changes.

    * Branch out of range errors now list the distance to the branch.

    * Undefined symbols are now always listed in a separate table. If
      an unresolved symbol causes an error, the table is displayed
      automatically at the end of assembly. (Note: It can be alright
      to have a referenced but undefined symbol, for example when
      IFCONST is used. In this case, the undefined table will only
      be displayed if there is another undefined label, but it will
      contain *all* unresolved symbols.)

    * New command line option -T# where # is 0 or 1; 0 sorts symbol
      table alphabetically (default), 1 sorts symbol table by address.
      If available memory precludes sorting, the table is unsorted.

2.20.02 -- 24 April 2003

    * John Saeger contributed support for all illegal 6502 opcodes.
      Thank you, John! This fixes the LAX opcode as well.

2.20.01 -- 22 March 2003

    * Andrew Davie <atari2600 at taswegian dot com> took up the DASM
      project, starting from Olaf "Rhialto" Seibert's 2.12.04 version
      with both Olaf's and Matthew Dillon's blessing.

    * REPEAT now detects negative loop count (used to lock up).

    * Errors are now in the format "file (line): Error: string" to
      be compatible with MS VisualStudio.

    * Support files for the Atari 2600 Video Computer System (VCS)
      added.

    * Support for illegal 6502/6507 opcodes NOP zp and LAZ (zp),y
      added.

2.12.14 -- 19 August 1995

    * Olaf "Rhialto" Seibert's release of DASM with many changes to
      Matthew Dillon's 2.12 release.

Note that everything before 2.20.11 was *reconstructed* by Peter
Froehlich for the 2.20.11 release. Peter had no first-hand knowledge
of the early years but tried to be as accurate as possible, working
from multiple sources. Please feel free to submit any corrections you
may have regarding dates, features, and people.
2013-06-16 09:40:58 +00:00
wiz
98c3768c3a Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
2013-05-31 12:39:35 +00:00
jnemeth
826aab7914 added libtool-base to keep pkglint happy, but disabled 2013-05-16 04:37:03 +00:00
riastradh
f75e4ff74f Add cross/libtool-base package (cross-libtool-base-${MACHINE_ARCH}).
This is a provisional kludge to enable cross-compilation of packages
using libtool.  It requires manual intervention: you must build it as
a target package, and then install the target package on the host
with `pkg_add -m ${TARGET_ARCH}'.

ok agc
2013-05-09 23:32:02 +00:00
joerg
3cfcc8c59f Ignore errors from this mess as other versions of binutils 2.19 do. 2013-05-09 13:47:25 +00:00
ryoon
e51bf33194 Use NEWLIBVER in SITES.
If you want to use user-defined NEWLIBVER in left side,
you must define it before its reference.
Thank you, obache@.
2013-05-06 07:11:25 +00:00
ryoon
9624fd8a5e Fix fetch od newlib-1.14.0.tar.gz.
Thank you, wiz@.
2013-05-05 13:12:44 +00:00
ryoon
57786abba7 Add h8300-elf-gcc34 2013-04-30 13:27:16 +00:00
ryoon
f40f19186a Import cross-h8300-elf-gcc-3.4.6 as cross/h8300-elf-gcc34.
gcc for Hitachi/Renesas h8300-elf cross-compile environment.
2013-04-30 13:26:34 +00:00
ryoon
ef58686256 Add h8300-elf-binutils. 2013-04-30 13:25:30 +00:00
ryoon
ec1f19fac2 Import cross-h8300-elf-binutils-2.19.1 as cross/h8300-elf-binutils.
binutils for Hitachi/Renesas h8300-elf cross compile.
2013-04-30 13:24:12 +00:00
dholland
442a50ef8e Fix printf format for LP64 platforms. Add patch comment to patch-aa.
PKGREVISION -> 2.
2013-04-14 01:21:17 +00:00
dholland
4728278acd Solaris appears to need the typedef for 'ulong'. 2013-04-14 01:15:51 +00:00
rodent
942aad2e6a Resolves:
"INFO_FILES should be set to YES or yes."
"Packages that install info files should set INFO_FILES."
Makefile and PLIST warning, respectively.
2013-04-06 20:27:16 +00:00
rodent
a0a1f2e57c Fixes:
COMMENT should not be longer than 70 characters.
 COMMENT should not begin with 'A'.
 COMMENT should not begin with 'An'.
 COMMENT should not begin with 'a'.
 COMMENT should not end with a period.
 COMMENT should start with a capital letter.

pkglint warnings. Some files also got minor formatting, spelling, and style
corrections.
2013-04-06 03:45:05 +00:00
joerg
0aed9fca9d Fix inline use. 2013-03-28 21:19:01 +00:00
wiz
1df054c17b Fix for automake-1.13. 2013-01-26 22:07:42 +00:00
dholland
af791e0c23 Not MAKE_JOBS_SAFE, as it turns out. 2012-12-24 03:59:26 +00:00
joerg
95c24061aa Fix build with C99 compilers. 2012-12-19 12:49:16 +00:00
dsainty
34313ea28c There is already a 'static' keyword present for part of this patch, so
patching in a second one is unnecessary, and for some compilers (GCC 4.4)
fatal at build time.
2012-12-12 23:44:40 +00:00
wen
a789530f2e Update to 2.13.3
Upstream changes:
(only for release 2.13.3)
This version is a bugfix release against 2.13.2. It includes about 40 bug
and documentation fixes and some minor improvements:

  * Fixed some macro issues (cc65).

  * Static const local data goes into RODATA, not DATA (cc65).

  * Fix error handling in .LEFT (ca65)

  * Fixed problems with 80 column mode (C128 library).

  * Fix problem when converting function to void pointer (cc65).

  * Fix register info for several runtime functions. Result was invalid code
    (cc65).

  * Fix smbx and rmbx instructions (da65).

  * Fix problem with .REPEAT (ca65).

  * Fix an error in the runtime division routine (cc65).

  * Fix problem with alignments >= 256 bytes (ca65).

  * The LINE function mistakenly enabled the BASIC ROM (TGI driver for C64).

  * Fix internal error caused by error recovery (or lack of) (cc65).

  * Fix invalid handling of signed int types in some cases (cc65).

  * Fix some issues with conio scrolling (C128 library).

  * Fix and improve the code for compares (cc65).

  * Fix some macro issues (ca65).

  * Fixed/improved several error messages (all tools).

  * Disallow __asm__ on global level (cc65).

  * Remove final jump to RESTOR for all CBM platforms (cc65 libraries).

  * Add missing export for CBM510 platform (cbm510 library).

  * Fix problem with access to structs returned by functions (cc65).

  * Fix an internal error in the code generator (cc65).

  * Merge back POSIX directory routines for the Atari (atari library).

  * Merge back Olivers C interrupt handling code (cc65 libraries).

  * Several documentation changes.

  * Several documentation fixes and improvements.
2012-12-03 14:36:39 +00:00
joerg
c3ee1e1ebb Fix inline usage. 2012-11-16 00:38:21 +00:00
marino
8e4e2b3329 cross/mingw-binutils: Alternative fix for gcc47
Although the claim that using the -Wno-unused-but-set-variable flag
breaks the build for older GCCs is unsubstantiated at this time, the
previous fix for gcc47 is removed in favor of deleting -Werror which
is exactly what the cross/binutils makefile does.
2012-10-09 17:32:33 +00:00
marino
56f907a95f cross/mingw-binutils: Fix build on gcc4.7
mingw-binutils is built with -Werror which fails on the gcc4.6+ warning
"unused but set variable".  Disable that warning to fix gcc4.7 build.
2012-10-09 07:48:20 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
asau
4840ebad6d Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-03 00:02:33 +00:00
drochner
fc09701328 requires doxygen-1.8.2 2012-08-30 08:00:17 +00:00
dsainty
36944a20d9 Just for completeness, bump the doxygen dependency to the latest to
guarantee the correct doxygen dependencies are present.
2012-08-29 12:50:07 +00:00
drochner
0ae08075ad make the shell pattern to exclude unwanted manpages work
update PLIST for current doxygen
bump PKGREV
2012-08-29 09:51:29 +00:00
dsainty
dddc0e4af3 Fix PLIST for changes in doxygen output. Bump doxygen dependency.
Doxygen produces man pages for the build directories too, which we really
don't want to install, so patch them out.
2012-08-18 15:13:51 +00:00
dsainty
579a2c2c5f The contents of avr-libc are licensed with a Modified BSD License. 2012-08-18 14:46:26 +00:00
asau
010650399c Mark packages with no staged installation support explicitly (PKG_DESTDIR_SUPPORT=none). 2012-08-14 17:07:55 +00:00
jdf
168094405a * improve wording in description and message
* fix typo in Makefile

Patch provided by Bug Hunting.
2012-06-12 21:11:26 +00:00
joerg
81bea0f058 Fix inline usage. 2012-05-04 16:07:02 +00:00
shattered
e68844dc10 PR/41750 -- use libftdi. 2012-04-16 13:09:27 +00:00
mef
8ae7cf3034 PR/45924 --- update to 5.11 with minor changes
(1) update 5.10 to 5.11
(2) Trying to remove pkglint -Wall warning
(3) Update HOMEPAGE URL
----- ----- -----
AVRDUDE 5.11 relesed
     (2011/8/27 By joerg_wunsch)

Finally, more than 1.5 years after the previous release,
AVRDUDE 5.11 is finally done. This is mostly a bugfix
release, but also includes a few enhancements. The two
most important enhancements are:

- TPI (i.e. ATtiny4/5/9/10) programming support for bitbang
  programmers.

- FTDI MPSSE (FT2232 etc.) bitbang support.
----- ----- -----
2012-02-07 00:21:48 +00:00
sbd
0cfe0f8972 Add yacc to USE_TOOLS 2012-01-29 05:56:11 +00:00
wiz
f182391469 Update HOMEPAGE. 2012-01-23 15:53:46 +00:00
hans
7589637040 USE_TOOLS=unzip instead of DEPENDS/BUILD_DEPENDS. 2012-01-14 03:13:03 +00:00
hans
53369fe4ca Uses pod2man. 2012-01-12 15:29:12 +00:00
dholland
0efdfcbc95 Don't install c++filt, it comes with binutils. PKGREVISION -> 6 2012-01-02 01:25:25 +00:00
wiz
e6290a593e Remove i386-netbsdpe. 2011-12-20 09:17:01 +00:00
dholland
cb7aa9a7e6 Garbage-collect cross/i386-netbsdpe. The corresponding code in base
that this was meant to support never amounted to much and was removed
some time back. The package is also severely outdated and no longer
buildable.
2011-12-20 02:36:54 +00:00
sbd
57587fe39a Add missing mk/termcap buildlink.
Pass LDFLAGS to the configure process.

Bump PKGREVISION
2011-12-17 10:15:04 +00:00
joerg
c75b6ce6c6 Fix build with newer GCC 2011-12-05 22:44:08 +00:00
sbd
b2c76b11da Honor LDFLAGS from pkgsrc. 2011-11-29 06:11:53 +00:00
joerg
fde184380e Disable -Werror for now, GCC 4.5 is more picky about potentially
uninitialized memory.
2011-11-27 19:36:48 +00:00