* ARPS userland apps
@ 2012-06-04 1:47 Kim, VK5FJ
2012-06-04 2:10 ` Gordon JC Pearce
2012-07-03 15:00 ` John Goerzen
0 siblings, 2 replies; 8+ messages in thread
From: Kim, VK5FJ @ 2012-06-04 1:47 UTC (permalink / raw)
To: linux-hams
Morning all,
I started tinkering with xastir over the weekend. Ended up using
direwolf to do the soundcard/tnc thing. Using the laptop internal mic
didn't exactly work well,
I was a more than a little surprise that xastir needs a motif library to
build against. Likewise X-APRS looks like it was last updated in 1999.
Are the other active Linux text or gui clients that are a tad more
recent than xastir?
regards,
Kim
--
http://vk5fj.blogspot.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ARPS userland apps
2012-06-04 1:47 ARPS userland apps Kim, VK5FJ
@ 2012-06-04 2:10 ` Gordon JC Pearce
2012-06-04 3:28 ` Kim, VK5FJ
2012-06-04 18:23 ` Gordon JC Pearce
2012-07-03 15:00 ` John Goerzen
1 sibling, 2 replies; 8+ messages in thread
From: Gordon JC Pearce @ 2012-06-04 2:10 UTC (permalink / raw)
To: linux-hams
On 04/06/12 02:47, Kim, VK5FJ wrote:
> Are the other active Linux text or gui clients that are a tad more
> recent than xastir?
Quite a long time ago I started hacking on aprsmap:
https://github.com/gordonjcp/aprsmap
but at the moment I need to spend most of my time doing Real Work.
Please feel free to submit patches or even just helpful suggestions.
--
Gordonjcp MM0YEQ
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ARPS userland apps
2012-06-04 2:10 ` Gordon JC Pearce
@ 2012-06-04 3:28 ` Kim, VK5FJ
2012-06-04 8:12 ` Gordon JC Pearce
2012-06-04 18:23 ` Gordon JC Pearce
1 sibling, 1 reply; 8+ messages in thread
From: Kim, VK5FJ @ 2012-06-04 3:28 UTC (permalink / raw)
To: Gordon JC Pearce; +Cc: linux-hams
Hi Grodon,
On 04/06/12 11:40, Gordon JC Pearce wrote:
> On 04/06/12 02:47, Kim, VK5FJ wrote:
>> Are the other active Linux text or gui clients that are a tad more
>> recent than xastir?
>
> Quite a long time ago I started hacking on aprsmap:
>
> https://github.com/gordonjcp/aprsmap
>
> but at the moment I need to spend most of my time doing Real Work.
> Please feel free to submit patches or even just helpful suggestions.
Ok, I had a quick look and couldn't get it passed the
waf configure.
Its failing on the dependencies;
Checking for 'osmgpsmap' >= 0.7.2 : not found
Even though its installed, perhaps things have been renamed in 2.0.x ?
/usr/include/osmgpsmap/osm-gps-map-compat.h
/usr/include/osmgpsmap/osm-gps-map-image.h
/usr/include/osmgpsmap/osm-gps-map-layer.h
/usr/include/osmgpsmap/osm-gps-map-osd.h
/usr/include/osmgpsmap/osm-gps-map-point.h
/usr/include/osmgpsmap/osm-gps-map-source.h
/usr/include/osmgpsmap/osm-gps-map-track.h
/usr/include/osmgpsmap/osm-gps-map-widget.h
/usr/include/osmgpsmap/osm-gps-map.h
/usr/lib/libosmgpsmap.a
/usr/lib/libosmgpsmap.la
/usr/lib/libosmgpsmap.so
/usr/lib/libosmgpsmap.so.2
/usr/lib/libosmgpsmap.so.2.0.1
I'll have another look at it at home...
regards,
Kim
--
http://vk5fj.blogspot.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ARPS userland apps
2012-06-04 3:28 ` Kim, VK5FJ
@ 2012-06-04 8:12 ` Gordon JC Pearce
2012-06-04 12:31 ` Kim VK5FJ
0 siblings, 1 reply; 8+ messages in thread
From: Gordon JC Pearce @ 2012-06-04 8:12 UTC (permalink / raw)
To: linux-hams
On 04/06/12 04:28, Kim, VK5FJ wrote:
> Ok, I had a quick look and couldn't get it passed the
> waf configure.
>
> Its failing on the dependencies;
> Checking for 'osmgpsmap' >= 0.7.2 : not found
If you're on Ubuntu (and possibly Debian) this is because libosmgpsmap
is broken, and misses the dependency on libsoup2.4-dev
You'll also likely need to install libfap manually.
--
Gordonjcp MM0YEQ
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ARPS userland apps
2012-06-04 8:12 ` Gordon JC Pearce
@ 2012-06-04 12:31 ` Kim VK5FJ
0 siblings, 0 replies; 8+ messages in thread
From: Kim VK5FJ @ 2012-06-04 12:31 UTC (permalink / raw)
To: Gordon JC Pearce; +Cc: linux-hams
On 04/06/12 17:42, Gordon JC Pearce wrote:
> On 04/06/12 04:28, Kim, VK5FJ wrote:
>> Ok, I had a quick look and couldn't get it passed the
>> waf configure.
>>
>> Its failing on the dependencies;
>> Checking for 'osmgpsmap' >= 0.7.2 : not found
>
> If you're on Ubuntu (and possibly Debian)
yes debian/squeeze
> this is because libosmgpsmap
> is broken, and misses the dependency on libsoup2.4-dev
>
> You'll also likely need to install libfap manually.
yeah, that makes more sense. i'll have a crack at that shortly.
regards,
Kim
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ARPS userland apps
2012-06-04 2:10 ` Gordon JC Pearce
2012-06-04 3:28 ` Kim, VK5FJ
@ 2012-06-04 18:23 ` Gordon JC Pearce
1 sibling, 0 replies; 8+ messages in thread
From: Gordon JC Pearce @ 2012-06-04 18:23 UTC (permalink / raw)
To: linux-hams
On 04/06/12 03:10, Gordon JC Pearce wrote:
> On 04/06/12 02:47, Kim, VK5FJ wrote:
>
>> Are the other active Linux text or gui clients that are a tad more
>> recent than xastir?
>
> Quite a long time ago I started hacking on aprsmap:
>
> https://github.com/gordonjcp/aprsmap
>
> but at the moment I need to spend most of my time doing Real Work.
> Please feel free to submit patches or even just helpful suggestions.
>
Just to give you an example, here's a screenshot showing the path of the
Olympic Torch across Northern Ireland today:
http://www.gjcp.net/~gordonjcp/aprsmap-torch2012.jpg
There's a bit of "splatter" in the top right where it has become clear
that aprsmap doesn't deal with out-of-sequence APRS packets well ;-)
--
Gordonjcp MM0YEQ
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ARPS userland apps
2012-06-04 1:47 ARPS userland apps Kim, VK5FJ
2012-06-04 2:10 ` Gordon JC Pearce
@ 2012-07-03 15:00 ` John Goerzen
2012-07-04 1:00 ` Kim, VK5FJ
1 sibling, 1 reply; 8+ messages in thread
From: John Goerzen @ 2012-07-03 15:00 UTC (permalink / raw)
To: vk5fj; +Cc: Kim, VK5FJ, linux-hams
Just curious - why Dire Wolf instead of soundmodem?
On 06/03/2012 08:47 PM, Kim, VK5FJ wrote:
> Morning all,
>
> I started tinkering with xastir over the weekend. Ended up using
> direwolf to do the soundcard/tnc thing. Using the laptop internal mic
> didn't exactly work well,
>
> I was a more than a little surprise that xastir needs a motif library
> to build against. Likewise X-APRS looks like it was last updated in 1999.
>
> Are the other active Linux text or gui clients that are a tad more
> recent than xastir?
>
> regards,
>
> Kim
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-07-04 1:00 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-04 1:47 ARPS userland apps Kim, VK5FJ
2012-06-04 2:10 ` Gordon JC Pearce
2012-06-04 3:28 ` Kim, VK5FJ
2012-06-04 8:12 ` Gordon JC Pearce
2012-06-04 12:31 ` Kim VK5FJ
2012-06-04 18:23 ` Gordon JC Pearce
2012-07-03 15:00 ` John Goerzen
2012-07-04 1:00 ` Kim, VK5FJ
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.