mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
Initial version.
Eterm is a color vt102 terminal emulator for X Window system. It supports pixmap and pseudo-transparent background. It also supports Japanese input with XIM (X Input Method) protocol. This version also adds BIG5 and GB support. Thanks to MANTANI Nobutaka <nobutaka@nobutaka.com> for the patch. Submitted by: Michael C. Wu <keichii@iteration.net>
This commit is contained in:
parent
50184a13e9
commit
e98970fcb5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36315
42
chinese/eterm/Makefile
Normal file
42
chinese/eterm/Makefile
Normal file
@ -0,0 +1,42 @@
|
||||
# New ports collection makefile for: eterm
|
||||
# Date created: 24th December 2000
|
||||
# Whom: Michael C. Wu
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= eterm
|
||||
PORTVERSION= 0.9
|
||||
CATEGORIES= chinese x11
|
||||
MASTER_SITES= ftp://ftp.enlightenment.org/pub/enlightenment/Eterm/ \
|
||||
ftp://ftp.dti.ad.jp/pub/X/enlightenment/Eterm/ \
|
||||
ftp://ftp.kddlabs.co.jp/.10/X11/window_manager/enlightenment/Eterm/ \
|
||||
ftp://ftp.sogang.ac.kr/.c/tools/X11/Enlightenment/Eterm/
|
||||
DISTNAME= Eterm-${PORTVERSION}
|
||||
|
||||
MAINTAINER= keichii@iteration.net
|
||||
|
||||
BUILD_DEPENDS= man2html:${PORTSDIR}/textproc/man2html
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_IMLIB= yes
|
||||
USE_LIBTOOL= yes
|
||||
CONFIGURE_ARGS= --enable-trans=imlib --enable-utmp --enable-multi-charset=kanji \
|
||||
--enable-xim --with-theme-update
|
||||
CONFIGURE_ENV= LIBS="-lxpg4"
|
||||
|
||||
MAN1= Eterm.1
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
post-install:
|
||||
@${CHMOD} 4711 ${PREFIX}/bin/Eterm
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${PREFIX}/share/doc/Eterm
|
||||
@${INSTALL_DATA} ${WRKSRC}/ReleaseNotes ${PREFIX}/share/doc/Eterm
|
||||
@${INSTALL_DATA} ${WRKSRC}/doc/Eterm.1.html ${PREFIX}/share/doc/Eterm
|
||||
@${INSTALL_DATA} ${WRKSRC}/doc/Eterm_reference.html ${PREFIX}/share/doc/Eterm
|
||||
@${INSTALL_DATA} ${WRKSRC}/doc/Eterm.tcap ${PREFIX}/share/doc/Eterm
|
||||
@${INSTALL_DATA} ${WRKSRC}/doc/Eterm.ti ${PREFIX}/share/doc/Eterm
|
||||
.endif
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
1
chinese/eterm/distinfo
Normal file
1
chinese/eterm/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (Eterm-0.9.tar.gz) = 73dff9c93da8393b906d2713bb2d480d
|
21
chinese/eterm/files/patch-ae
Normal file
21
chinese/eterm/files/patch-ae
Normal file
@ -0,0 +1,21 @@
|
||||
--- src/command.c.orig Mon Feb 7 22:20:41 2000
|
||||
+++ src/command.c Mon Feb 7 22:22:16 2000
|
||||
@@ -40,6 +40,8 @@
|
||||
#include "config.h"
|
||||
#include "feature.h"
|
||||
|
||||
+#undef HAVE_SAVED_UIDS
|
||||
+
|
||||
/* System Headers */
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
@@ -1560,6 +1562,9 @@
|
||||
# endif
|
||||
# if VTIME != VEOL
|
||||
tio->c_cc[VTIME] = 0;
|
||||
+# endif
|
||||
+# ifdef VSTATUS
|
||||
+ tio->c_cc[VSTATUS] = CSTATUS;
|
||||
# endif
|
||||
|
||||
/* input modes */
|
10
chinese/eterm/files/patch-ah
Normal file
10
chinese/eterm/files/patch-ah
Normal file
@ -0,0 +1,10 @@
|
||||
--- themes/Makefile.in.orig Wed Feb 2 05:36:43 2000
|
||||
+++ themes/Makefile.in Wed Feb 9 03:46:59 2000
|
||||
@@ -239,6 +239,7 @@
|
||||
$(CHMOD) 755 $(DESTDIR)$(pkgdatadir)/themes/$$i ; \
|
||||
$(CHMOD) 644 $(DESTDIR)$(pkgdatadir)/themes/$$i/???* ; \
|
||||
rm -f $(DESTDIR)$(pkgdatadir)/themes/$$i/theme.cfg.in ; \
|
||||
+ rm -f $(DESTDIR)$(pkgdatadir)/themes/$$i/theme.cfg.in.orig ; \
|
||||
else \
|
||||
echo "ALERT! Not overwriting $$i theme in $(DESTDIR)$(pkgdatadir)/themes. You will need to update this theme manually." ; \
|
||||
fi ; \
|
11
chinese/eterm/files/patch-ar
Normal file
11
chinese/eterm/files/patch-ar
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/Makefile.in.orig Mon Feb 7 21:50:25 2000
|
||||
+++ src/Makefile.in Mon Feb 7 21:51:29 2000
|
||||
@@ -120,7 +120,7 @@
|
||||
|
||||
|
||||
libEterm_la_DEPENDENCIES = $(top_builddir)/libmej/libmej.la feature.h
|
||||
-libEterm_la_LDFLAGS = -release $(VERSION)
|
||||
+libEterm_la_LDFLAGS = -version-info 9:9:9
|
||||
|
||||
bin_PROGRAMS = Eterm
|
||||
Eterm_SOURCES = main.c
|
11
chinese/eterm/files/patch-as
Normal file
11
chinese/eterm/files/patch-as
Normal file
@ -0,0 +1,11 @@
|
||||
--- libmej/Makefile.in.orig Mon Feb 7 21:52:12 2000
|
||||
+++ libmej/Makefile.in Mon Feb 7 21:52:44 2000
|
||||
@@ -120,7 +120,7 @@
|
||||
|
||||
INCLUDES = -I. -I.. -I$(includedir) -I$(prefix)/include
|
||||
|
||||
-libmej_la_LDFLAGS = -release $(VERSION)
|
||||
+libmej_la_LDFLAGS = -version-info 9:9:9
|
||||
|
||||
EXTRA_DIST = debug.h global.h mem.h strings.h strptime.h strptime.c
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
28
chinese/eterm/files/patch-at
Normal file
28
chinese/eterm/files/patch-at
Normal file
@ -0,0 +1,28 @@
|
||||
--- configure.orig Mon Feb 7 22:00:40 2000
|
||||
+++ configure Mon Feb 7 22:04:47 2000
|
||||
@@ -4835,16 +4835,16 @@
|
||||
|
||||
DEF_FONT_IDX=0
|
||||
MULTICHAR_ENCODING="eucj"
|
||||
- FONT0="fixed"
|
||||
- FONT1="8x16"
|
||||
- FONT2="9x18"
|
||||
- FONT3="12x24"
|
||||
- FONT4="13x26"
|
||||
+ FONT0="7x14"
|
||||
+ FONT1="a10"
|
||||
+ FONT2="r12"
|
||||
+ FONT3="8x16"
|
||||
+ FONT4="12x24"
|
||||
MFONT0="k14"
|
||||
- MFONT1="jiskan16"
|
||||
- MFONT2="jiskan18"
|
||||
- MFONT3="jiskan24"
|
||||
- MFONT4="jiskan26"
|
||||
+ MFONT1="k10"
|
||||
+ MFONT2="k12"
|
||||
+ MFONT3="kanji16"
|
||||
+ MFONT4="kanji24"
|
||||
elif test "$enableval" = "euc-kr" -o "$enableval" = "euckr"; then
|
||||
echo "$ac_t""euckr" 1>&6
|
||||
cat >> confdefs.h <<\EOF
|
17
chinese/eterm/files/patch-au
Normal file
17
chinese/eterm/files/patch-au
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/Eterm/theme.cfg.in.orig Mon Feb 7 21:54:05 2000
|
||||
+++ themes/Eterm/theme.cfg.in Mon Feb 7 21:55:37 2000
|
||||
@@ -248,10 +248,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method kinput2
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-av
Normal file
17
chinese/eterm/files/patch-av
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/auto/theme.cfg.in.orig Mon Feb 7 22:07:25 2000
|
||||
+++ themes/auto/theme.cfg.in Mon Feb 7 22:08:35 2000
|
||||
@@ -248,10 +248,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method kinput2
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-aw
Normal file
17
chinese/eterm/files/patch-aw
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/cEterm/theme.cfg.in.orig Mon Feb 7 22:09:32 2000
|
||||
+++ themes/cEterm/theme.cfg.in Mon Feb 7 22:10:07 2000
|
||||
@@ -247,10 +247,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method kinput2
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-ax
Normal file
17
chinese/eterm/files/patch-ax
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/chooser/theme.cfg.in.orig Mon Feb 7 22:10:53 2000
|
||||
+++ themes/chooser/theme.cfg.in Mon Feb 7 22:11:31 2000
|
||||
@@ -248,10 +248,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method kinput2
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-ay
Normal file
17
chinese/eterm/files/patch-ay
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/emacs/theme.cfg.in.orig Mon Feb 7 22:12:28 2000
|
||||
+++ themes/emacs/theme.cfg.in Mon Feb 7 22:12:49 2000
|
||||
@@ -248,10 +248,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method kinput2
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-az
Normal file
17
chinese/eterm/files/patch-az
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/irc/theme.cfg.in.orig Mon Feb 7 22:13:53 2000
|
||||
+++ themes/irc/theme.cfg.in Mon Feb 7 22:14:09 2000
|
||||
@@ -250,10 +250,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method Ami
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-ba
Normal file
17
chinese/eterm/files/patch-ba
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/mutt/theme.cfg.in.orig Mon Feb 7 22:14:53 2000
|
||||
+++ themes/mutt/theme.cfg.in Mon Feb 7 22:15:08 2000
|
||||
@@ -194,10 +194,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method Ami
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
17
chinese/eterm/files/patch-bb
Normal file
17
chinese/eterm/files/patch-bb
Normal file
@ -0,0 +1,17 @@
|
||||
--- themes/trans/theme.cfg.in.orig Mon Feb 7 22:29:10 2000
|
||||
+++ themes/trans/theme.cfg.in Mon Feb 7 22:29:27 2000
|
||||
@@ -248,10 +248,10 @@
|
||||
# The XIM support options.
|
||||
# input_method: set the name of your favorate input method program
|
||||
# preedit_type: OverTheSpot or OffTheSpot or Root
|
||||
-# begin xim
|
||||
-# input_method Ami
|
||||
-# preedit_type OverTheSpot
|
||||
-# end xim
|
||||
+ begin xim
|
||||
+ input_method kinput2
|
||||
+ preedit_type OverTheSpot
|
||||
+ end xim
|
||||
|
||||
# Boolean variables. The values can be "1", "on", or "true" for TRUE, or "0",
|
||||
# "off", or "false" for FALSE.
|
11
chinese/eterm/files/patch-bc
Normal file
11
chinese/eterm/files/patch-bc
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/startup.c.orig Mon Feb 7 22:24:54 2000
|
||||
+++ src/startup.c Mon Feb 7 22:24:57 2000
|
||||
@@ -29,6 +29,8 @@
|
||||
#include "config.h"
|
||||
#include "feature.h"
|
||||
|
||||
+#define NEED_LINUX_HACK 1
|
||||
+
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
37
chinese/eterm/files/patch-zh
Normal file
37
chinese/eterm/files/patch-zh
Normal file
@ -0,0 +1,37 @@
|
||||
--- src/options.c.orig Tue Jan 18 22:17:19 2000
|
||||
+++ src/options.c Sun Dec 24 10:56:22 2000
|
||||
@@ -362,7 +362,7 @@
|
||||
OPT_LONG("mfont2", "multichar font 2", &rs_mfont[2]),
|
||||
OPT_LONG("mfont3", "multichar font 3", &rs_mfont[3]),
|
||||
OPT_LONG("mfont4", "multichar font 4", &rs_mfont[4]),
|
||||
- OPT_LONG("mencoding", "multichar encoding mode (eucj or sjis or euckr)",
|
||||
+ OPT_LONG("mencoding", "multichar encoding mode (eucj or sjis or euckr or big5 or gb)",
|
||||
&rs_multichar_encoding),
|
||||
#endif /* MULTI_CHARSET */
|
||||
#ifdef USE_XIM
|
||||
@@ -2794,12 +2794,13 @@
|
||||
if (rs_multichar_encoding != NULL) {
|
||||
if (BEG_STRCASECMP(rs_multichar_encoding, "eucj")
|
||||
&& BEG_STRCASECMP(rs_multichar_encoding, "sjis")
|
||||
- && BEG_STRCASECMP(rs_multichar_encoding, "euckr")) {
|
||||
+ && BEG_STRCASECMP(rs_multichar_encoding, "euckr")
|
||||
+ && BEG_STRCASECMP(rs_multichar_encoding, "big5")
|
||||
+ && BEG_STRCASECMP(rs_multichar_encoding, "gb")) {
|
||||
print_error("Parse error in file %s, line %lu: Invalid multichar encoding mode \"%s\"",
|
||||
file_peek_path(), file_peek_line(), rs_multichar_encoding);
|
||||
return;
|
||||
}
|
||||
- set_multichar_encoding(rs_multichar_encoding);
|
||||
} else {
|
||||
print_error("Parse error in file %s, line %lu: Invalid parameter list \"\" for attribute encoding",
|
||||
file_peek_path(), file_peek_line());
|
||||
@@ -3248,6 +3249,9 @@
|
||||
}
|
||||
}
|
||||
#ifdef MULTI_CHARSET
|
||||
+ if (rs_multichar_encoding) {
|
||||
+ set_multichar_encoding(rs_multichar_encoding);
|
||||
+ }
|
||||
if (rs_mfont[i]) {
|
||||
if (def_font_idx == 0) {
|
||||
eterm_font_add(&etmfonts, rs_mfont[i], i);
|
1
chinese/eterm/pkg-comment
Normal file
1
chinese/eterm/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
X11 terminal emulator that supports Chinese GB/BIG-5
|
7
chinese/eterm/pkg-descr
Normal file
7
chinese/eterm/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
Eterm is a color vt102 terminal emulator for X Window system.
|
||||
It supports pixmap and pseudo-transparent background. It also
|
||||
supports Japanese input with XIM (X Input Method) protocol.
|
||||
|
||||
WWW: http://eterm.sourceforge.net/
|
||||
--
|
||||
Michael C. Wu <keichii@iteration.net>
|
11
chinese/eterm/pkg-message
Normal file
11
chinese/eterm/pkg-message
Normal file
@ -0,0 +1,11 @@
|
||||
-----------------------------------------------------------------------------
|
||||
If you want to input Chinese, use the following command:
|
||||
Eterm --font <English font> --mfont <Chinese font> --mencoding <encoding> \
|
||||
--input-method xcin
|
||||
|
||||
Example:
|
||||
Eterm --font "-*-medium-r-normal-*-*-160-*-*-c-*-iso8859-1" \
|
||||
--mfont kc15f --mencoding big5 --input-method xcin \
|
||||
--preedit-type OverTheSpot -8 -g 80x24 -B next -O \
|
||||
--cmod 200 --scrollbar-width 10 --scrollbar-popup
|
||||
-----------------------------------------------------------------------------
|
98
chinese/eterm/pkg-plist
Normal file
98
chinese/eterm/pkg-plist
Normal file
@ -0,0 +1,98 @@
|
||||
bin/Esetroot
|
||||
bin/Etbg
|
||||
bin/Eterm
|
||||
@exec chmod 4711 %D/bin/Eterm
|
||||
bin/Ettable
|
||||
bin/Etcolors
|
||||
bin/Etwinop
|
||||
lib/libEterm.a
|
||||
lib/libEterm.so
|
||||
lib/libEterm.so.9
|
||||
lib/libmej.a
|
||||
lib/libmej.so
|
||||
lib/libmej.so.9
|
||||
share/Eterm/pix/014.jpg
|
||||
share/Eterm/pix/40.jpg
|
||||
share/Eterm/pix/backwave.jpg
|
||||
share/Eterm/pix/bar_horizontal_1.png
|
||||
share/Eterm/pix/bar_horizontal_2.png
|
||||
share/Eterm/pix/bar_horizontal_3.png
|
||||
share/Eterm/pix/bar_vertical_1.png
|
||||
share/Eterm/pix/bar_vertical_2.png
|
||||
share/Eterm/pix/bar_vertical_3.png
|
||||
share/Eterm/pix/blackstone.jpg
|
||||
share/Eterm/pix/button_arrow_down_1.png
|
||||
share/Eterm/pix/button_arrow_down_2.png
|
||||
share/Eterm/pix/button_arrow_down_3.png
|
||||
share/Eterm/pix/button_arrow_up_1.png
|
||||
share/Eterm/pix/button_arrow_up_2.png
|
||||
share/Eterm/pix/button_arrow_up_3.png
|
||||
share/Eterm/pix/circuit.jpg
|
||||
share/Eterm/pix/fourthday.jpg
|
||||
share/Eterm/pix/gaia.jpg
|
||||
share/Eterm/pix/galleon.jpg
|
||||
share/Eterm/pix/menu1.png
|
||||
share/Eterm/pix/menu2.png
|
||||
share/Eterm/pix/menu3.png
|
||||
share/Eterm/pix/nebula.jpg
|
||||
share/Eterm/pix/night_of_the_dragon.jpg
|
||||
share/Eterm/pix/pixmaps.list
|
||||
share/Eterm/pix/scaled-pixmaps.list
|
||||
share/Eterm/pix/tiled-pixmaps.list
|
||||
share/Eterm/themes/Eterm/menus.cfg
|
||||
share/Eterm/themes/Eterm/pixmaps.list
|
||||
share/Eterm/themes/Eterm/scaled-pixmaps.list
|
||||
share/Eterm/themes/Eterm/theme.cfg
|
||||
share/Eterm/themes/Eterm/tiled-pixmaps.list
|
||||
share/Eterm/themes/auto/menus.cfg
|
||||
share/Eterm/themes/auto/pixmaps.list
|
||||
share/Eterm/themes/auto/scaled-pixmaps.list
|
||||
share/Eterm/themes/auto/theme.cfg
|
||||
share/Eterm/themes/auto/tiled-pixmaps.list
|
||||
share/Eterm/themes/cEterm/menus.cfg
|
||||
share/Eterm/themes/cEterm/pixmaps.list
|
||||
share/Eterm/themes/cEterm/scaled-pixmaps.list
|
||||
share/Eterm/themes/cEterm/theme.cfg
|
||||
share/Eterm/themes/cEterm/tiled-pixmaps.list
|
||||
share/Eterm/themes/chooser/menus.cfg
|
||||
share/Eterm/themes/chooser/pixmaps.list
|
||||
share/Eterm/themes/chooser/scaled-pixmaps.list
|
||||
share/Eterm/themes/chooser/theme.cfg
|
||||
share/Eterm/themes/chooser/tiled-pixmaps.list
|
||||
share/Eterm/themes/emacs/menus.cfg
|
||||
share/Eterm/themes/emacs/pixmaps.list
|
||||
share/Eterm/themes/emacs/scaled-pixmaps.list
|
||||
share/Eterm/themes/emacs/theme.cfg
|
||||
share/Eterm/themes/emacs/tiled-pixmaps.list
|
||||
share/Eterm/themes/irc/menus.cfg
|
||||
share/Eterm/themes/irc/pixmaps.list
|
||||
share/Eterm/themes/irc/scaled-pixmaps.list
|
||||
share/Eterm/themes/irc/theme.cfg
|
||||
share/Eterm/themes/irc/tiled-pixmaps.list
|
||||
share/Eterm/themes/mutt/menus.cfg
|
||||
share/Eterm/themes/mutt/pixmaps.list
|
||||
share/Eterm/themes/mutt/scaled-pixmaps.list
|
||||
share/Eterm/themes/mutt/theme.cfg
|
||||
share/Eterm/themes/mutt/tiled-pixmaps.list
|
||||
share/Eterm/themes/trans/menus.cfg
|
||||
share/Eterm/themes/trans/pixmaps.list
|
||||
share/Eterm/themes/trans/scaled-pixmaps.list
|
||||
share/Eterm/themes/trans/theme.cfg
|
||||
share/Eterm/themes/trans/tiled-pixmaps.list
|
||||
share/doc/Eterm/Eterm.1.html
|
||||
share/doc/Eterm/Eterm_reference.html
|
||||
share/doc/Eterm/Eterm.tcap
|
||||
share/doc/Eterm/Eterm.ti
|
||||
share/doc/Eterm/ReleaseNotes
|
||||
@dirrm share/Eterm/themes/trans
|
||||
@dirrm share/Eterm/themes/mutt
|
||||
@dirrm share/Eterm/themes/irc
|
||||
@dirrm share/Eterm/themes/emacs
|
||||
@dirrm share/Eterm/themes/chooser
|
||||
@dirrm share/Eterm/themes/cEterm
|
||||
@dirrm share/Eterm/themes/auto
|
||||
@dirrm share/Eterm/themes/Eterm
|
||||
@dirrm share/Eterm/themes
|
||||
@dirrm share/Eterm/pix
|
||||
@dirrm share/Eterm
|
||||
@dirrm share/doc/Eterm
|
Loading…
Reference in New Issue
Block a user