File: README.rst

package info (click to toggle)
qterm 1%3A0.7.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,992 kB
  • sloc: cpp: 41,785; ansic: 422; xml: 122; makefile: 11
file content (109 lines) | stat: -rw-r--r-- 2,878 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
QTerm --- BBS client based on Qt
================================

QTerm is a BBS (Bulletin Board System) client program. It runs on GNU/Linux,
OS X and Windows thanks to the cross-platform framework Qt.


History
-------
Back in year 2000, as a desktop alternative, Linux started to get popular 
among enthusiasts. People need the software they used to have on Windows. 
A BBS client was one of those that university students wanted most.

In Nov.2 2000, kafa and smartfish released miniTerm at smth (now newsmth) BBS.
It was an absolutly exciting experience to view BBS from its mini window.

In 2001, having different vision from being "mini", QTerm forked the code to
become a fully functional BBS client such as S-Term and CTerm.


Build
-----

The following dependencies must be met,

- A basic development environment

  - On Debian, the package is
    ::

      sudo aptitude install build-essentials

  - On Fedora, the package is
    ::

      sudo dnf install @"C Development Tools and Libraries"

- Qt 4.6+ or Qt 5.3+

  - On Debian, the packages are
    ::

      sudo aptitude install qt5-defaults qttools5-dev qttools5-dev-tools qtscript5-dev qtmultimedia5-dev

  - On Fedora, the packages are
    ::

      sudo dnf install qt5-devel

  - The installer from Qt is simple for macOS and Windows.

- CMake 2.8.11+

  - On Linux and macOS, the package is most probably *cmake*.

- OpenSSL 1.0+ (Optional)

  - On Debian, the package is *libssl-dev*.
  - On Fedora, the package is *openssl-devel*.
  - On macOS, install *openssl* via MacPorts or HomeBrew
  - On Windows, get the installer from https://slproweb.com/products/Win32OpenSSL.html

- DBus (Optional)
- Phonon (Optional)
- KWallet (Optional)

To build on Linux or macOS, ::

    # Create the build directory side by side to qterm source directory
    mkdir -p qterm-build && cd qterm-build
    # Using Qt4
    cmake ../qterm
    # Using Qt5
    cmake ../qterm -DQT5=YES
    # If your Qt is under non-standard location, specify the qmake program
    cmake ../qterm -DQT_QMAKE_EXECUTABLE=<path of qmake program>
    # Build
    make
    # Optionally create a binary package
    make package

To build on Windows, open the Visual Studio Developer Command Prompt, ::

    # Set PATH to include Qt binary directory
    set PATH=C:\Qt\5.7\msvc2015\bin;%PATH%
    # Create the build directory side by side to qterm source directory
    mdkir qterm-build
    # Using Qt4
    cmake ..\qterm -G "NMake Makefiles"
    # Using Qt5
    cmake ..\qterm -DQT5=YES -G "NMake Makefiles"
    # Build
    nmake
    # Optionally create an installer if NSIS is installed
    nmake package

Development
-----------
Repository is at https://github.com/qterm/qterm


License
-------
QTerm is released under GNU General Public License (refer to COPYRIGHT).


Credits
-------
Kudos to our users for their bug reports and suggestions.