Commit Graph

1019 Commits

Author SHA1 Message Date
sthen
989f299b44 - adjust conserver rc.d script to cope with setups using the
setproctitle option, reported by henning@.

- patch to enable setproctitle by default, there doesn't seem a
huge amount of point hiding it behind a config flag.
2018-05-22 14:57:44 +00:00
espie
beddd9ae2c lib/tcl common with tcl 2018-05-15 11:02:50 +00:00
espie
ca83ec2fdb more @bin and other removal 2018-05-12 14:29:01 +00:00
espie
a96427599c sprinkle @bin, remove stripped directories 2018-05-12 14:08:51 +00:00
espie
2518277ccc reorder for new update-plist 2018-05-12 14:06:56 +00:00
espie
aadcacf835 keep rcscript in alpha order 2018-05-12 14:06:16 +00:00
espie
91de453053 new update-plist will match actual files first
since flipit actually installs a flipit conf, the @extra file will move
a bit
2018-05-12 14:03:35 +00:00
jasper
7d55a10c5d fix build with clang6 by forcing c++03
these ports play too much games or the original intent it too hard to decipher (yes, looking at you hylafax)
2018-04-13 15:31:12 +00:00
jasper
9b32e9c611 fix build with clang6 2018-04-11 18:01:24 +00:00
sthen
35651d91a2 conserver upstream has moved to github (and is providing stable uploaded
tarballs rather than relying on the auto-generated ones), so switch
MASTER_SITES, and use https for HOMEPAGE while there
2018-04-11 14:47:16 +00:00
sthen
a84e78f998 update to fldigi 4.0.16 2018-04-04 13:42:54 +00:00
rpe
9a8b5ccd06 Change the shebang line from /bin/sh to /bin/ksh in all ports rc.d
daemon scripts and bump subpackages that contain the *.rc scripts.

discussed with and OK aja@
OK tb
2018-01-11 19:27:01 +00:00
kirby
caf0264d3e update to wammu-0.44 2018-01-08 07:51:48 +00:00
kirby
a2f9156e32 update to python-gammu-2.11 2018-01-08 07:51:19 +00:00
kirby
3484f3745a update to gammu-1.39.0 2018-01-08 07:50:46 +00:00
abieber
3f6f228006 Bump chirp to the 20180104.
- fall back to my server until the full cert chain is used.
- add missing rundep for repeaterbook

OK jca@, almost a ":-]" from sthen@ \o/
2018-01-08 01:37:02 +00:00
sthen
12d5073265 update to FLdigi 4.0.13 2017-12-30 22:02:40 +00:00
jca
098e37a574 Give this one a chance on arm64 2017-12-26 06:08:48 +00:00
zhuk
fedb059f9d Move share/examples/conserver/simple.cf up to the proper place in PLIST.
Input & okay sthen@ (MAINTAINER)
2017-12-16 20:53:06 +00:00
espie
1cad0a9db6 a few more FIX_EXTRACT_PERMISSIONS 2017-12-04 17:56:27 +00:00
espie
178d9e13a9 restore sensible permissions to a few wrkdirs. 2017-11-25 13:27:48 +00:00
naddy
1a87aebd2d mechanical replacement of the gettext module 2017-11-21 00:12:59 +00:00
naddy
445ca8c0a3 replace gettext module 2017-11-16 18:39:25 +00:00
fcambus
5069110662 Add qodem. 2017-11-14 20:27:36 +00:00
fcambus
a132759976 Import comms/qodem.
Qodem is a from-scratch clone implementation of the Qmodem
communications program made popular in the days when Bulletin Board
Systems ruled the night. Qodem emulates the dialing directory and the
terminal screen features of Qmodem over both modem and Internet
connections.

OK sthen@
2017-11-14 20:26:49 +00:00
jeremy
8e592c8723 Update to c3270 3.5ga11
Help from sthen@
2017-11-13 22:05:33 +00:00
kirby
03c5be512b update to python-gammu-2.10 to fix compatibility with latest gammu 2017-11-10 18:45:10 +00:00
jasper
be8f7640c9 mirror distfile for one of the pool members doesn't carry it (yet?)
spotted by aja@
2017-11-09 18:59:20 +00:00
jasper
b1632f3323 update to xlog-2.0.15 2017-11-09 15:47:56 +00:00
ajacoutot
1e469c5837 Remove gnokii; it's no longer useful and doesn't work properly most of the
time.

ok robert@ (maintainer)
2017-11-06 10:13:12 +00:00
kirby
99193ed25c fix build on !CLANG_ARCHS
spotted by landry@ on sparc64 buld
2017-11-04 21:45:38 +00:00
espie
8d7d424b7b obey CC 2017-11-03 11:25:44 +00:00
sthen
78c04ae094 replace gettext MODULES 2017-11-02 22:24:14 +00:00
espie
7a9e6a42da fix bogus link line. 2017-11-02 15:22:00 +00:00
sthen
ceb7770170 Handle pthread-stubs removal. 2017-10-23 17:10:37 +00:00
kirby
adca1bcbfb update to gammu-1.38.5 2017-10-20 06:46:02 +00:00
sthen
5c1b918c04 update to smstools3-3.1.21 2017-10-10 12:04:59 +00:00
naddy
05d61abfd4 Unbreak autoconf check with clang by not using nested function.
Replace gettext module while here.
2017-09-27 21:05:42 +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
ajacoutot
d40df6b325 Adjust MAKE_FLAGS to unbreak after pulseaudio update. 2017-09-20 08:20:14 +00:00
sthen
c101536a68 update to chirp-20170714 2017-09-16 12:59:32 +00:00
sthen
c5cecfbc8a update to fldigi-4.0.9 2017-09-04 16:48:45 +00:00
jasper
0885430c52 replace dead HOMEPAGE/MASTER_SITES with a backup mirror 2017-08-21 18:36:21 +00:00
sthen
5e964ab0df bump LIBCXX/LIBECXX/COMPILER_LIBCXX ports. 2017-07-26 22:45:14 +00:00
espie
c114d7057b add pthread to COMPILER_LIBCXX.
white lie, but it allows clang and gcc to be more similar
bump accordingly.
2017-07-23 09:26:25 +00:00
espie
8ac47fd9c6 use COMPILER_LIBCXX where applicable 2017-07-16 19:18:47 +00:00
sthen
4fcf8f2aaf drop MAINTAINER on a few things 2017-07-05 10:22:05 +00:00
sthen
e8bb9ff530 drop maintainer 2017-07-04 11:09:44 +00:00
kirby
ff7704b91f update to python-gammu-2.9 2017-06-21 01:03:28 +00:00
kirby
7a7a27c686 update to gammu-1.38.4 2017-06-21 01:02:26 +00:00