Commit Graph

1220 Commits

Author SHA1 Message Date
sthen
05caeca6a3 update to conserver-8.2.2 2018-05-29 13:54:05 +00:00
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
schwarze
c143ca02b2 No important formatting differences, drop USE_GROFF and bump.
Actually, mandoc output is slightly more readable because it
handles the footnote markers (superscript 1, 2, 3) better.
2017-06-17 17:22:04 +00:00
kirby
5aebe981eb bugfix update to python-gammu-2.8 2017-06-10 08:44:00 +00:00
kirby
ffaffc3d5d update to gammu-1.38.3 2017-05-25 18:07:53 +00:00
sthen
c208af7d2c update to FLdigi-4.0.4 2017-05-24 14:05:42 +00:00
sthen
64ce11935f fix format string for 64-bit time_t, found by clang warning 2017-05-06 22:00:53 +00:00
sthen
044a3c1586 regen 2017-05-06 21:57:27 +00:00
espie
76983199c3 remove very old unneeded configure change which breaks clang 2017-05-04 14:21:34 +00:00
espie
06bc3b0684 requires gnu89 inline semantics 2017-05-04 14:02:00 +00:00
espie
1f872fa991 uses gnu89-inlines 2017-05-02 16:56:11 +00:00
espie
bdb8a5647f abs(unsigned) doesn't make much sense.
clang catches an actual bug in jakemsr's code!
2017-05-02 16:47:32 +00:00
sthen
cf1c9742f6 update to fldigi-4.0.3 2017-05-01 13:28:09 +00:00
espie
cb79f58294 missing prototypes 2017-04-29 06:54:29 +00:00
ajacoutot
0cb7bca06b Update to xlog-2.0.14. 2017-04-28 22:29:31 +00:00
naddy
b8db4b8592 * drop -Werror; fixes build with clang
* replace gettext module while here
2017-04-27 23:03:54 +00:00
naddy
f49f2b4285 * handle CPPFLAGS properly; also fixes build with clang
* neutering nl_langinfo() should be no longer required
2017-04-27 20:13:36 +00:00
jca
733a373c8d inline->static inline to fix clang build 2017-04-25 22:56:25 +00:00
jca
8bbce942b3 Respect CC 2017-04-25 22:51:23 +00:00
sthen
1a57732b1b clang and other fixes for zmtx-zmrx:
add prototypes
add missing system headers
add missing return values in non-void functions
64-bit time_t format string fix found by clang
honour CFLAGS
don't call rx_raw(int timeout) with "rx_raw()", use a sane timeout
2017-04-24 10:14:05 +00:00
sthen
61e9aa7beb regen patches under standard names 2017-04-24 09:48:17 +00:00
sthen
58003290b8 Update to minicom-2.7.1
CVE-2017-7467: Fix an out of bounds data access that can lead to remote
code execution.
2017-04-18 21:05:09 +00:00
sthen
17a56ad7cd update to fldigi-4.0.2 2017-04-16 14:36:02 +00:00
sthen
7b9fdbb2c9 use LIBCXX 2017-04-10 11:45:22 +00:00
kirby
f193f5a94c Update to gammu-1.38.2. 2017-04-05 08:02:05 +00:00
benoit
e3df02e777 Update to chirp-20170311. 2017-03-28 07:05:05 +00:00
jca
5b29309099 Respect CXX/CXXFLAGS 2017-02-27 15:47:17 +00:00
jca
d13e8957bd Don't hardcode gcc, respect CFLAGS 2017-02-27 15:40:54 +00:00
sthen
691ac83091 honour CC 2017-02-26 20:15:35 +00:00
sthen
94ca938963 set a portroach marker, the default scheme picks up alpha versions. 2017-02-20 10:23:28 +00:00
sthen
2a738b5efb update to FLdigi-3.23.21 2017-02-14 23:17:36 +00:00
sthen
d089f0b05a Add perl to WANTLIB, first batch. This used to be done automatically but
since SHARED_ONLY support was removed across the ports tree the perl module
no longer adds it, so it must be done manually for any perl ports that
provide perl shared-library modules (i.e. libdata/perl5/site_perl/$ARCH/*.so)
and you must not remove them from WANTLIB even if they show as "Extra".
2017-02-06 20:20:23 +00:00
zhuk
55cb3c3d94 Having comms/qtserialport and x11/qt5/qtserialport not conflicting
is not enough for stable builds: all their dependees should depend
on either <5.6 or >=5.6 version as well.

Issue reported by naddy@
2017-01-21 18:25:02 +00:00
kirby
26c04df91f Bugfix update to gammu-1.38.1 2017-01-07 12:27:19 +00:00
zhuk
2c18b4a993 Allow side-by-side installation with qtserialport 5.6+. 2016-12-25 15:10:27 +00:00
kirby
5644fa45d6 Update to wammu-0.43 2016-12-18 12:31:02 +00:00
kirby
899efd848b Update to python-gammu-2.7 2016-12-18 12:27:15 +00:00
kirby
370be17487 Update to gammu-1.38.0 2016-12-18 12:26:33 +00:00
ajacoutot
81ff798c4b Missed bump.
Drop NO_BUILD to preserve the bdep on python.
2016-11-25 14:42:29 +00:00
kirby
77573f8d21 drop RDEP on devel/gettext. Python already depends on it.
Noticed by ajacoutot@, thanks!
2016-11-25 13:01:15 +00:00
kirby
f090f6946b + SUBDIR += gammu
+     SUBDIR += py-gammu
+     SUBDIR += wammu
2016-11-25 12:02:22 +00:00
kirby
fe83b1794b Import wammu-0.42
OK feinerer@

Wammu is a program to manage data in your cell phone such as contacts,
calendar or messages. It is built on Gammu library, which provides
abstraction layer to work with different cell phones from different
vendors (including Nokia, Sony-Ericsson, Motorola, Samsung, Siemens,
Huawei and others).
2016-11-25 11:58:01 +00:00
kirby
8c632c8926 Import py-gammu-2.6
OK feinerer@

Python bindings which allow you to use (most) of Gammu functionality
from Python language.
2016-11-25 11:55:34 +00:00
kirby
6ca97e8ce6 Import gammu-1.37.4
Tweaks, tests and OK feinerer@

Gammu command line utility provides access to wide range of phone
features, however support level differs from phone to phone and you
might want to check Gammu Phone Database for user experiences with
various phones. Generally following features are supported:
     * Call listing, initiating and handling
     * SMS retrieval, backup and sending
     * MMS retrieval
     * Phonebook listing, export and import (also from standard
       formats such as vCard)
     * Calendar and tasks listing, export and import (also from
       standard formats such as vCalendar or iCalendar)
     * Retrieval of phone and network information
     * Access to phone file system.
2016-11-25 11:51:46 +00:00
sthen
5a6546fdc1 update to fldigi-3.23.15, including a fix for libsamplerate change 2016-11-09 13:25:12 +00:00
naddy
c326edce1b The ${PROJECT}.googlecode.com/files/ master sites are no longer
accessible, but the distfiles are still available at an archive URL.
Introduce MASTER_SITE_GOOGLECODE and use it for all affected ports.

ok czarkoff@ danj@ sthen@
2016-10-01 11:54:14 +00:00
naddy
70bb8e18e7 replace libiconv module 2016-09-13 11:44:06 +00:00
jasper
003e889c0a retire sparc 2016-09-01 10:53:26 +00:00
ajacoutot
c63452d37d Update to p5-Device-Gsm-1.61. 2016-08-27 20:46:54 +00:00
ajacoutot
96ecf1cd12 Zap trailing spaces at EOL. 2016-08-03 13:06:41 +00:00
sthen
342c4d9587 fix @sample directory name 2016-06-20 15:08:44 +00:00
sthen
2e964b1846 update to chirp daily 20160507, from Ted Roby, small tweaks from me 2016-05-07 14:02:53 +00:00
naddy
c1fbcfee6b x11/openmotif -> x11/motif 2016-05-05 19:52:28 +00:00
naddy
086906101b replace libiconv module 2016-04-28 13:59:19 +00:00
naddy
32cd7e42e2 replace gettext module 2016-04-12 15:19:39 +00:00
naddy
52501c1f09 replace libiconv module with library dependency; no bump needed 2016-04-09 20:14:48 +00:00
sthen
1b9cae641a update to fldigi-3.23.09 2016-04-03 12:01:17 +00:00
zhuk
ed298848a3 Zap more lines from qmake-based ports by moving them from
the "MODULES=x11/qtX + CONFIGURE_STYLE=qmake" logic to
the "MODULES=devel/qmake x11/qtX" logic.

Discussed with espie@ a few weeks ago.
2016-03-26 20:37:34 +00:00
naddy
cfbb239b6a Remove SHARED_ONLY from all CPAN Perl ports and the cpan and perl MODULES.
Add WANTLIB+=perl and PKG_ARCH=* as appropriate.
2016-03-20 19:56:05 +00:00
naddy
deea7ed07b drop SHARED_ONLY from python and ruby ports 2016-03-20 16:12:22 +00:00
naddy
42bc647e80 remove SHARED_ONLY from ports that only use modules that neither set nor
read this variable
2016-03-18 23:12:15 +00:00
naddy
2c4204cf62 remove SHARED_ONLY from simple ports that use the gettext or libiconv module 2016-03-18 21:38:22 +00:00
naddy
9476ae4b33 Consistently disable support for devices connected to a PC printer
port.  (The configure check is broken).
Drop maintainer at his request.

ok edd@
2016-03-18 16:09:15 +00:00
naddy
071c34fd6f remove SHARED_ONLY from ports that use only the gnu module 2016-03-16 21:19:37 +00:00
naddy
ce859edcb4 garbage collect CONFIGURE_SHARED 2016-03-11 20:28:21 +00:00
naddy
13ad9b5895 Remove xcept, a Btx decoder. Btx was switched off in 2001. ok sthen@ jca@ 2016-03-09 21:32:53 +00:00
zhuk
d90ba5e73a Convert to MODQMAKE, -3 Makefile lines. 2016-03-07 12:01:19 +00:00
kirby
5de4d85c55 Remove explicitely set CONFIGURE_STYLE=cmake. It is already done via
MODULES=devel/cmake
OK dcoppa@, czarkoff@
2016-03-04 10:11:21 +00:00
bentley
11ca303d31 +ems-flasher 2016-01-30 01:15:22 +00:00
bentley
823a835570 Import ems-flasher-0.03.
The ems-flasher utility reads data from or writes data to a EMS 64 Mbit
USB Game Boy cartridge.

ok benoit@
2016-01-30 01:14:54 +00:00
sthen
3451d0c08d Chase Location: header redirects for googlecode-hosted HOMEPAGEs and
bump REVISION.
2016-01-26 13:05:26 +00:00
sthen
41a4ee4393 update to Fldigi-3.23.06 2016-01-17 23:27:17 +00:00
jasper
4a30296f9d ignore some bogus tags 2016-01-08 10:37:34 +00:00
jasper
94eb87ab8a remove openobex/obexftp; outdated, unmaintained (not touched since import in
2004) and no longer useful (for one because we haven't had bluetooth support
for a while anymore).

ok aja@
2015-12-06 13:05:38 +00:00
landry
5711f896ef Mark BROKEN-hppa for reliable BROKEN-ness (gcc ICEs, undefined refs to
atomics, various horrors)
2015-12-04 20:47:52 +00:00
abieber
ea6e0d5557 +qtserialport 2015-11-24 17:50:19 +00:00
abieber
6a6530beb8 Import QTSerialPort - a QT library for dealing with.. you guessed it!
Serial ports! Eventually this can be removed, as it is included in QT
proper.

Reason for import is the most recent version of Fritzing requires it.

OK sthen@
2015-11-24 14:57:48 +00:00
jasper
dd11ff3185 switch distfiles.nl to SSL, setup with security/letsencrypt/client 2015-11-24 09:11:02 +00:00
sthen
7ee6ff990d getpwnam -> getpwnam_shadow 2015-11-19 14:03:30 +00:00
espie
511c5d230a a few minor pkg_subst fixes, for the coming patch (disallow -c without -m
outside of WRKDIR)
2015-11-02 11:56:54 +00:00
bentley
3cccd78afa Move to http mirror. 2015-10-15 08:30:27 +00:00
sthen
391dc93fe7 REVISION bumps following the additional member in struct if_data,
to make sure packages get updated
2015-10-05 16:29:01 +00:00
ajacoutot
e18d7ebea1 Revert removal of pilot-link and jpilot; we still have one user of these... 2015-09-21 08:46:50 +00:00
ajacoutot
933e1c7ef5 -jpilot
-pilot-link
2015-09-19 22:21:20 +00:00
ajacoutot
dc34861c75 It's 2015, remove pilot-link... 2015-09-19 22:20:42 +00:00
ajacoutot
4924fa9ed4 Remove jpilot; it's 2015... 2015-09-19 22:20:15 +00:00
sthen
b0afd3bc40 remove bcallah as maintainer of his ports, at his request 2015-08-25 13:18:24 +00:00
bcallah
d1d4d15e46 Update to 0.22.1 2015-08-24 23:02:30 +00:00
sthen
d8e24bbded sync WANTLIB 2015-08-17 19:52:39 +00:00
sthen
6222f72cff don't strip bin/console, reported by jirib at devio.us 2015-08-14 13:49:41 +00:00
sthen
a626ee54a0 sync WANTLIB 2015-08-12 22:27:31 +00:00
sthen
9bb11e585e update to amtterm-1.4, display control messages from host 2015-08-12 14:54:07 +00:00
sthen
5a988be900 bump REVISION, missed in last commit. reported by aja 2015-08-12 07:45:04 +00:00
sthen
f2aa84f79f +conserver,ipmi 2015-08-11 21:13:37 +00:00
sthen
d57d6a762c add a flavour to build comms/conserver with internal IPMI console support 2015-08-11 21:13:14 +00:00
ajacoutot
86227bf9b0 Unbreak; I don't see why this port needs groff and gmake to run.
Triggered by a PLIST mismatch registering gettext-tools as a new
RUN_DEPENDS.
hint from naddy@

RUN_DEPENDS = ${BUILD_DEPENDS} is bad! bad! bad! Do *not* use that
construct.
2015-07-20 22:00:54 +00:00
jasper
0bd434ad5a use sed -i 2015-07-18 15:31:16 +00:00
ajacoutot
2889a1d16f Remove the perl bullshit. 2015-07-16 23:57:18 +00:00
jasper
3fdc8abb82 - update to xlog-2.0.13
- use a pre-configure target instead of patching most logfile handlers
2015-07-15 17:23:31 +00:00
ajacoutot
d9c1207e4f Move some obvious sudo -> '#' (root) in READMEs. 2015-07-07 14:43:36 +00:00
bcallah
a8131a1add Update to 3.22.10 now that FLTK 1.3.3 has been committed.
ok aja@
2015-06-28 13:37:13 +00:00
bentley
cef9780e72 Kill dead mirrors, add http mirrors. Remove maintainer per request.
ok giovanni@ (previous maintainer)
2015-06-18 02:50:18 +00:00
bentley
2f85008a3b Add http mirror.
ok robert@ (MAINTAINER)
2015-06-17 08:21:15 +00:00
sthen
c58704c98d sync wantlib, mostly lzma (from xml2) 2015-06-10 21:42:26 +00:00
sthen
11a8406f73 update to conserver-8.2.1 2015-06-10 13:07:33 +00:00
ajacoutot
a183b75553 "/usr/local/lib/pkgconfig/" is part of mtree(8).
Packages should not own this dir to prevent its deletion or a warning that it
cannot be removed because it's not empty at pkg_delete(1) time.
2015-05-22 11:31:10 +00:00
ajacoutot
f41ba597e3 Cope with recent fonts directory change in ghostscript.
ok kili@
2015-04-06 21:05:07 +00:00
ajacoutot
0bad5217f7 Move fontpath from /usr/local/lib/X11/fonts to /usr/local/share/fonts to match
XDG_DATA_DIR (where Desktop tools will look for by default).

discussed with sthen@ and matthieu@
ok sthen@
2015-03-31 09:44:48 +00:00
naddy
379dc0f3c5 remove unused fragment 2015-03-20 20:09:07 +00:00
naddy
dec091b387 fold lib-only PFRAG.shared into PLIST 2015-03-19 12:12:20 +00:00
naddy
2382144b92 fold lib-only PFRAG.shared into PLIST, regen PLIST, and bump 2015-03-16 18:07:34 +00:00
schwarze
699575344f only minor formatting differences; drop USE_GROFF; no bump needed 2015-01-24 13:46:44 +00:00
naddy
c6299e5727 Drop USE_GROFF: trivial page footer difference only. 2015-01-22 18:41:16 +00:00
naddy
3fe8791930 Drop USE_GROFF since groff and mandoc produce identical output. 2015-01-22 12:52:45 +00:00
naddy
570aa62a9c Drop remaining MD5/RMD160/SHA1 checksums. 2015-01-18 03:12:39 +00:00
bcallah
caca1a1b24 Forgot to remove the TEST_DEPENDS. You no longer need gsed to run the tests 2014-12-30 01:54:26 +00:00
bcallah
a27497bd0c Update to 3.22.04, needed for an upcoming fltk-1.3.3 update.
ok sthen@
2014-12-30 01:41:37 +00:00
bcallah
5413f47b6e +minimodem 2014-12-20 19:32:03 +00:00
bcallah
1829d85049 Import comms/minimodem
ok benoit@

Minimodem is a command-line program which decodes (or generates) audio
modem tones at any specified baud rate, using various framing protocols.
It acts a general-purpose software FSK modem, and includes support for
various standard FSK protocols such as Bell103, Bell202, RTTY, NOAA
SAME, and Caller-ID.

Minimodem can play and capture audio modem tones in real-time via the
system audio device, or in batched mode via audio files.

Minimodem can be used to transfer data between nearby computers using an
audio cable (or just via sound waves), or between remote computers using
radio, telephone, or another audio communications medium.
2014-12-20 19:31:44 +00:00
benoit
4bc7603db4 Update to p5-Device-Gsm-1.60.
remove maintainer, ok ajacoutot@
2014-12-20 09:11:28 +00:00
dcoppa
4ad39802d1 Update to chirp-0.4.1, and add a missing rdep on x11/py-gtk2 as
found by Jeremy Chase
2014-11-11 14:24:39 +00:00
abieber
a3367cbdfe Update to the latest version.
OK sthen@
2014-11-07 14:20:11 +00:00
sthen
581f67f312 update to tlf-1.2.1 to unbreak 2014-11-04 10:58:21 +00:00
ratchov
f5f66d62dc Use sndio to record.
ok sthen
2014-11-04 07:41:10 +00:00
ajacoutot
769204b1ac Update to flipit-0.3.6. 2014-11-01 10:10:53 +00:00
ajacoutot
c9e0c91c8c Update to jpilot-1.8.2. 2014-10-31 18:30:10 +00:00
ajacoutot
564894b9be Cleanup. 2014-10-31 18:28:54 +00:00
abieber
f3e2aba05b Update to the latest release. Tested with SparkCore.
OK ian@
2014-10-21 15:08:51 +00:00
sthen
0d6e6c0681 build conserver,net flavour 2014-10-07 22:14:40 +00:00
sthen
4fe620bb9a update conserver to 8.2.0, and make some port changes ...
- Switch to using unix domain sockets instead of network sockets for
comms between "console" client and "conserver" server. This is a compile-
time toggle and disables network sockets. Uses SO_PEERCRED for access
control so it's possible to do per-user acls in conserver without
the need to re-enter user passwords.

- Add a flavour to use network sockets for those that need it (i.e.
running the client on a different machine to the server).

- Tweaks to pkg-readme explaining the above.
2014-10-07 22:14:17 +00:00
sthen
fe0f47689f conserver tweaks:
- setup break sequence for ipmitool in sample config
- remind people about log rotation (console logs sometimes get quite large)
2014-10-07 15:21:42 +00:00
sthen
fae0e26fbf tweak sample ipmitool line; avoid keeping the shell around 2014-10-07 14:05:02 +00:00
sthen
ceeff061d1 conserver tweaks:
- add http master site
- use correct autoconf version for 8.1.20
- install upstream's other sample configs
- actually install pkg-readme
- add sample config to work with IPMI SOL consoles using ipmitool
2014-10-07 12:51:35 +00:00
espie
01e62971f9 dkstat.h 2014-09-17 14:52:18 +00:00
sthen
0f276effad update to fldigi 3.21.83 2014-09-16 16:21:12 +00:00
sthen
5398791b6e update to conserver 8.1.20, add more notes for upgrading users on how to
unbreak things following the uid change
2014-09-08 16:12:11 +00:00
ajacoutot
8d28dad502 Cope with openssl(1) move from /usr/sbin to /usr/bin
ok landry@
2014-08-27 06:58:00 +00:00
sthen
a02cb7ca33 fix up some more things to cope with the change to running conserver as
a separate uid
2014-08-21 19:58:07 +00:00
jasper
0fe4b0c08d update to minicom-2.7 2014-08-21 08:23:00 +00:00
landry
7c41542f98 Instead of BROKEN-alpha, use CFLAGS=-fno-stack-protector to fix the build.
Suggested by miod@
2014-08-19 05:33:47 +00:00
landry
94a3a8a2a0 Mark BROKEN-alpha:
gnokii-sms.c: In function 'savesms':
gnokii-sms.c:577: error: unrecognizable insn:
(insn 500 499 501 29 (set (reg:DI 291)
        (plus:DI (reg/f:DI 65 virtual-stack-vars)
            (const_int -41228 [0xffffffffffff5ef4]))) -1 (nil)
    (nil))
gnokii-sms.c:577: internal compiler error: in extract_insn, at recog.c:2077
2014-08-18 19:01:59 +00:00
espie
92816cd8fc use more specific version of SUBST_* where appropriate 2014-08-10 09:58:04 +00:00
benno
50c69717f4 run conserver as user _conserver instead of root
change maintainer to sthen@
ok sthen@
2014-07-15 13:47:26 +00:00
ajacoutot
3935005159 Don't edit /etc/services. 2014-07-11 16:41:31 +00:00
sthen
3cc1fae7b7 @comment zero-byte perl .bs files 2014-06-14 23:23:11 +00:00
sthen
26b647a798 @comment zero-byte perl .bs files in all packages which don't have p5-* PKGNAMEs
and bump
2014-06-14 10:34:44 +00:00
abieber
e5d06a5700 Update chirp to 0.4.0
OK sthen@
2014-06-12 21:54:30 +00:00
abieber
2691eda08e Update to the latest version - explored option to enable pulseaudio but
concensus was keep it simple.

OK sthen@
2014-05-05 23:04:16 +00:00
schwarze
6e537af6a4 install manuals to the right place;
ok abieber (MAINTAINER)
2014-04-24 18:52:58 +00:00
jasper
f00a289297 remove bogus libusb1 dependency, as it's using libusb-compat 2014-04-18 23:22:17 +00:00
sthen
05a61a0350 drop some USE_GROFF in perl ports where it's not needed 2014-04-07 14:51:25 +00:00
jasper
012f7978a4 cleanup double spaces and sort MODGNOME_TOOLS 2014-04-02 09:36:09 +00:00
jasper
43b19ca734 merge various MODGNOME_TOOLS lines into a single line (or two if it would
exceed 80 chars); no functional change intended..
2014-04-01 18:06:28 +00:00
sthen
339db227ce update to fldigi-3.21.79 2014-03-22 01:26:42 +00:00
ajacoutot
c32240f6b3 Bump after recent gnome.port.mk changes; these do not require to
RUN_DEPENDS on yelp.

Note that this change will drop a big pile of dependencies from the pkg
and it is possible that some dependencies will be missing from the
dependency chain; if that is the case, it means that the pkg dependencies
were wrong in the first place and would have required fixing anyway.

Any fallout, please let me know.
2014-03-16 09:12:23 +00:00
sthen
fc436db98e enable iconv in smstools 2014-03-09 20:52:25 +00:00
abieber
0a70173fcb upgrade to 2.0.4, use GraphicsMagic instead of ImageMagick, add gdal
support.

OK sthen@
2014-01-29 15:22:31 +00:00
espie
2c1671ff94 hylafax wants that file 0600 ? make it 0600. don't care. 2014-01-25 13:15:27 +00:00
ajacoutot
5749bb78fe Explicitely set @mode. 2014-01-19 09:48:29 +00:00
sthen
4d259ed5ef Fix up alioth.debian.org MASTER_SITES URLs.
Old https://alioth.debian.org/frs/download.php/xxx/ URLs now give a 0-byte
file, the "proper" https://alioth.debian.org/frs/download.php/file/xxx/
URLs give a 406 error unless there's an http Accept: header, but URLs in the
form https://alioth.debian.org/frs/download.php/latestfile/yyy/ do work, and
don't need changing for each release of the distfile ("yyy" is different to
the per-file "xxx" value and needs to be looked up on the project's file
listing page...)

(These URLs also need the relevant ca cert; that is a separate issue.)
2014-01-14 00:38:39 +00:00
sthen
46d0caceb8 unbreak patch 2013-12-06 15:46:06 +00:00
jca
68f201e8e9 Don't include <sys/timeb.h>. 2013-12-06 12:51:02 +00:00
jca
ec8d1e79e5 Don't include <sys/timeb.H> 2013-12-06 11:28:16 +00:00
sthen
511166c1a0 update to fldigi-3.21.77 2013-11-12 08:22:38 +00:00
sthen
c17b163e7e reorder Makefile to fix with gmake 4.0 ("recipe commences before first target") 2013-10-26 10:06:45 +00:00
lteo
82b72dc5f9 Update to picocom 1.7, from Kyle Isom (maintainer).
The picocom.8 patch is from schwarze@; it fixes the man page to show
content that was completely lost during formatting due to badly broken
syntax.

Tested by Kyle on amd64 and sgi, and myself on i386.

feedback bcallah@ brad@ schwarze@
OK abieber@
2013-10-23 03:22:02 +00:00
naddy
06a9102560 Drop USE_GROFF since groff and mandoc produce identical output. 2013-10-11 23:48:03 +00:00
naddy
048f6d4a22 Regenerate PLISTs now that imake installs the source man pages. 2013-10-11 20:39:16 +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
ajacoutot
de423d4d84 Bump after devel/gconf2,-main is gone. 2013-09-27 17:49:01 +00:00
zhuk
4f664d8b82 Fixup handling of FreeDesktop goo: desktop-file-utils, gtk-update-icon-cache
and shared-mime-info. Found by portcheck.

A lot of input from and okay ajacoutot@
2013-08-20 22:05:46 +00:00
ajacoutot
386a55348d MESSAGE->README 2013-08-09 16:46:23 +00:00
naddy
c2832a1290 move http://code.google.com, *.googlecode.com, and sites.google.com to https
suggested by bentley@
2013-08-07 21:31:12 +00:00
naddy
b43ec6dca7 remove workarounds for gcc 2.95 2013-08-07 19:16:48 +00:00
sthen
1fae44f1be update to fldigi-3.21.72 2013-07-12 21:13:48 +00:00
giovanni
05448831df Provide a default FontMap in hyla.conf as an hint for faxsetup
ok ajacoutot@
2013-06-17 13:51:59 +00:00
sthen
7a44bc1f2d fix deps; py-libxml not py-lxml 2013-06-14 19:05:14 +00:00
sthen
c5b83a8258 +chirp 2013-06-13 11:43:02 +00:00
sthen
eb97975774 import ports/comms/chirp, ok benoit@
CHIRP is a free, open-source tool for programming amateur radios.
It supports a large number of manufacturers and models, as well as
provides a way to interface with multiple data sources and formats.

CHIRP's focus is to support reading and writing the memory channels
of as many radio models as possible. This provides the ability to
exchange your programming information between dissimilar radios.
It does not focus on supporting every single knob and setting that
each radio supports.
2013-06-13 11:42:43 +00:00
ajacoutot
996f81b71b Fix MASTER_SITES. 2013-06-09 10:25:05 +00:00
naddy
10bfdff492 the png headers are now directly under include/ 2013-06-04 18:41:39 +00:00
sthen
93a3e6946d Alexey Suslikov drops MAINTAINER. While there, regen distinfo/PLIST/patches
and don't USE_GROFF.
2013-05-16 11:01:09 +00:00
sthen
9ce1018382 use gettext module 2013-05-16 08:57:57 +00:00
sthen
dbb67f3b9c +fldigi 2013-05-13 18:24:06 +00:00
sthen
c5fdf604e6 import ports/comms/fldigi, ok benoit@
Fldigi is a software modem for Amateur Radio use. It is a sound card based
program that is used for both transmitting and receiving data in any of the
following modes:

BPSK and QPSK        31, 63, 125, 250 (both), and 63F and 500 (BPSK only)
PSKR                 125, 250, and 500
CW                   speeds from 5 to 200 wpm
DominoEX             4, 5, 8, 11, 16 and 22; also with FEC
Hellschreiber        Feld Hell, Slow Hell, Hell x5/x9, FSKHell(-105) and Hell 80
MFSK                 4, 8, 11, 16, 22, 31, 32 and 64; most with image support
MT63                 500, 1000 and 2000
OLIVIA               various tones and bandwidths
RTTY                 various baud rates, shifts, nbr. of data bits, etc.
THOR                 4, 5, 8, 11, 16 and 22
Throb and ThrobX     1, 2, and 4
WWV                  receive only - calibrate your sound card to WWV
Frequency Analysis   receive only - measure the frequency of a carrier

Fldigi can also control a transceiver using Hamlib or RigCAT I/O, perform online
or cdrom QRZ queries, log QSOs with the built-in logbook or Xlog, and send
reception reports to the PSK Automatic Propagation Reporter.
2013-05-13 18:23:51 +00:00
sthen
8ab8805b44 avoid unnecessary two-step install/subst_cmd 2013-05-04 11:31:57 +00:00
ajacoutot
a673865760 Tweak MESSAGEs/READMEs now that inetd(8) is off by default. 2013-04-27 15:44:20 +00:00
sthen
777ce0e01f add synchronous mode and hack around mutex problems, allowing rtl_fm to work. 2013-04-23 14:50:19 +00:00
sthen
8453375f9f +rtl-sdr 2013-04-21 11:45:32 +00:00
sthen
c09b9d7534 import ports/comms/rtl-sdr, help+ok mpi@
DVB-T dongles based on the Realtek RTL2832U can be used as a cheap SDR
(software defined radio), since the chip allows transferring the raw I/Q
samples to the host, which is officially used for DAB/DAB+/FM demodulation.

RTL-SDR provides some tools to work with these devices:

rtl_eeprom:	EEPROM programming tool
rtl_sdr:	tunes the device and captures raw data to a file
rtl_test:	check the possible tuning range

Asynchronous mode is NOT currently supported on OpenBSD. rtl_sdr and rtl_test
have been modified to force synchronous mode, and the following are not yet
available:

rtl_adsb:	simple ADS-B decoder (aircraft tracking)
rtl_fm:		general purpose analogue demodulator
		(narrow band FM, wide band FM, AM and SSB)
rtl_tcp:	provides a network server for remote access to an SDR
2013-04-21 11:45:08 +00:00
sthen
b97760e20c update to hamlib 1.2.15.3, don't use groff, and avoid installing useless
.a/.la for modules
2013-04-20 14:58:01 +00:00
sthen
be1f5c1da4 regen plist (missing dirs), regen distinfo while there. 2013-04-20 14:39:03 +00:00
giovanni
f2ab694097 Add a missing run dependency on print/ghostscript/gnu 2013-04-12 14:06:38 +00:00
ajacoutot
0337075b6a textproc/rarian is not needed. 2013-04-05 07:52:27 +00:00
sthen
aa3aa04143 reset @mode before installing rc script 2013-03-30 22:18:20 +00:00
gonzalo
52ca93820f Update for minicom to 2.6.2
Maintainer timeout.

Ok sthen@
2013-03-27 12:14:28 +00:00
ajacoutot
58f1a6f9f6 USE_LIBTOOL=Yes is the default now. 2013-03-21 08:45:11 +00:00
sthen
b82a1df527 Allow pilot-link's perl bindings to build with newer Perl (also OK with
5.12.x in -current).  From Debian ticket 628510.

Sync PLIST while there.
2013-03-18 22:13:42 +00:00
espie
51e3b5bd29 PERMIT_* / REGRESS->TEST sweep 2013-03-11 01:30:26 +00:00
ajacoutot
e953a008f8 Quiet gconftool-2:
gconf_ping() will try to shutdown gconfd, but since installing pkg is
done as root, there is not gconfd nor dbus that can be started when
DISPLAY isn't set and an annoying warning is issued.

discussed with espie@
2013-02-06 14:23:06 +00:00
sthen
ad2195303f update smstools to 3.1.15 2013-01-14 01:36:04 +00:00