summaryrefslogtreecommitdiff
path: root/x11/eterm
diff options
context:
space:
mode:
authorjlam <jlam>1999-10-28 00:31:57 +0000
committerjlam <jlam>1999-10-28 00:31:57 +0000
commite632c803dc39cf45b9b7feba9bd97b789614d541 (patch)
tree30050f210b66b27d5f79163ef6edcc4d78f5bca1 /x11/eterm
parentd370c18668a1dbbf5f80e0dcd1e8a2026a323d3e (diff)
downloadpkgsrc-e632c803dc39cf45b9b7feba9bd97b789614d541.tar.gz
* Update to eterm-0.8.9
* make COMMENT and DESCR a bit more descriptive * change MAINTAINER to packages@netbsd.org * Install Eterm as setuid root so that utmp logging functions correctly. This fixes PR#7365. Changes in 0.8.9: ----------------- - Support for scrolling with mouse wheels. - New --version switch to display compile-time configuration. - Tinting and shading have been sped up by about 30% thanks to Michael Pearson <alcaron@ozemail.com.au>. - Scrollbar type and width is now customizeable at compile-time *and* run-time. Support for NeXT-style scrollbars has also been added. - Three *major* bugs have been fixed. Tiled desktop images no longer cause crashes when tinting or shading. The resize crash bug has also been squished. The secure system() call replacement which was accidentally removed has been added back. - Ctrl-Button1 now grabs input focus. Ctrl-Button2 toggles the scrollbar on and off. Ctrl-Button3 toggles the menubar on and off. NOTE: If you used to disable the menubar by commenting out the loading of the menubar file, or loading a fake one (e.g., '-Mx' or '-M /dev/null'), don't. Simply add "off" to the end of the menu line (e.g., 'menu Eterm.menu off'), or use the new boolean command-line option --menubar (e.g., '--menubar off'). Then you can toggle the menubar using Ctrl-Button3 like you would expect. - Popup scrollbar support has been added. - New -D (--desktop) option for choosing a desktop to start on. Your window manager must be GNOME-compliant for this to work. See the documentation at http://www.gnome.org/devel/gnomewm/ for info on the _WIN_WORKSPACE property. - The Eterm Technical Reference has been completely rewritten. It is now an HTML document located in the doc/ directory. - Lots and lots and lots of new escape sequences. See the Technical Reference for details on them. - Oodles of small bug fixes, as always. :-) - Debugging output is now runtime configurable. Use the --debug option and supply a number. 0 (the default) gives no debugging output. 1-5 give increasingly more output, up to 5 (which I don't recommend using) which synchronizes X events (and slows things down bigtime). - You can now save your current Eterm settings from the menu. - New --app-keypad and --app-cursor options to set the startup mode for application/normal mode for the keypad and cursor keys. - Three new utilities in addition to Esetroot, all of which are located in the utils/ directory. Etbg is a tool for manipulating Eterm's background image on the fly. Etcolors.sh demonstrates all the different combinations of your current color settings. Etmenu.sh lets you send menu commands to Eterm's menubar subsystem without having to type the escape codes yourself. - Borderless Eterms now attempt to use the Window Manager to become borderless instead of bypassing it altogether.
Diffstat (limited to 'x11/eterm')
-rw-r--r--x11/eterm/Makefile41
-rw-r--r--x11/eterm/files/md54
-rw-r--r--x11/eterm/files/patch-sum8
-rw-r--r--x11/eterm/patches/patch-aa40
-rw-r--r--x11/eterm/patches/patch-ab30
-rw-r--r--x11/eterm/pkg/COMMENT2
-rw-r--r--x11/eterm/pkg/DESCR4
-rw-r--r--x11/eterm/pkg/PLIST177
8 files changed, 157 insertions, 149 deletions
diff --git a/x11/eterm/Makefile b/x11/eterm/Makefile
index 6231fc5dee1..ae273fb60ef 100644
--- a/x11/eterm/Makefile
+++ b/x11/eterm/Makefile
@@ -1,27 +1,38 @@
-# $NetBSD: Makefile,v 1.3 1999/04/06 14:58:50 agc Exp $
+# $NetBSD: Makefile,v 1.4 1999/10/28 00:31:57 jlam Exp $
-DISTNAME= Eterm-0.8.8
-PKGNAME= eterm-0.8.8
+DISTNAME= Eterm-0.8.9
+PKGNAME= eterm-0.8.9
CATEGORIES= x11
-MASTER_SITES= http://www.eterm.org/download/
-DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
- Eterm-bg-scale-1.tar.gz Eterm-bg-scale-2.tar.gz \
- Eterm-bg-tile.tar.gz
+MASTER_SITES= ftp://ftp.eterm.org/pub/Eterm/ \
+ ftp://alien.eterm.org/pub/Eterm/ \
+ ftp://ftp.themes.org/pub/enlightenment/eterm/ \
+ ftp://ftp.dti.ad.jp/pub/X/Eterm/
+DISTFILES= ${ETERM_SRCS} ${PIXMAP_FILES}
-MAINTAINER= root@garbled.net
+MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.eterm.org/
-DEPENDS+= imlib-1.9.4:../../graphics/imlib
+DEPENDS+= imlib-*:../../graphics/imlib
+
+EXTRACT_ONLY= ${ETERM_SRCS}
+ETERM_SRCS= ${DISTNAME}${EXTRACT_SUFX}
+PIXMAP_FILES= Eterm-bg-scale-1.tar.gz Eterm-bg-scale-2.tar.gz \
+ Eterm-bg-tile.tar.gz
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
USE_X11BASE= yes
USE_LIBTOOL= yes
+GNU_CONFIGURE= yes
post-extract:
- ${MV} ${WRKDIR}/Eterm/bg/scale/* ${WRKSRC}/bg/scale
- ${MV} ${WRKDIR}/Eterm/bg/tile/* ${WRKSRC}/bg/tile
- ${RM} -r ${WRKDIR}/Eterm
- ${CHMOD} -R o+r ${WRKSRC}
+ ${LN} -sf ${WRKSRC} ${WRKDIR}/Eterm
+.for FILE in ${PIXMAP_FILES}
+ cd ${WRKDIR}; ${PAX} -zrf ${DISTDIR}/${FILE}
+.endfor
+
+post-install:
+ # Make Eterm setuid root so that utmp logging functions correctly.
+ #
+ ${CHOWN} 0 ${PREFIX}/bin/Eterm
+ ${CHMOD} 4711 ${PREFIX}/bin/Eterm
.include "../../mk/bsd.pkg.mk"
diff --git a/x11/eterm/files/md5 b/x11/eterm/files/md5
index 3b4e3e01e21..00399ec472d 100644
--- a/x11/eterm/files/md5
+++ b/x11/eterm/files/md5
@@ -1,6 +1,6 @@
-$NetBSD: md5,v 1.1.1.1 1999/03/30 04:48:43 garbled Exp $
+$NetBSD: md5,v 1.2 1999/10/28 00:31:58 jlam Exp $
-MD5 (Eterm-0.8.8.tar.gz) = 19c0571f900757e5a90ac36baac3f79b
+MD5 (Eterm-0.8.9.tar.gz) = 9e4945a6920f7d10cf28516266307519
MD5 (Eterm-bg-scale-1.tar.gz) = 8fe075c118acb7bf050a5b616bf764e0
MD5 (Eterm-bg-scale-2.tar.gz) = ba1b3ceec51bd4196df1b887c8396475
MD5 (Eterm-bg-tile.tar.gz) = 24a60f33a3611b4c7a6e8a2b65dc120d
diff --git a/x11/eterm/files/patch-sum b/x11/eterm/files/patch-sum
index a107be2e8c5..b4fcadd28a8 100644
--- a/x11/eterm/files/patch-sum
+++ b/x11/eterm/files/patch-sum
@@ -1,4 +1,6 @@
-$NetBSD: patch-sum,v 1.1 1999/07/09 14:23:23 agc Exp $
+$NetBSD: patch-sum,v 1.2 1999/10/28 00:31:58 jlam Exp $
-MD5 (patch-aa) = 76a3dec901c93e417de0f041a93d85a3
-MD5 (patch-ab) = f5da36f3e91820041114f52c659d4187
+MD5 (patch-aa) = c26caddd78ca90fbde3451e38139e5b6
+MD5 (patch-ab) = 66922deac5b0c8d51ac4d9489328938f
+MD5 (patch-ac) = a7d807c685e137e4d09c75230999a25a
+MD5 (patch-ad) = 159e6945de34e96764e7981f337685dd
diff --git a/x11/eterm/patches/patch-aa b/x11/eterm/patches/patch-aa
index 01bb5c1a57b..54cf593990a 100644
--- a/x11/eterm/patches/patch-aa
+++ b/x11/eterm/patches/patch-aa
@@ -1,20 +1,20 @@
-$NetBSD: patch-aa,v 1.1.1.1 1999/03/30 04:48:43 garbled Exp $
---- themes/Makefile.in.orig Mon Mar 29 12:19:26 1999
-+++ themes/Makefile.in Mon Mar 29 12:19:41 1999
-@@ -198,16 +198,12 @@
- done
- $(mkinstalldirs) $(pkgdatadir)/themes
- -@for i in $(THEMES) ; do \
-- if test ! -d $(pkgdatadir)/themes/$$i ; then \
- echo "Installing $$i theme in $(pkgdatadir)/themes" ; \
- $(mkinstalldirs) $(pkgdatadir)/themes/$$i ; \
- $(CP) $$i/???* $(pkgdatadir)/themes/$$i ; \
- $(CHMOD) 755 $(pkgdatadir)/themes/$$i ; \
- $(CHMOD) 644 $(pkgdatadir)/themes/$$i/???* ; \
- rm -f $(pkgdatadir)/themes/$$i/MAIN.in ; \
-- else \
-- echo "ALERT! Not overwriting theme $$i in $(pkgdatadir)/themes. You will need to update this theme manually." ; \
-- fi ; \
- done
- @if test ! -f $(HOME)/.active.tags ; then $(CP) active.tags $(HOME)/.active.tags ; \
- else echo "Not installing $(HOME)/.active.tags -- File exists." ; fi
+$NetBSD: patch-aa,v 1.2 1999/10/28 00:31:59 jlam Exp $
+
+--- configure.orig Mon Apr 19 19:47:32 1999
++++ configure Mon Oct 25 16:28:54 1999
+@@ -1858,6 +1858,7 @@
+ fi
+
+
++if false; then
+ # Check for any special flags to pass to ltconfig.
+ libtool_flags="--cache-file=$cache_file"
+ test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
+@@ -2158,6 +2159,7 @@
+ # Redirect the config.log output again, so that the ltconfig log is not
+ # clobbered by the next message.
+ exec 5>>./config.log
++fi
+
+
+ echo $ac_n "checking for distribution root""... $ac_c" 1>&6
diff --git a/x11/eterm/patches/patch-ab b/x11/eterm/patches/patch-ab
index 1286157bbd6..08a5064bf54 100644
--- a/x11/eterm/patches/patch-ab
+++ b/x11/eterm/patches/patch-ab
@@ -1,23 +1,13 @@
-$NetBSD: patch-ab,v 1.1 1999/04/06 14:41:22 agc Exp $
+$NetBSD: patch-ab,v 1.2 1999/10/28 00:31:59 jlam Exp $
-Use NetBSD's own pkglibtool
-
---- configure 1999/04/06 14:17:16 1.1
-+++ configure 1999/04/06 14:17:39
-@@ -1518,6 +1518,7 @@
- fi
-
- # Always use our own libtool.
-+if false; then
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-
- # Check for any special flags to pass to ltconfig.
-@@ -1562,6 +1563,8 @@
- ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \
- $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
- || { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
-+
-+fi
+--- doc/Makefile.in.orig Mon Apr 26 10:54:04 1999
++++ doc/Makefile.in Mon Oct 25 16:29:33 1999
+@@ -253,7 +253,7 @@
+ $(SED) -e 's%@''VERSION''@%$(VERSION)%g' -e 's%@''DATE''@%$(DATE)%g' -e 's%@THEMEDIR@%$(pkgdatadir)/themes%g' $@.in > $@
+ Eterm.1.html: Eterm.1
+- -nroff -man $< | man2html > $@
++ -nroff -man Eterm.1 | man2html > $@
- echo $ac_n "checking for distribution root""... $ac_c" 1>&6
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
diff --git a/x11/eterm/pkg/COMMENT b/x11/eterm/pkg/COMMENT
index dcbd215b848..d06c7c6684a 100644
--- a/x11/eterm/pkg/COMMENT
+++ b/x11/eterm/pkg/COMMENT
@@ -1 +1 @@
-Extremely colorful and feature filled xterm
+Enlightened terminal emulator for the X Window System
diff --git a/x11/eterm/pkg/DESCR b/x11/eterm/pkg/DESCR
index 5ebfc2b1192..080f82f4e93 100644
--- a/x11/eterm/pkg/DESCR
+++ b/x11/eterm/pkg/DESCR
@@ -1 +1,3 @@
-An extremely colorful and feature filled xterm.
+Eterm is a color vt102 terminal emulator intended as an xterm replacement
+for users who want a term program integrated with Enlightenment, or simply
+want a little more "eye candy".
diff --git a/x11/eterm/pkg/PLIST b/x11/eterm/pkg/PLIST
index fc5e9ff3298..27a66bc0377 100644
--- a/x11/eterm/pkg/PLIST
+++ b/x11/eterm/pkg/PLIST
@@ -1,10 +1,16 @@
-@comment $NetBSD: PLIST,v 1.2 1999/04/12 18:57:36 hubertf Exp $
-man/man1/Eterm.1
-lib/libmej.so.8.8
-lib/libmej.a
-lib/libEterm.so.8.8
+@comment $NetBSD: PLIST,v 1.3 1999/10/28 00:32:00 jlam Exp $
+bin/Esetroot
+bin/Etbg
+bin/Etcolors.sh
+bin/Eterm
+bin/Etmenu.sh
lib/libEterm.a
+lib/libEterm.so.8.9
+lib/libmej.a
+lib/libmej.so.8.9
+man/man1/Eterm.1
share/Eterm/pix/004.png
+share/Eterm/pix/014.png
share/Eterm/pix/015.png
share/Eterm/pix/017.png
share/Eterm/pix/021.png
@@ -29,68 +35,6 @@ share/Eterm/pix/6.png
share/Eterm/pix/7.png
share/Eterm/pix/70s_marble.png
share/Eterm/pix/7m.png
-share/Eterm/pix/a10.png
-share/Eterm/pix/a2.png
-share/Eterm/pix/a8.png
-share/Eterm/pix/sun.png
-share/Eterm/pix/atoms.png
-share/Eterm/pix/atoms2.png
-share/Eterm/pix/blackstone.png
-share/Eterm/pix/blue_marble.png
-share/Eterm/pix/blue_maze.png
-share/Eterm/pix/blue_rock.png
-share/Eterm/pix/blue_sandpaper.png
-share/Eterm/pix/blue_water.png
-share/Eterm/pix/blue_weave.png
-share/Eterm/pix/blurock.png
-share/Eterm/pix/bow-tiles.png
-share/Eterm/pix/brushed_aluminum.png
-share/Eterm/pix/c0de.jpg
-share/Eterm/pix/coarse_red.png
-share/Eterm/pix/coral3.png
-share/Eterm/pix/coral4.png
-share/Eterm/pix/corrugated_metal.png
-share/Eterm/pix/cyber_bg.png
-share/Eterm/pix/dark_marble.png
-share/Eterm/pix/dirt.png
-share/Eterm/pix/ether.png
-share/Eterm/pix/ether_blue.png
-share/Eterm/pix/ether_green.png
-share/Eterm/pix/firering.png
-share/Eterm/pix/fond_mau.png
-share/Eterm/pix/giger1.png
-share/Eterm/pix/giger2.png
-share/Eterm/pix/green_stucco.png
-share/Eterm/pix/greenred.png
-share/Eterm/pix/greybg.png
-share/Eterm/pix/lava2.png
-share/Eterm/pix/lightb1.png
-share/Eterm/pix/maple1.png
-share/Eterm/pix/money2.png
-share/Eterm/pix/money3.png
-share/Eterm/pix/moss.png
-share/Eterm/pix/multicolor1_dots.png
-share/Eterm/pix/multicolor3_rock.png
-share/Eterm/pix/pebble1.png
-share/Eterm/pix/plants.png
-share/Eterm/pix/pool_blue.png
-share/Eterm/pix/purpgls.png
-share/Eterm/pix/purple_marble2.png
-share/Eterm/pix/purple_stuff.png
-share/Eterm/pix/qube25p.png
-share/Eterm/pix/red_rock.png
-share/Eterm/pix/red_stucco.png
-share/Eterm/pix/redgray_marble.png
-share/Eterm/pix/shale.png
-share/Eterm/pix/sky2.png
-share/Eterm/pix/soft.png
-share/Eterm/pix/soft_blue.png
-share/Eterm/pix/space.png
-share/Eterm/pix/starry.png
-share/Eterm/pix/strands1.png
-share/Eterm/pix/waves.png
-share/Eterm/pix/woodish1.png
-share/Eterm/pix/wtrstone.jpg
share/Eterm/pix/Bladerunner-bg.png
share/Eterm/pix/Building.jpg
share/Eterm/pix/Canyon.jpg
@@ -106,33 +50,73 @@ share/Eterm/pix/Snow.jpg
share/Eterm/pix/Terraforming.jpg
share/Eterm/pix/The_Castle.jpg
share/Eterm/pix/The_New_Base.jpg
+share/Eterm/pix/a10.png
+share/Eterm/pix/a2.png
+share/Eterm/pix/a8.png
share/Eterm/pix/after_the_storm.jpg
share/Eterm/pix/alien_spheres.jpg
share/Eterm/pix/ascension.png
share/Eterm/pix/atlantis.jpg
+share/Eterm/pix/atoms.png
+share/Eterm/pix/atoms2.png
share/Eterm/pix/back1.jpg
share/Eterm/pix/back3.jpg
+share/Eterm/pix/backwave.jpg
share/Eterm/pix/beacon2.jpg
share/Eterm/pix/before_the_storm.jpg
-share/Eterm/pix/citidel.jpg
+share/Eterm/pix/blackstone.png
+share/Eterm/pix/blue_marble.png
+share/Eterm/pix/blue_maze.png
+share/Eterm/pix/blue_rock.png
+share/Eterm/pix/blue_sandpaper.png
+share/Eterm/pix/blue_water.png
+share/Eterm/pix/blue_weave.png
share/Eterm/pix/bluerising.jpg
+share/Eterm/pix/blurock.png
+share/Eterm/pix/bow-tiles.png
+share/Eterm/pix/brushed_aluminum.png
+share/Eterm/pix/button1.jpg
+share/Eterm/pix/button5.jpg
+share/Eterm/pix/c0de.jpg
share/Eterm/pix/castle_verde.jpg
share/Eterm/pix/chamelea.jpg
+share/Eterm/pix/circuit.png
+share/Eterm/pix/citidel.jpg
share/Eterm/pix/city3.jpg
share/Eterm/pix/class_m.jpg
+share/Eterm/pix/coarse_red.png
share/Eterm/pix/conjunction.jpg
+share/Eterm/pix/coral3.png
+share/Eterm/pix/coral4.png
+share/Eterm/pix/corrugated_metal.png
share/Eterm/pix/coup_de_grace.jpg
share/Eterm/pix/crater_lake.jpg
share/Eterm/pix/cronus.jpg
+share/Eterm/pix/cyber_bg.png
+share/Eterm/pix/dark_marble.png
+share/Eterm/pix/dirt.png
share/Eterm/pix/distant_kin.jpg
share/Eterm/pix/dvxvb.jpg
share/Eterm/pix/elysium.jpg
share/Eterm/pix/enclosure.jpg
+share/Eterm/pix/ether.png
+share/Eterm/pix/ether_blue.png
+share/Eterm/pix/ether_green.png
+share/Eterm/pix/firering.png
+share/Eterm/pix/fond_mau.png
share/Eterm/pix/fossil.jpg
+share/Eterm/pix/fourthday.jpg
+share/Eterm/pix/gaia.jpg
share/Eterm/pix/gaia_station.jpg
+share/Eterm/pix/galleon.jpg
share/Eterm/pix/gazebo.jpg
+share/Eterm/pix/giger1.png
+share/Eterm/pix/giger2.png
share/Eterm/pix/good_morning_sunshine.jpg
share/Eterm/pix/gorgon.jpg
+share/Eterm/pix/green_stucco.png
+share/Eterm/pix/greenred.png
+share/Eterm/pix/greybg.png
share/Eterm/pix/holding.jpg
share/Eterm/pix/hour.jpg
share/Eterm/pix/hubbles_doorstep.jpg
@@ -141,26 +125,55 @@ share/Eterm/pix/inlet.jpg
share/Eterm/pix/iron_temple.jpg
share/Eterm/pix/kingdom.jpg
share/Eterm/pix/lake_of_fire.jpg
+share/Eterm/pix/lava2.png
share/Eterm/pix/legacy.jpg
+share/Eterm/pix/lightb1.png
share/Eterm/pix/lighthouse.jpg
share/Eterm/pix/lotus.jpg
+share/Eterm/pix/maple1.png
+share/Eterm/pix/money2.png
+share/Eterm/pix/money3.png
+share/Eterm/pix/moss.png
+share/Eterm/pix/multicolor1_dots.png
+share/Eterm/pix/multicolor3_rock.png
+share/Eterm/pix/nebula.jpg
share/Eterm/pix/neopolis.jpg
+share/Eterm/pix/night_of_the_dragon.jpg
share/Eterm/pix/night_watchman.jpg
share/Eterm/pix/nocturne.jpg
share/Eterm/pix/observation_deck.jpg
+share/Eterm/pix/pebble1.png
+share/Eterm/pix/pixmaps.list
share/Eterm/pix/planeta.png
+share/Eterm/pix/plants.png
share/Eterm/pix/pond.png
+share/Eterm/pix/pool_blue.png
share/Eterm/pix/portal.jpg
share/Eterm/pix/poseidon.png
+share/Eterm/pix/purpgls.png
+share/Eterm/pix/purple_marble2.png
+share/Eterm/pix/purple_stuff.png
+share/Eterm/pix/qube25p.png
+share/Eterm/pix/red_rock.png
+share/Eterm/pix/red_stucco.png
+share/Eterm/pix/redgray_marble.png
share/Eterm/pix/return_to_giza.jpg
share/Eterm/pix/ripple.png
share/Eterm/pix/rising.jpg
share/Eterm/pix/river_of_lead.jpg
share/Eterm/pix/roche_limit.jpg
share/Eterm/pix/sentinel.jpg
+share/Eterm/pix/shale.png
share/Eterm/pix/silence.jpg
+share/Eterm/pix/sky2.png
share/Eterm/pix/sleepwalker.jpg
+share/Eterm/pix/soft.png
+share/Eterm/pix/soft_blue.png
+share/Eterm/pix/space.png
+share/Eterm/pix/starry.png
share/Eterm/pix/still_life_study.jpg
+share/Eterm/pix/strands1.png
+share/Eterm/pix/sun.png
share/Eterm/pix/the_forest_queen.jpg
share/Eterm/pix/the_taken_field.jpg
share/Eterm/pix/traveller.jpg
@@ -172,39 +185,29 @@ share/Eterm/pix/urmane2.jpg
share/Eterm/pix/urmane3.jpg
share/Eterm/pix/urmane4.jpg
share/Eterm/pix/wasteland.jpg
-share/Eterm/themes/Eterm/MAIN
+share/Eterm/pix/waves.png
+share/Eterm/pix/woodish1.png
+share/Eterm/pix/wtrstone.jpg
share/Eterm/themes/Eterm/Eterm.menu
+share/Eterm/themes/Eterm/MAIN
share/Eterm/themes/Eterm/pixmaps.list
-share/Eterm/themes/chooser/chooser.menu
share/Eterm/themes/chooser/MAIN
+share/Eterm/themes/chooser/chooser.menu
share/Eterm/themes/chooser/pixmaps.list
-share/Eterm/themes/emacs/emacs.menu
share/Eterm/themes/emacs/MAIN
+share/Eterm/themes/emacs/emacs.menu
share/Eterm/themes/emacs/pixmaps.list
-share/Eterm/themes/irc/irc.menu
share/Eterm/themes/irc/MAIN
+share/Eterm/themes/irc/irc.menu
share/Eterm/themes/irc/pixmaps.list
-share/Eterm/themes/mutt/mutt.menu
share/Eterm/themes/mutt/MAIN
+share/Eterm/themes/mutt/mutt.menu
share/Eterm/themes/mutt/pixmaps.list
share/Eterm/themes/tn3270/MAIN
share/Eterm/themes/tn3270/pixmaps.list
-share/Eterm/themes/trans/trans.menu
share/Eterm/themes/trans/MAIN
share/Eterm/themes/trans/pixmaps.list
-share/Eterm/pix/014.png
-share/Eterm/pix/backwave.jpg
-share/Eterm/pix/button1.jpg
-share/Eterm/pix/button5.jpg
-share/Eterm/pix/circuit.png
-share/Eterm/pix/nebula.jpg
-share/Eterm/pix/fourthday.jpg
-share/Eterm/pix/gaia.jpg
-share/Eterm/pix/galleon.jpg
-share/Eterm/pix/night_of_the_dragon.jpg
-share/Eterm/pix/pixmaps.list
-bin/Eterm
-bin/Esetroot
+share/Eterm/themes/trans/trans.menu
@dirrm share/Eterm/themes/Eterm
@dirrm share/Eterm/themes/chooser
@dirrm share/Eterm/themes/emacs