Add includes to UI files to resolve FTBFS.
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d4a1613e9f
)
pull/9/head
parent
88af19c041
commit
aca01d5a8b
@ -0,0 +1,121 @@
|
||||
############################################
|
||||
# #
|
||||
# Improvements and feedbacks are welcome #
|
||||
# #
|
||||
# This file is released under GPL >= 3 #
|
||||
# #
|
||||
############################################
|
||||
|
||||
|
||||
cmake_minimum_required( VERSION 2.8 )
|
||||
|
||||
|
||||
#### general package setup
|
||||
|
||||
project( tdeedu )
|
||||
set( VERSION R14.1.0 )
|
||||
|
||||
|
||||
#### include essential cmake modules
|
||||
|
||||
include( FindPkgConfig )
|
||||
include( CheckFunctionExists )
|
||||
include( CheckSymbolExists )
|
||||
include( CheckIncludeFile )
|
||||
include( CheckLibraryExists )
|
||||
include( CheckCSourceCompiles )
|
||||
include( CheckCXXSourceCompiles )
|
||||
|
||||
|
||||
#### include our cmake modules
|
||||
|
||||
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||
include( TDEMacros )
|
||||
enable_testing( )
|
||||
|
||||
|
||||
##### setup install paths
|
||||
|
||||
include( TDESetupPaths )
|
||||
tde_setup_paths( )
|
||||
|
||||
|
||||
##### optional stuff
|
||||
|
||||
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
|
||||
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
|
||||
option( WITH_ARTS "Enable aRts support" ${WITH_ALL_OPTIONS} )
|
||||
option( WITH_OCAML_SOLVER "Enable ocalm/facile solver (kalzium)" ${WITH_ALL_OPTIONS} )
|
||||
option( WITH_LIBUSB "Enable libusb support (kstars)" ${WITH_ALL_OPTIONS} )
|
||||
option( WITH_V4L "Enable video4linux support (kstars)" ${WITH_ALL_OPTIONS} )
|
||||
|
||||
|
||||
##### user requested modules
|
||||
|
||||
option( BUILD_ALL "Build all" ON )
|
||||
|
||||
option( BUILD_BLINKEN "Build blinken" ${BUILD_ALL} )
|
||||
option( BUILD_KALZIUM "Build kalzium" ${BUILD_ALL} )
|
||||
option( BUILD_KANAGRAM "Build kanagram" ${BUILD_ALL} )
|
||||
option( BUILD_KBRUCH "Build kbruch" ${BUILD_ALL} )
|
||||
option( BUILD_KEDUCA "Build keduca" ${BUILD_ALL} )
|
||||
option( BUILD_KGEOGRAPHY "Build kgeography" ${BUILD_ALL} )
|
||||
option( BUILD_KHANGMAN "Build khangman" ${BUILD_ALL} )
|
||||
option( BUILD_KIG "Build kig" ${BUILD_ALL} )
|
||||
option( BUILD_KITEN "Build kiten" ${BUILD_ALL} )
|
||||
option( BUILD_KLATIN "Build klatin" ${BUILD_ALL} )
|
||||
option( BUILD_KLETTRES "Build klettres" ${BUILD_ALL} )
|
||||
option( BUILD_KMPLOT "Build kmplot" ${BUILD_ALL} )
|
||||
option( BUILD_KPERCENTAGE "Build kpercentage" ${BUILD_ALL} )
|
||||
option( BUILD_KSTARS "Build kstars" ${BUILD_ALL} )
|
||||
option( BUILD_KTOUCH "Build ktouch" ${BUILD_ALL} )
|
||||
option( BUILD_KTURTLE "Build kturtle" ${BUILD_ALL} )
|
||||
option( BUILD_KVERBOS "Build kverbos" ${BUILD_ALL} )
|
||||
option( BUILD_KVOCTRAIN "Build kvoctrain" ${BUILD_ALL} )
|
||||
option( BUILD_KWORDQUIZ "Build kwordquiz" ${BUILD_ALL} )
|
||||
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
||||
|
||||
|
||||
##### configure checks
|
||||
|
||||
include( ConfigureChecks.cmake )
|
||||
|
||||
|
||||
###### global compiler settings
|
||||
|
||||
add_definitions( -DHAVE_CONFIG_H )
|
||||
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
|
||||
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||
|
||||
|
||||
##### directories
|
||||
|
||||
add_subdirectory( applnk )
|
||||
add_subdirectory( libtdeedu )
|
||||
tde_conditional_add_subdirectory( BUILD_BLINKEN blinken )
|
||||
tde_conditional_add_subdirectory( BUILD_KALZIUM kalzium )
|
||||
tde_conditional_add_subdirectory( BUILD_KANAGRAM kanagram )
|
||||
tde_conditional_add_subdirectory( BUILD_KBRUCH kbruch )
|
||||
tde_conditional_add_subdirectory( BUILD_KEDUCA keduca )
|
||||
tde_conditional_add_subdirectory( BUILD_KGEOGRAPHY kgeography )
|
||||
tde_conditional_add_subdirectory( BUILD_KHANGMAN khangman )
|
||||
tde_conditional_add_subdirectory( BUILD_KIG kig )
|
||||
tde_conditional_add_subdirectory( BUILD_KITEN kiten )
|
||||
tde_conditional_add_subdirectory( BUILD_KLATIN klatin )
|
||||
tde_conditional_add_subdirectory( BUILD_KLETTRES klettres )
|
||||
tde_conditional_add_subdirectory( BUILD_KMPLOT kmplot )
|
||||
tde_conditional_add_subdirectory( BUILD_KPERCENTAGE kpercentage )
|
||||
tde_conditional_add_subdirectory( BUILD_KSTARS kstars )
|
||||
tde_conditional_add_subdirectory( BUILD_KTOUCH ktouch )
|
||||
tde_conditional_add_subdirectory( BUILD_KTURTLE kturtle )
|
||||
tde_conditional_add_subdirectory( BUILD_KVERBOS kverbos )
|
||||
tde_conditional_add_subdirectory( BUILD_KVOCTRAIN kvoctrain )
|
||||
tde_conditional_add_subdirectory( BUILD_KWORDQUIZ kwordquiz )
|
||||
tde_conditional_add_subdirectory( BUILD_DOC doc )
|
||||
|
||||
|
||||
##### write configure files
|
||||
|
||||
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,83 @@
|
||||
###########################################
|
||||
# #
|
||||
# Improvements and feedback are welcome #
|
||||
# #
|
||||
# This file is released under GPL >= 3 #
|
||||
# #
|
||||
###########################################
|
||||
|
||||
# required stuff
|
||||
find_package( TQt )
|
||||
find_package( TDE )
|
||||
|
||||
tde_setup_architecture_flags( )
|
||||
|
||||
include(TestBigEndian)
|
||||
test_big_endian(WORDS_BIGENDIAN)
|
||||
|
||||
tde_setup_largefiles( )
|
||||
|
||||
|
||||
##### check for gcc visibility support
|
||||
|
||||
if( WITH_GCC_VISIBILITY )
|
||||
tde_setup_gcc_visibility( )
|
||||
endif( WITH_GCC_VISIBILITY )
|
||||
|
||||
|
||||
##### check for arts
|
||||
|
||||
if( WITH_ARTS )
|
||||
pkg_search_module( ARTS arts )
|
||||
if( NOT ARTS_FOUND )
|
||||
tde_message_fatal( "aRts is requested but was not found on your system" )
|
||||
endif( NOT ARTS_FOUND )
|
||||
set( WITHOUT_ARTS false )
|
||||
endif( WITH_ARTS )
|
||||
|
||||
if( NOT WITH_ARTS )
|
||||
set( WITHOUT_ARTS 1 )
|
||||
endif( NOT WITH_ARTS )
|
||||
|
||||
|
||||
##### check for Python
|
||||
|
||||
if( BUILD_KIG )
|
||||
|
||||
find_package( PythonInterp )
|
||||
find_package( PythonLibs )
|
||||
if( NOT PYTHONLIBS_FOUND )
|
||||
tde_message_fatal( "Python is required, but was not found on your system" )
|
||||
endif( NOT PYTHONLIBS_FOUND )
|
||||
|
||||
if( "${PYTHON_VERSION_STRING}" VERSION_LESS "3.0" )
|
||||
set( KIG_Python_init "initkig"
|
||||
CACHE STRING "KIG: Init function for python-boost" )
|
||||
else( )
|
||||
set( KIG_Python_init "PyInit_kig"
|
||||
CACHE STRING "KIG: Init function for python-boost" )
|
||||
endif( )
|
||||
|
||||
endif( )
|
||||
|
||||
|
||||
##### check for Doxygen
|
||||
|
||||
if( BUILD_DOC AND BUILD_KIG )
|
||||
find_program( DOXYGEN_BINARY NAMES doxygen )
|
||||
if( NOT DOXYGEN_BINARY )
|
||||
tde_message_fatal( "Doxygen is required to build Kig scripting api documentation, but was not found on your system" )
|
||||
endif( )
|
||||
endif( )
|
||||
|
||||
|
||||
##### check for boost
|
||||
|
||||
if( BUILD_KIG OR BUILD_KBRUCH )
|
||||
|
||||
find_package( Boost )
|
||||
if( NOT Boost_FOUND )
|
||||
tde_message_fatal( "Boost is required, but was not found on your system" )
|
||||
endif( NOT Boost_FOUND )
|
||||
|
||||
endif( BUILD_KIG OR BUILD_KBRUCH )
|
@ -0,0 +1,31 @@
|
||||
##### desktop files
|
||||
|
||||
install(
|
||||
FILES languages.desktop
|
||||
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Languages
|
||||
RENAME .directory
|
||||
)
|
||||
|
||||
install(
|
||||
FILES mathematics.desktop
|
||||
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Mathematics
|
||||
RENAME .directory
|
||||
)
|
||||
|
||||
install(
|
||||
FILES science.desktop
|
||||
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Science
|
||||
RENAME .directory
|
||||
)
|
||||
|
||||
install(
|
||||
FILES tools.desktop
|
||||
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Tools
|
||||
RENAME .directory
|
||||
)
|
||||
|
||||
install(
|
||||
FILES miscellaneous.desktop
|
||||
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Miscellaneous
|
||||
RENAME .directory
|
||||
)
|
@ -0,0 +1,13 @@
|
||||
add_subdirectory( src )
|
||||
add_subdirectory( images )
|
||||
add_subdirectory( icons )
|
||||
add_subdirectory( sounds )
|
||||
add_subdirectory( fonts )
|
||||
|
||||
|
||||
##### other data
|
||||
|
||||
install(
|
||||
FILES README.packagers
|
||||
DESTINATION ${DATA_INSTALL_DIR}/blinken
|
||||
)
|
@ -0,0 +1,4 @@
|
||||
install(
|
||||
FILES steve.ttf
|
||||
DESTINATION ${DATA_INSTALL_DIR}/blinken/fonts
|
||||
)
|
@ -0,0 +1 @@
|
||||
tde_install_icons( blinken )
|
@ -0,0 +1,6 @@
|
||||
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
|
||||
|
||||
install(
|
||||
FILES ${_pics}
|
||||
DESTINATION ${DATA_INSTALL_DIR}/blinken/images
|
||||
)
|
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
Graphics by Danny Allen (danny@dannyallen.co.uk)
|
||||
Packaged 5th August 2005
|
||||
|
||||
Included here are the cleaned-up SVG sources from my creation of the blinKen graphics.
|
||||
I have packaged them up for future reference and modification.
|
||||
|
||||
Enjoy!
|
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 65 KiB |
@ -0,0 +1,6 @@
|
||||
file( GLOB _wavs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.wav )
|
||||
|
||||
install(
|
||||
FILES ${_wavs}
|
||||
DESTINATION ${DATA_INSTALL_DIR}/blinken/sounds
|
||||
)
|
@ -0,0 +1,51 @@
|
||||
include_directories(
|
||||
${CMAKE_BINARY_DIR}
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${TDE_INCLUDE_DIR}
|
||||
${TQT_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
link_directories(
|
||||
${TQT_LIBRARY_DIRS}
|
||||
${TDE_LIB_DIR}
|
||||
)
|
||||
|
||||
|
||||
##### blinken (executable)
|
||||
|
||||
tde_add_executable( blinken AUTOMOC
|
||||
|
||||
SOURCES
|
||||
main.cpp
|
||||
blinken.cpp
|
||||
artsplayer.cpp
|
||||
blinkengame.cpp
|
||||
number.cpp
|
||||
highscoredialog.cpp
|
||||
counter.cpp
|
||||
fontutils.cpp
|
||||
fontchecker.cpp
|
||||
button.cpp
|
||||
settings.kcfgc
|
||||
LINK
|
||||
tdecore-shared
|
||||
tdeui-shared
|
||||
tdeio-shared
|
||||
artskde-shared
|
||||
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
|
||||
##### other data
|
||||
|
||||
install(
|
||||
FILES blinken.desktop
|
||||
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||
)
|
||||
|
||||
install(
|
||||
FILES blinken.kcfg
|
||||
DESTINATION ${KCFG_INSTALL_DIR}
|
||||
)
|
@ -0,0 +1,23 @@
|
||||
#define VERSION "@VERSION@"
|
||||
|
||||
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
|
||||
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
|
||||
|
||||
// blinken and kanagram can build without aRts support.
|
||||
#cmakedefine WITHOUT_ARTS 1
|
||||
|
||||
// Defined to 1 if you have ocaml/facile.
|
||||
#cmakedefine HAVE_FACILE 1
|
||||
|
||||
// Define the version for the kig app.
|
||||
#define KIGVERSION "0.10.7"
|
||||
|
||||
// Define the Python interpreter (python2 vs python3)
|
||||
#cmakedefine KIG_Python_init @KIG_Python_init@
|
||||
|
||||
// Defined to 1 if you have <linux/videodev2.h> header file.
|
||||
#cmakedefine HAVE_LINUX_VIDEODEV2_H 1
|
@ -0,0 +1,21 @@
|
||||
add_subdirectory( man )
|
||||
|
||||
tde_conditional_add_subdirectory( BUILD_BLINKEN blinken )
|
||||
tde_conditional_add_subdirectory( BUILD_KALZIUM kalzium )
|
||||
tde_conditional_add_subdirectory( BUILD_KANAGRAM kanagram )
|
||||
tde_conditional_add_subdirectory( BUILD_KBRUCH kbruch )
|
||||
tde_conditional_add_subdirectory( BUILD_KEDUCA keduca )
|
||||
tde_conditional_add_subdirectory( BUILD_KGEOGRAPHY kgeography )
|
||||
tde_conditional_add_subdirectory( BUILD_KHANGMAN khangman )
|
||||
tde_conditional_add_subdirectory( BUILD_KIG kig )
|
||||
tde_conditional_add_subdirectory( BUILD_KITEN kiten )
|
||||
tde_conditional_add_subdirectory( BUILD_KLATIN klatin )
|
||||
tde_conditional_add_subdirectory( BUILD_KLETTRES klettres )
|
||||
tde_conditional_add_subdirectory( BUILD_KMPLOT kmplot )
|
||||
tde_conditional_add_subdirectory( BUILD_KPERCENTAGE kpercentage )
|
||||
tde_conditional_add_subdirectory( BUILD_KSTARS kstars )
|
||||
tde_conditional_add_subdirectory( BUILD_KTOUCH ktouch )
|
||||
tde_conditional_add_subdirectory( BUILD_KTURTLE kturtle )
|
||||
tde_conditional_add_subdirectory( BUILD_KVERBOS kverbos )
|
||||
tde_conditional_add_subdirectory( BUILD_KVOCTRAIN kvoctrain )
|
||||
tde_conditional_add_subdirectory( BUILD_KWORDQUIZ kwordquiz )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION blinken )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kalzium )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kanagram )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kbruch )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION keduca )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kgeography )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION khangman )
|
@ -0,0 +1,3 @@
|
||||
add_subdirectory( scripting-api )
|
||||
|
||||
tde_create_handbook( DESTINATION kig )
|
@ -0,0 +1,18 @@
|
||||
set( top_srcdir ${CMAKE_SOURCE_DIR} )
|
||||
set( srcdir ${CMAKE_CURRENT_SOURCE_DIR} )
|
||||
|
||||
configure_file( Doxyfile.scripting-api.in Doxyfile.scripting-api @ONLY )
|
||||
|
||||
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
|
||||
file( COPY ${_pics} DESTINATION ${CMAKE_CURRENT_BINARY_DIR} )
|
||||
|
||||
add_custom_target( kig-scripting-apidox ALL
|
||||
COMMAND ${DOXYGEN_BINARY} Doxyfile.scripting-api
|
||||
COMMENT "Build Kig scripting-api documentation"
|
||||
)
|
||||
|
||||
install(
|
||||
DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build/html/
|
||||
DESTINATION ${HTML_INSTALL_DIR}/en/kig/scripting-api
|
||||
PATTERN "${CMAKE_CURRENT_BINARY_DIR}/build/html/*"
|
||||
)
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kiten )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION klatin )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION klettres )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kmplot )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kpercentage )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kstars )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION ktouch )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kturtle )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kverbos )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kvoctrain )
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION kwordquiz )
|
@ -0,0 +1,20 @@
|
||||
tde_conditional_add_subdirectory( BUILD_BLINKEN blinken )
|
||||
tde_conditional_add_subdirectory( BUILD_KALZIUM kalzium )
|
||||
tde_conditional_add_subdirectory( BUILD_KANAGRAM kanagram )
|
||||
tde_conditional_add_subdirectory( BUILD_KBRUCH kbruch )
|
||||
tde_conditional_add_subdirectory( BUILD_KEDUCA keduca )
|
||||
tde_conditional_add_subdirectory( BUILD_KGEOGRAPHY kgeography )
|
||||
tde_conditional_add_subdirectory( BUILD_KHANGMAN khangman )
|
||||
tde_conditional_add_subdirectory( BUILD_KIG kig )
|
||||
tde_conditional_add_subdirectory( BUILD_KITEN kiten )
|
||||
tde_conditional_add_subdirectory( BUILD_KLATIN klatin )
|
||||
tde_conditional_add_subdirectory( BUILD_KLETTRES klettres )
|
||||
tde_conditional_add_subdirectory( BUILD_KMPLOT kmplot )
|
||||
tde_conditional_add_subdirectory( BUILD_KPERCENTAGE kpercentage )
|
||||
tde_conditional_add_subdirectory( BUILD_KSTARS indi )
|
||||
tde_conditional_add_subdirectory( BUILD_KSTARS kstars )
|
||||
tde_conditional_add_subdirectory( BUILD_KTOUCH ktouch )
|
||||
tde_conditional_add_subdirectory( BUILD_KTURTLE kturtle )
|
||||
tde_conditional_add_subdirectory( BUILD_KVERBOS kverbos )
|
||||
tde_conditional_add_subdirectory( BUILD_KVOCTRAIN kvoctrain )
|
||||
tde_conditional_add_subdirectory( BUILD_KWORDQUIZ kwordquiz )
|
@ -0,0 +1,5 @@
|
||||
INSTALL(
|
||||
FILES blinken.1
|
||||
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||
COMPONENT doc
|
||||
)
|
@ -0,0 +1,52 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH BLINKEN 1 "December 13, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
blinken \- electronic memory game for TDE
|
||||
.SH SYNOPSIS
|
||||
.B blinken
|
||||
.RI "[ " generic-options " ]"
|
||||
.SH DESCRIPTION
|
||||
\fBBlinken\fP is based on an electronic game released in 1978 called
|
||||
``Simon Says'', which challenges players to remember sequences of
|
||||
increasing length. On the face of the device, there are 4 different
|
||||
color buttons, each with its own distinctive sound. These buttons
|
||||
light up randomly, creating the sequence that the player must then
|
||||
recall. If the player is successful in remembering the sequence of
|
||||
lights in the correct order, they advance to the next stage, where an
|
||||
identical sequence with one extra step is presented.
|
||||
.PP
|
||||
This application is part of the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
For a full summary of options, run \fIblinken \-\-help\fP.
|
||||
.SH SEE ALSO
|
||||
Full user documentation is available through the TDE Help Centre.
|
||||
You can also enter the URL
|
||||
\fIhelp:/blinken/\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/blinken/\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/blinken/\fP.
|
||||
.SH AUTHOR
|
||||
Blinken was written by Albert Astals Cid <tsdgeos@terra.es> and
|
||||
Danny Allen <danny@dannyallen.co.uk>.
|
||||
.br
|
||||
This manual page was prepared by Daniel Schepler <schepler@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,17 @@
|
||||
INSTALL(
|
||||
FILES
|
||||
celestrongps.1
|
||||
indiserver.1
|
||||
lx200classic.1
|
||||
temma.1
|
||||
lx200_16.1
|
||||
lx200generic.1
|
||||
v4ldriver.1
|
||||
fliccd.1
|
||||
lx200autostar.1
|
||||
lx200gps.1
|
||||
v4lphilips.1
|
||||
|
||||
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||
COMPONENT doc
|
||||
)
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH CELESTRONGPS 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
celestrongps \- Celestron GPS driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B celestrongps
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBcelestrongps\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH FLICCD 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
fliccd \- Finger Lakes Instruments CCD driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B v4ldriver
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBfliccd\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,123 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH INDISERVER 1 "October 16, 2004"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
indiserver \- INDI server for telescope control under KStars
|
||||
.SH SYNOPSIS
|
||||
.B indiserver
|
||||
[ \fB\-p\fP \fIport\fP ]
|
||||
[ \fB\-r\fP \fIattempts\fP ]
|
||||
[ \fB\-vv\fP ]
|
||||
\fIdriver\fP [ \fIdriver\fP ... ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBindiserver\fP is a server that sits between the
|
||||
KStars user interface and the low-level hardware drivers.
|
||||
.PP
|
||||
The INDI server is a network server, in that either local or remote clients
|
||||
may connect to it to control astronomical instruments. The INDI server must
|
||||
be running on the machine that is physically connected to the
|
||||
astronomical instruments.
|
||||
.PP
|
||||
Note that there is no need for you to run the INDI server directly. Using
|
||||
the KStars device manager, you can set up astronomical instruments and start
|
||||
or stop the INDI server all from within KStars.
|
||||
.PP
|
||||
You may however choose to run the INDI server manually from the command
|
||||
line. In this case you must pass the names of one or more drivers for
|
||||
individual astronomical instruments. The current list of available
|
||||
drivers is:
|
||||
.PP
|
||||
.RS
|
||||
celestrongps (Celestron GPS)
|
||||
.br
|
||||
fliccd (Finger Lakes Instruments CCD)
|
||||
.br
|
||||
lx200_16 (LX200 16")
|
||||
.br
|
||||
lx200autostar (LX200 Autostar)
|
||||
.br
|
||||
lx200classic (LX200 Classic)
|
||||
.br
|
||||
lx200generic (LX200 Generic)
|
||||
.br
|
||||
lx200gps (LX200 GPS)
|
||||
.br
|
||||
temma (Temma Takahashi)
|
||||
.br
|
||||
v4ldriver (Video4Linux Generic)
|
||||
.br
|
||||
v4lphilips (Philips Webcam)
|
||||
.RE
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-p\fP \fIport\fP
|
||||
Specify the port to listen on (defaults to 7624).
|
||||
.TP
|
||||
\fB\-r\fP \fIattempts\fP
|
||||
Specify the maximum number of restart attempts for each driver (defaults to 2).
|
||||
.TP
|
||||
\fB\-vv\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH EXAMPLE
|
||||
To start an INDI server running an LX200 GPS driver and listening to
|
||||
connections on port 8000:
|
||||
.PP
|
||||
.RS
|
||||
\fIprompt$\fP indiserver -p 8000 lx200gps
|
||||
.RE
|
||||
.SH SEE ALSO
|
||||
.BR celestrongps (1),
|
||||
.BR fliccd (1),
|
||||
.BR lx200_16 (1),
|
||||
.BR lx200autostar (1),
|
||||
.BR lx200classic (1),
|
||||
.BR lx200generic (1),
|
||||
.BR lx200gps (1),
|
||||
.BR kstars (1),
|
||||
.BR temma (1),
|
||||
.BR v4ldriver (1),
|
||||
.BR v4lphilips (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH LX200_16 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
lx200_16 \- LX200 16" driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B lx200_16
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBlx200_16\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH LX200AUTOSTAR 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
lx200autostar \- LX200 Autostar driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B lx200autostar
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBlx200autostar\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH LX200CLASSIC 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
lx200classic \- LX200 Classic driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B lx200classic
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBlx200classic\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH LX200GENERIC 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
lx200generic \- LX200 Generic driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B lx200generic
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBlx200generic\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH LX200GPS 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
lx200gps \- LX200 GPS driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B lx200gps
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBlx200gps\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH TEMMA 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
temma \- Temma Takahashi driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B temma
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBtemma\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH V4LDRIVER 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
v4ldriver \- Video4Linux Generic driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B v4ldriver
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBv4ldriver\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||
KStars is a graphical desktop planetarium for TDE, and forms part of
|
||||
the official TDE edutainment module.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\fB\-v\fP
|
||||
Write more verbose output to stderr.
|
||||
.SH SEE ALSO
|
||||
.BR indiserver (1),
|
||||
.BR kstars (1).
|
||||
.PP
|
||||
The KStars Handbook contains detailed information on how to use INDI for
|
||||
telescope control. You can read this handbook in the TDE Help Centre.
|
||||
Alternatively you can enter the URL
|
||||
\fIhelp:/kstars/indi.html\fP
|
||||
directly into konqueror or you can run
|
||||
`\fIkhelpcenter help:/kstars/indi.html\fP'
|
||||
from the command-line.
|
||||
.PP
|
||||
If the TDE Help Centre is not installed then you can install the package
|
||||
\fItdeedu-doc-html\fP and read this documentation in HTML format from
|
||||
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
|
||||
.SH AUTHOR
|
||||
KStars was written by Jason Harris <jharris@30doradus.org>,
|
||||
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
|
||||
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
|
||||
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
|
||||
Vincent Jagot <vincent.jagot@free.fr> and
|
||||
Martin Piskernig <martin.piskernig@stuwo.at>.
|
||||
.br
|
||||
This manual page was prepared by Ben Burton <bab@debian.org>
|
||||
for the Debian GNU/Linux system (but may be used by others).
|
@ -0,0 +1,69 @@
|
||||
.\" Hey, EMACS: -*- nroff -*-
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH V4LPHILIPS 1 "March 16, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
v4lphilips \- Philips Webcam driver for INDI telescope control
|
||||
.SH SYNOPSIS
|
||||
.B v4lphilips
|
||||
[ \fB\-v\fP ]
|
||||
.SH DESCRIPTION
|
||||
KStars allows you to configure
|
||||
and control astronomical instruments such as telescopes and focusers via
|
||||
the INDI protocol. \fBv4lphilips\fP is a device driver for supporting
|
||||
particular types of external hardware.
|
||||
.PP
|
||||
You should normally not need to run this driver directly. Instead you
|
||||
should use KStars to configure and operate your astronomical instruments.
|
||||
Most operations can be found under the Devices menu within KStars.
|
||||
.PP
|
||||
KStars will start the INDI server internally, and the INDI server will
|
||||
in turn start this device driver.
|
||||
.PP
|
||||
Much more detailed information can be found in the KStars Handbook, as
|
||||
described below.
|
||||
.PP
|
||||