28 Commits

Author SHA1 Message Date
naddy
85229c97e7 drop RCS Ids 2022-03-11 18:49:30 +00:00
tracey
1c9e1b1cc4 Update avrdude to 6.3.
Testing Andrea Fleckens (Thanks!)
Tweaks jca@
Ok sthen@
2020-05-18 18:36:18 +00:00
sthen
9fe1e38b23 replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes 2019-07-12 20:43:27 +00:00
sthen
b17bf3228e update curses WANTLIB entries following the change in base libraries to use soname 2019-05-17 16:19:37 +00:00
espie
f4b7f81318 convert to PKGSTEM 2018-09-04 12:46:09 +00:00
robert
d267cd02ca Unbreak autoconf checks with clang by not using nested functions
in the checks.

Someone clearly did not read the autoconf documentation because
using the following functions with a function declaration inside
the body will end up declaring a function inside a function.

- AC_TRY_COMPILE( [], [ int main() { return 0; } ],
- AC_LANG_PROGRAM([[]], [[int main (void) { return 0; }]])],
- AC_TRY_LINK([], [int main (void) { return 0; }],

Result:

int
main ()
{
int main (void) { return 0; }
  ;
  return 0;
}

nested functions is a gcc extension which is not supported by
clang.

test.c:4:17: error: function definition is not allowed here
int main (void) { return 0; }
                ^
1 error generated.

This causes tests to fail in the configure scripts resulting in
missing compile and link time flags from the builds.

This resulted in weird behaviour of several software, like gnome
hanging completely due to gtk+3 not being built properly.

This change intrudces the following fixes:

- remove int main() declaration from AC_TRY_COMPILE, AC_LANG_PROGRAM, AC_TRY_LINK
  as it comes with a declaration already, and people misused them

- change to use AC_LANG_SOURCE when needed in case a complete source block is specified

Most of the changes are in configure.(ac|in), however there were some cases
where autoconf is either broken or the build failed because of an autoconf
generated configure script. Everytihng else is switched to autoconf, so
the maintainers can go ahead and upstream these diffs.

There are more to come, we are continously checking the tree for these issues
and in the future the infrastructure will error if such a case is found.
2017-09-25 09:16:12 +00:00
nigel
afb7488381 Add dependency on libftdi for consistent build
Ok @sthen
2014-06-23 18:15:03 +00:00
brad
1d77e89c13 Remove Chris Kuethe as maintainer. OpenBSD e-mail address bounces and has been
inactive for quite awhile.
2013-10-10 02:08:19 +00:00
edd
d68719c45d Update to avrdude-5.11.
This is gonzalo's work he posted to ports@ a while back. I have just
remerged the diff for -current.

Tested on an arduino mega (clone) and an arduino uno.

OK gonzalo@
2013-05-05 16:48:08 +00:00
espie
bcf3856632 PERMIT_* / REGRESS->TEST sweep 2013-03-11 10:50:00 +00:00
jasper
1fd2e91314 - add ${V} to SUBST_VARS 2011-12-09 12:25:44 +00:00
ajacoutot
fcbe5f3ae2 Sync dependencies after move from libusb to libusb-compat and fix a
couple of fallouts. Note that these ports are only the ones that used to
have a direct dependency on devel/libusb so there may be some other
hidden ports that may break because of the switch. If that's the case,
no need to start ranting all over but instead tell me which one(s)
break. Thanks.

Note: sysutils/nut hasn't been fixed yet but will be today.
2011-11-13 13:54:04 +00:00
ajacoutot
f982995f2b Add a consistent header that substitutes FULLPKGNAME for the READMEs.
ok jasper@ sthen@
2011-06-02 13:41:36 +00:00
jasper
6b3e9d487c - add support for attiny4313
ok ckuethe@ (MAINTAINER)
2011-03-02 07:20:53 +00:00
jasper
d8a6a9ff88 - ramble a bit about programming various arduino devices with avrdude
prompted by a mail from mark peoples
ok ckuethe@ (MAINTAINER)
2010-12-12 20:20:56 +00:00
espie
5855efb734 move depends to new style 2010-11-15 19:45:56 +00:00
espie
1f0d9080d4 LIB_DEPENDS cleanup 2010-11-08 01:22:36 +00:00
sthen
16fb1a7783 fix a few tabtabUSE_GROFF, problem pointed out by Alexandr Shadchin 2010-10-18 21:35:47 +00:00
espie
5c08d95027 USE_GROFF=Yes 2010-10-18 17:47:50 +00:00
ckuethe
20d93004f2 update to avrdude 5.10 2010-06-27 20:39:33 +00:00
ckuethe
fe1aa6dd26 Don't crash when using ISP mode on AVR Dragon. From tdeval 2009-12-06 02:05:51 +00:00
ckuethe
43d864398c updated to latest avrdude 2009-07-20 16:44:05 +00:00
ckuethe
1736138f8a Update to avrdude 5.6. Introduces support for AT90USB devices, and creates
a proper "arduino" bootloader type, rather than getting by with "avrisp".
2009-03-05 20:25:32 +00:00
sthen
425944e209 add MASTER_SITES_SAVANNAH and switch ports over to using it.
ok jasper, landry
2009-02-16 15:28:57 +00:00
ckuethe
be2a3bceb6 fix distfile, prompted by naddy 2008-08-29 03:58:43 +00:00
ckuethe
07ef7149bc merge patches from arduino. add a note on how to load code into an
arduino. tested with a diecimilia.
ok ajacoutot
2008-08-23 07:20:17 +00:00
ckuethe
9d1ad17412 Be more specific about GPL version and fix PLIST.
Thanks to ajacoutot for explaining how @sample works.
ok ajacoutot
2008-08-21 14:20:12 +00:00
ckuethe
60ef9a979f Import avrdude - a utility for programming Atmel AVR microcontrollers
supporting a number of different types of programming hardware and MCUs
2008-08-21 14:05:21 +00:00