fgmapping 1.3.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/{LICENSE → LICENSE.txt} +0 -0
- data/README +11 -17
- data/README.internal +4 -0
- data/README.rdoc +19 -0
- data/Rakefile +54 -17
- data/VERSION +1 -0
- data/{lib/init.rb → bin/fgmapping} +1 -1
- data/{bin/flightgear-mapping → lib/fgmapping.rb} +7 -2
- data/lib/{bsearch.rb → fgmapping/bsearch.rb} +0 -0
- data/lib/fgmapping/context_menu.rb +110 -0
- data/lib/{hud-impl.rb → fgmapping/hud-impl.rb} +1 -1
- data/lib/{hud-widget.rb → fgmapping/hud-widget.rb} +0 -0
- data/lib/{main-dlg-impl.rb → fgmapping/main-dlg-impl.rb} +131 -187
- data/lib/{main-dlg.rb → fgmapping/main-dlg.rb} +0 -0
- data/lib/{navaid.rb → fgmapping/navaid.rb} +1 -1
- data/lib/{nodeinfo-impl.rb → fgmapping/nodeinfo-impl.rb} +1 -1
- data/lib/{nodeinfo-widget.rb → fgmapping/nodeinfo-widget.rb} +0 -0
- data/lib/{resources.marshal → fgmapping/resources.marshal} +0 -0
- data/lib/{resources.rb → fgmapping/resources.rb} +0 -0
- data/lib/{tile.rb → fgmapping/tile.rb} +0 -0
- data/lib/{waypoint.rb → fgmapping/waypoint.rb} +1 -1
- data/test/helper.rb +18 -0
- data/test/test_fgmap.rb +7 -0
- metadata +105 -66
- data/CHANGELOG +0 -18
- data/Manifest +0 -22
- data/fgmapping.gemspec +0 -32
- data/lib/LICENSE +0 -340
- data/lib/README +0 -45
data/lib/README
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
How to run fgmap
|
2
|
-
================
|
3
|
-
|
4
|
-
Requirements:
|
5
|
-
- ruby of course. Min version 1.8.6
|
6
|
-
- qtruby4, minimum version 4.4
|
7
|
-
see: http://rubyforge.org/projects/korundum
|
8
|
-
debian/ubuntu: sudo apt-get install libqt4-ruby
|
9
|
-
- xml bindings libxml
|
10
|
-
see: http://libxml.rubyforge.org
|
11
|
-
debian/ubuntu: sudo apt-get install libxml-ruby
|
12
|
-
|
13
|
-
|
14
|
-
Run:
|
15
|
-
You basically have 3 options:
|
16
|
-
|
17
|
-
1) (you already have ruby and qtruby installed)
|
18
|
-
- unpack the 'fgmap.tar.gz' into any directory
|
19
|
-
- cd into this directory
|
20
|
-
- on shell type: ruby init.rb
|
21
|
-
|
22
|
-
2) (you already have ruby and rubygems installed)
|
23
|
-
- type: sudo gem install fgmapping
|
24
|
-
- make sure /var/lib/gems/1.8/bin is in your standard path ($PATH)
|
25
|
-
- execute 'flightgear-mapping'
|
26
|
-
|
27
|
-
3) (you don't have ruby installed, don't even know what this is)
|
28
|
-
- download "fgmap_linux"
|
29
|
-
- change permission to 'executable': chmod 774 fgmap_linux
|
30
|
-
- to run it, just type ./fgmap_linux
|
31
|
-
|
32
|
-
In any case you need to launch Flightgear like this:
|
33
|
-
- run Flightgear with additional command line option: --telnet=2948
|
34
|
-
|
35
|
-
|
36
|
-
Develop:
|
37
|
-
Download git repository:
|
38
|
-
- git clone git://rubyforge.org/fgmap.git
|
39
|
-
Remarks for development:
|
40
|
-
- .ui files can be edited with QT designer
|
41
|
-
- corresponding .rb files are generated by just issuing 'make'
|
42
|
-
|
43
|
-
|
44
|
-
Enjoy.
|
45
|
-
|