Skip to content

Commit 2169857

Browse files
author
lav
committed
xrus 1.10.0 import
0 parents  commit 2169857

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+15535
-0
lines changed

COPYING

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

FAQ

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Q: I've installed xruskb and it works, but I don't see russian letters.
2+
A: You have to tune your applications to use proper russian fonts.
3+
See Cyrillic-HOWTO at ftp://sunsite.unc.edu/pub/Linux/docs/HOWTO
4+
(it is not only for linux)
5+
6+
Q:

INSTALL-english

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
* On some systems you may also want to change default
2+
background or delete it from Xrus.ad (e.g. on Dec Alpha)
3+
4+
* Run ./configure. It should find Motif library and headers.
5+
If Motif is not found, configure looks for Xaw library. If none
6+
of the libraries were found, xrus can still be compiled, but
7+
you would lose the GUI. If you have Motif but want to save some
8+
memory, try 'configure --without-motif --without-Xaw'. You will
9+
not see the icon then, though.
10+
11+
* Run make. If all went ok, type `make install'. You may
12+
also want to copy the file Xrus.ad to system app-defaults
13+
directory, renaming it to Xrus, although the resources are
14+
compiled in.
15+
16+
* If you have troubles compiling the program, feel free to
17+
write to me ([email protected]). Please include your operating
18+
system type/version, the compiler you used, precise error
19+
messages.

INSTALL-koi8

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
* �� ��������� �������� ����� ������������ �������� ���
2+
������ ������ *background � Xrus.ad (�������� � DigitalUnix).
3+
4+
* ��������� ./configure. ���� ������ ������ ����� ����������
5+
Motif � �� �������� �����. ���� Motif �� ��� ������,
6+
����������� ������� ���������� Xaw. ���� ��� ���� �� ����
7+
�������, Xrus ��� ����� ��������������, �� �� ������ �� �����
8+
������.
9+
���� �� ������ �������� ������� ����, � ����� �����������
10+
������������� Xrus, ���������� ./configure --with-Xaw ���
11+
./configure --without-motif. ���� �� ������ ���������� ������ �
12+
��� �� ����� ������ �� ������, ��������� ��� ���������� �
13+
������� ./configure --without-motif --without-Xaw.
14+
Xrus ������������� � Lesstif'�� (LGPL ���� Motif'a).
15+
�������� �������� ������ ������� � ������ Lesstif'� 0.82.
16+
Lesstif ����� ����� �� ������
17+
18+
ftp://ftp.lesstif.org/pub/hungry/lesstif/lesstif-*.tar.gz
19+
20+
* ��������� make. ���� ���������� ���� ��������, �� ������
21+
����������� ��������� xrus. ����� ����� ������� make install
22+
��� ������� ����������� xrus � ��������� �������. ���� ��
23+
������ ������ ������� xrus, ���������� ����� Xrus.ad �
24+
��������� ������� app-defaults ��� ������ 'Xrus'. ��� ��
25+
�����������, ��� ��� ��� ����������� ������� �������� �
26+
����������� ����. ���������� �� ����� ������ ������ �����
27+
Xrus.ad � ��������� app-defaults ��� � �������� ��������.
28+
29+
* ���� ��� �� ������� �������������� ��������� ��� ��
30+
���������� ������, ������ ��� �� ������ [email protected].
31+
������� ��� ������������ �������, �� ������, ��������� ��
32+
�������.

Makefile.am

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
SUBDIRS = icons keymaps xmodmap
2+
3+
bin_PROGRAMS = xrus
4+
5+
xrus_SOURCES = xrus.c props.c menu.c menu.h xrus.h props.h keycomb.c keycomb.h\
6+
altmap.c altmap.h xalloca.h kbdstate.c kbdstate.h
7+
8+
xrus_LDADD = $(TOOLKIT_LIBS)\
9+
-lXmu -lXt -lXext -lX11 $(X_PRE_LIBS) $(X_LIBS) $(X_EXTRA_LIBS)\
10+
defres.o @ALLOCA@
11+
12+
CPPFLAGS = $(X_CFLAGS)
13+
INCLUDES = $(TOOLKIT_INCLUDE)
14+
15+
defres.c: Xrus.ad mkdefres.awk
16+
$(AWK) -f $(srcdir)/mkdefres.awk < $(srcdir)/Xrus.ad > $@
17+
18+
CLEANFILES = defres.c
19+
20+
man_MANS = xrus.1
21+
22+
EXTRA_DIST = INSTALL-koi8 INSTALL-english xrus.doc-koi8 xrus.doc-english\
23+
Xrus.ad mkdefres.awk $(man_MANS) xruskb.spec xruskb.lsm FAQ\
24+
README.WindowMaker Xrus.wmaker
25+
26+
AUTOMAKE_OPTIONS = foreign
27+
28+
confpaths.h: Makefile
29+
echo "#define BINDIR \"$(bindir)\"" > $@
30+
echo "#define PKGDATADIR \"$(pkgdatadir)\"" >> $@
31+
32+
DISTCLEANFILES = confpaths.h
33+
34+
xrus.o: confpaths.h

0 commit comments

Comments
 (0)