View | Details | Raw Unified | Return to bug 5820
Collapse All | Expand All

(-)dotfile-2.2/Makefile (-3 / +25 lines)
Lines 6-12 Link Here
6
# $Id: Makefile,v 1.6 1997/11/22 20:38:23 jseger Exp $
6
# $Id: Makefile,v 1.6 1997/11/22 20:38:23 jseger Exp $
7
#
7
#
8
8
9
DISTNAME=	dotfile-2.0
9
DISTNAME=	dotfile-2.2
10
CATEGORIES=	misc tk80
10
CATEGORIES=	misc tk80
11
MASTER_SITES=	ftp://ftp.imada.ou.dk/pub/dotfile/
11
MASTER_SITES=	ftp://ftp.imada.ou.dk/pub/dotfile/
12
12
Lines 18-27 Link Here
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
MAN1=		dotfile.1
19
MAN1=		dotfile.1
20
20
21
do-build:
21
NO_BUILD=	yes
22
	@${DO_NADA}
22
23
pre-fetch:
24
.if !defined(PROCMAIL)
25
	@${ECHO_MSG} "This port requires an extra configure if you intend to use it to create procmailrc files.  If you'd like this capability restart with \"make PROCMAIL=yes\"."
26
	@${ECHO_MSG} ""
27
	@${ECHO_MSG} "If you choose not to compile in this capability now, you can add it later by running configure in ${PREFIX}/${DISTNAME}/procmail."
28
.endif
29
30
post-configure:
31
.if defined(PROCMAIL)
32
	@(cd ${WRKSRC}/Modules/procmail && CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \
33
	INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
34
	INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
35
	${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS})
36
.endif
23
37
24
post-install:
38
post-install:
39
	@${MKDIR} ${PREFIX}/share/doc/${DISTNAME}
40
	@${MKDIR} ${PREFIX}/share/doc/${DISTNAME}/dotfile
41
	@${MKDIR} ${PREFIX}/share/doc/${DISTNAME}/procmail
42
	@${MKDIR} ${PREFIX}/share/doc/${DISTNAME}/tcsh
43
	${INSTALL_DATA} ${WRKSRC}/Doc/index.html ${PREFIX}/share/doc/${DISTNAME}
44
	${INSTALL_DATA} ${WRKSRC}/Doc/dotfile/* ${PREFIX}/share/doc/${DISTNAME}/dotfile
45
	${INSTALL_DATA} ${WRKSRC}/Doc/tcsh/* ${PREFIX}/share/doc/${DISTNAME}/tcsh
46
	${INSTALL_DATA} ${WRKSRC}/Doc/procmail/* ${PREFIX}/share/doc/${DISTNAME}/procmail
25
	@${CAT} ${PKGDIR}/MESSAGE
47
	@${CAT} ${PKGDIR}/MESSAGE
26
48
27
.include <bsd.port.mk>
49
.include <bsd.port.mk>
(-)dotfile-2.2/files/md5 (-1 / +1 lines)
Line 1 Link Here
1
MD5 (dotfile-2.0.tar.gz) = efe6b64d425b6f6f2ae6f44648b597fd
1
MD5 (dotfile-2.2.tar.gz) = 37be5ea69332c6ee7b6010fc4db2065a
(-)dotfile-2.2/patches/patch-01 (-68 lines)
Lines 1-68 Link Here
1
--- Makefile.in.orig	Fri Jan 31 13:10:25 1997
2
+++ Makefile.in	Thu Apr  3 19:02:57 1997
3
@@ -15,7 +15,7 @@
4
 bindir = $(exec_prefix)/bin
5
 
6
 # Directory in which to install library files.
7
-libdir = $(prefix)/lib/dotfile-$(version)
8
+libdir = $(prefix)/share/dotfile-$(version)
9
 # Directory for the manual page
10
 mandir = $(prefix)/man/man1
11
 
12
@@ -23,7 +23,6 @@
13
 SHELL = /bin/sh
14
 
15
 ### Tell the user that there is nothing to be compiled.
16
-.PHONY: nothing
17
 nothing:
18
 	@echo "The Dotfile Generator does not contain any files which has to be compiled!"
19
 	@echo "On the other hand, during installation, all the modules need to be"
20
@@ -32,10 +31,8 @@
21
 #
22
 # install all the files in the corect places.
23
 #
24
-.PHONY:	install
25
 install: copydirs bytecompile
26
 
27
-.PHONY: copydirs
28
 copydirs:
29
 	$(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(libdir) \
30
 	$(libdir)/Generator $(mandir)
31
@@ -49,20 +46,18 @@
32
 	done
33
 	cp dotfile.1 $(mandir)
34
 	-@RM@ $(bindir)/dotfile
35
-	-@LN@ -s $(bindir)/dotfile-$(version) $(bindir)/dotfile
36
+	-@LN@ -s dotfile-$(version) $(bindir)/dotfile
37
 	chmod 755 $(bindir)/dotfile
38
 	chmod 755 $(bindir)/dotfile-$(version)
39
 
40
-.PHONY: bytecompile
41
 bytecompile: $(MODULES)
42
 
43
 #
44
 # Targets that requre X (the modules using the fonts widget)
45
 #
46
-.PHONY fvwm1 fvwm2:
47
 fvwm1 fvwm2:
48
-	@if wish testwish; then \
49
-	@WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \
50
+	@if $(WISH) testwish; then \
51
+	$(WISH) $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \
52
 	else \
53
 	echo "An error should be shown above!"; \
54
 	echo "You need X to bytecompile the $@ module, do this manually after"; \
55
@@ -72,13 +67,11 @@
56
 #
57
 # Targets that may bytecompile without X
58
 #
59
-.PHONY emacs tcsh rtin bash elm:
60
 emacs tcsh rtin bash elm:
61
 	@@TCLSH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile
62
 
63
 #
64
 # Clean
65
 #
66
-.PHONY:	clean
67
 clean :
68
 	@echo Nothing to do
(-)dotfile-2.2/patches/patch-aa (-20 / +65 lines)
Lines 1-20 Link Here
1
--- configure.orig	Fri Jan 31 08:09:10 1997
1
*** Makefile.in.orig	Sun Dec 21 06:40:34 1997
2
+++ configure	Sat Nov 22 15:25:48 1997
2
--- Makefile.in	Sun Feb 22 11:07:08 1998
3
@@ -399,7 +399,7 @@
3
***************
4
 
4
*** 23,48 ****
5
 
5
  SHELL = /bin/sh
6
 
6
  
7
-for ac_prog in wish4.2 wish4.1 wish4.0 wish
7
  ### Tell the user that there is nothing to be compiled.
8
+for ac_prog in wish8.0 wish4.2 wish4.1 wish4.0 wish
8
- .PHONY: nothing
9
 do
9
- nothing:
10
 # Extract the first word of "$ac_prog", so it can be a program name with args.
10
- 	@echo ----------------------------------------------------------------------
11
 set dummy $ac_prog; ac_word=$2
11
- 	@echo ----------------------------------------------------------------------
12
@@ -439,7 +439,7 @@
12
- 	@echo "The Dotfile Generator does not contain any files which has to be compiled!"
13
 	{ echo "configure: error: I couldn't find 'wish' please insert it into your path and try again" 1>&2; exit 1; }
13
- 	@echo "On the other hand, during installation, all the modules need to be"
14
 fi
14
- 	@echo "bytecompiled, so now it's time to type: make install"
15
 
15
- 	@echo ----------------------------------------------------------------------
16
-for ac_prog in tclsh7.6 tclsh7.5 tclsh7.4 tclsh
16
- 	@echo ----------------------------------------------------------------------
17
+for ac_prog in tclsh8.0 tclsh7.6 tclsh7.5 tclsh7.4 tclsh
17
  
18
 do
18
- #
19
 # Extract the first word of "$ac_prog", so it can be a program name with args.
19
  # install all the files in the corect places.
20
 set dummy $ac_prog; ac_word=$2
20
  #
21
  .PHONY:	install
22
  install: copydirs bytecompile
23
- 	@echo "**********************************************************************"
24
- 	@echo In the directory Doc, three articles in HTML format, concerning
25
- 	@echo The Dotfile Generator is located. If you want these to be installed
26
- 	@echo on your system, please do it manually.
27
- 	@echo "**********************************************************************"
28
  
29
  .PHONY: copydirs
30
  copydirs:
31
--- 23,33 ----
32
***************
33
*** 58,64 ****
34
  	done
35
  	cp dotfile.1 $(mandir)
36
  	-@RM@ $(bindir)/dotfile
37
! 	-@LN@ -s $(bindir)/dotfile-$(version) $(bindir)/dotfile
38
  	chmod 755 $(bindir)/dotfile
39
  	chmod 755 $(bindir)/dotfile-$(version)
40
  
41
--- 43,49 ----
42
  	done
43
  	cp dotfile.1 $(mandir)
44
  	-@RM@ $(bindir)/dotfile
45
! 	-@LN@ -s dotfile-$(version) $(bindir)/dotfile
46
  	chmod 755 $(bindir)/dotfile
47
  	chmod 755 $(bindir)/dotfile-$(version)
48
  
49
***************
50
*** 72,78 ****
51
  fvwm1 fvwm2:
52
  	@echo "----------------------------------------------------------------------"
53
  	@echo "                           Byte compiling $@"
54
! 	@if wish testwish; then \
55
  	@WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \
56
  	else \
57
  	echo "An error should be shown above!"; \
58
--- 57,63 ----
59
  fvwm1 fvwm2:
60
  	@echo "----------------------------------------------------------------------"
61
  	@echo "                           Byte compiling $@"
62
! 	@if $(WISH) testwish; then \
63
  	@WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \
64
  	else \
65
  	echo "An error should be shown above!"; \
(-)dotfile-2.2/patches/patch-ab (+49 lines)
Line 0 Link Here
1
*** configure.in.orig	Sun Dec 21 06:40:27 1997
2
--- configure.in	Sun Feb 22 09:55:53 1998
3
***************
4
*** 25,37 ****
5
  dnl remove until the next comment line
6
  dnl and rerun autoconf (or mail blackie@imada.ou.dk)
7
  
8
- echo "######################################################################"
9
- echo "######################################################################"
10
- echo If the configure script does not work, then please report to
11
- echo blackie@imada.ou.dk, and edit configure.in.
12
- echo "######################################################################"
13
- echo "######################################################################"
14
- 
15
  AC_PATH_PROGS(WISHnew, wish8.0 wish4.2 wish4.1 wish4.0,no)
16
  AC_PATH_PROGS(WISHnothing, wish, no)
17
  if test "$WISHnew" != "no" -a "$WISHnothing" != "no"; then
18
--- 25,30 ----
19
***************
20
*** 53,68 ****
21
    AC_PATH_PROGS(WISH, wish8.0 wish4.2 wish4.1 wish4.0 wish, no)
22
    if test "$WISH" = no; then
23
  	  AC_MSG_ERROR(I couldn't find 'wish' please insert it into your path and try again)
24
-   else
25
-     echo "####################################################################"
26
-     echo "####################################################################"
27
-     echo "                               WARNING"
28
-     echo "You do not have a link from wish to \"$WISH\"."
29
-     echo "This means that the executable dotfile does not work, when you"
30
-     echo "upgrade wish! In this case edit \"dotfile\" !"
31
-     echo "####################################################################"
32
-     echo "####################################################################"
33
-   fi
34
  fi
35
  dnl ############################################################
36
  dnl The dotfile generator require tclsh, if it can not be found
37
--- 46,51 ----
38
***************
39
*** 134,142 ****
40
  chmod 755 dotfile
41
  chmod 755 Modules/fvwm2/fvwmrc_convert
42
  
43
- echo ----------------------------------------------------------------------
44
- echo ----------------------------------------------------------------------
45
- echo please login to your mail host, go to the directory Modules/procmail
46
- echo and run ./configure from there.
47
- echo ----------------------------------------------------------------------
48
- echo ----------------------------------------------------------------------
49
--- 117,119 ----
(-)dotfile-2.2/patches/patch-ac (+19 lines)
Line 0 Link Here
1
*** Modules/procmail/configure.in.orig	Sat Feb 21 15:20:04 1998
2
--- Modules/procmail/configure.in	Sat Feb 21 15:20:19 1998
3
***************
4
*** 13,19 ****
5
  echo "----------------------------------------------------------------------"
6
  
7
  
8
! AC_PATH_PROGS(TCLSH, tclsh7.6 tclsh7.5 tclsh7.4 tclsh, no)
9
  if test "$TCLSH" = no; then
10
          AC_MSG_ERROR(I couldn't find 'tclsh' please insert it into your pa
11
  th and try again)
12
--- 13,19 ----
13
  echo "----------------------------------------------------------------------"
14
  
15
  
16
! AC_PATH_PROGS(TCLSH, tclsh8.0 tclsh7.6 tclsh7.5 tclsh7.4 tclsh, no)
17
  if test "$TCLSH" = no; then
18
          AC_MSG_ERROR(I couldn't find 'tclsh' please insert it into your pa
19
  th and try again)
(-)dotfile-2.2/patches/patch-ad (+31 lines)
Line 0 Link Here
1
*** Modules/procmail/configure.orig	Sun Dec 21 06:40:33 1997
2
--- Modules/procmail/configure	Sun Feb 22 18:11:20 1998
3
***************
4
*** 519,537 ****
5
  
6
  
7
  
8
! echo "----------------------------------------------------------------------"
9
! echo "----------------------------------------------------------------------"
10
! echo "Please note that the configure script for procmail has to be run on"
11
! echo "your mailhost! This is important, since the mailhost may have separate"
12
! echo "file systems, and thus have other programs, than your current host!"
13
! echo "If this is not your mail host, please rlogin to it and run"
14
! echo "Modules/procmail/configure on it, or edit Modules/procmail/system.tcl"
15
! echo "accordingly!"
16
! echo "----------------------------------------------------------------------"
17
! echo "----------------------------------------------------------------------"
18
! 
19
! 
20
! for ac_prog in tclsh7.6 tclsh7.5 tclsh7.4 tclsh
21
  do
22
  # Extract the first word of "$ac_prog", so it can be a program name with args.
23
  set dummy $ac_prog; ac_word=$2
24
--- 519,525 ----
25
  
26
  
27
  
28
! for ac_prog in tclsh8.0 tclsh7.6 tclsh7.5 tclsh7.4 tclsh
29
  do
30
  # Extract the first word of "$ac_prog", so it can be a program name with args.
31
  set dummy $ac_prog; ac_word=$2
(-)dotfile-2.2/patches/patch-ae (+14 lines)
Line 0 Link Here
1
*** configure.orig	Sun Feb 22 10:05:56 1998
2
--- configure	Sun Feb 22 10:06:13 1998
3
***************
4
*** 1427,1435 ****
5
  chmod 755 dotfile
6
  chmod 755 Modules/fvwm2/fvwmrc_convert
7
  
8
- echo ----------------------------------------------------------------------
9
- echo ----------------------------------------------------------------------
10
- echo please login to your mail host, go to the directory Modules/procmail
11
- echo and run ./configure from there.
12
- echo ----------------------------------------------------------------------
13
- echo ----------------------------------------------------------------------
14
--- 1427,1429 ----
(-)dotfile-2.2/pkg/MESSAGE (+2 lines)
Line 1 Link Here
1
Check out dotfile's useful homepage http://www.imada.ou.dk/~blackie/dotfile/
1
Check out dotfile's useful homepage http://www.imada.ou.dk/~blackie/dotfile/
2
3
In addition there are HTML docs in /usr/local/share/doc/dotfile-2.2.
(-)dotfile-2.2/pkg/PLIST (-230 / +340 lines)
Lines 1-232 Link Here
1
bin/dotfile-2.2
1
bin/dotfile
2
bin/dotfile
2
bin/dotfile-2.0
3
man/man1/dotfile.1.gz
3
man/man1/dotfile.1.gz
4
share/dotfile-2.0/Generator/bitmaps/Down
4
share/doc/dotfile-2.2/index.html
5
share/dotfile-2.0/Generator/bitmaps/act_folder.xbm
5
share/doc/dotfile-2.2/dotfile/index.html
6
share/dotfile-2.0/Generator/bitmaps/file.xbm
6
share/doc/dotfile-2.2/dotfile/config_page.jpg
7
share/dotfile-2.0/Generator/bitmaps/folder.xbm
7
share/doc/dotfile-2.2/dotfile/extentry1.jpg
8
share/dotfile-2.0/Generator/bitmaps/idx.xbm
8
share/doc/dotfile-2.2/dotfile/extentry2.jpg
9
share/dotfile-2.0/Generator/bitmaps/scissors.xbm
9
share/doc/dotfile-2.2/dotfile/job_control.gif
10
share/dotfile-2.0/Generator/bitmaps/new.xbm
10
share/doc/dotfile-2.2/dotfile/logo.gif
11
share/dotfile-2.0/Generator/bitmaps/GeneratorLogo.gif
11
share/doc/dotfile-2.2/dotfile/menu_window.jpg
12
share/dotfile-2.0/Generator/bitmaps/folder_center.xbm
12
share/doc/dotfile-2.2/dotfile/prompt.jpg
13
share/dotfile-2.0/Generator/bitmaps/Left
13
share/doc/dotfile-2.2/tcsh/index.html
14
share/dotfile-2.0/Generator/bitmaps/Right
14
share/doc/dotfile-2.2/tcsh/lil2cent.gif
15
share/dotfile-2.0/Generator/bitmaps/Up
15
share/doc/dotfile-2.2/tcsh/pattern.gif
16
share/dotfile-2.0/Generator/bitmaps/ComboBox.xbm
16
share/doc/dotfile-2.2/tcsh/pattern2.gif
17
share/dotfile-2.0/Generator/oldVersions/1.1/tcsh
17
share/doc/dotfile-2.2/tcsh/posdef.gif
18
share/dotfile-2.0/Generator/oldVersions/1.1/Emacs
18
share/doc/dotfile-2.2/tcsh/prompt.gif
19
share/dotfile-2.0/Generator/oldVersions/1.1/fvwm
19
share/doc/dotfile-2.2/tcsh/time.gif
20
share/dotfile-2.0/Generator/oldVersions/1.1/Fvwm
20
share/doc/dotfile-2.2/tcsh/userdef.gif
21
share/dotfile-2.0/Generator/update-from-1.1.tcl
21
share/doc/dotfile-2.2/procmail/index.html
22
share/dotfile-2.0/Generator/types.tcl
22
share/doc/dotfile-2.2/procmail/backup.jpg
23
share/dotfile-2.0/Generator/system.tcl.in
23
share/doc/dotfile-2.2/procmail/general.jpg
24
share/dotfile-2.0/Generator/system.tcl
24
share/doc/dotfile-2.2/procmail/gray-g3.gif
25
share/dotfile-2.0/Generator/setup.tcl
25
share/doc/dotfile-2.2/procmail/header.jpg
26
share/dotfile-2.0/Generator/setPages.tcl
26
share/doc/dotfile-2.2/procmail/main.jpg
27
share/dotfile-2.0/Generator/save.tcl
27
share/doc/dotfile-2.2/procmail/recipes-with-numbers.jpg
28
share/dotfile-2.0/Generator/parse.tcl
28
share/doc/dotfile-2.2/procmail/recipes.jpg
29
share/dotfile-2.0/Generator/menus.tcl
29
lib/dotfile-2.2/Generator/bitmaps/new.xbm.old
30
share/dotfile-2.0/Generator/makeHelp.tcl
30
lib/dotfile-2.2/Generator/bitmaps/act_folder.xbm
31
share/dotfile-2.0/Generator/makeHelp
31
lib/dotfile-2.2/Generator/bitmaps/file.xbm
32
share/dotfile-2.0/Generator/mail.tcl
32
lib/dotfile-2.2/Generator/bitmaps/folder.xbm
33
share/dotfile-2.0/Generator/load.tcl
33
lib/dotfile-2.2/Generator/bitmaps/idx.xbm
34
share/dotfile-2.0/Generator/import.tcl
34
lib/dotfile-2.2/Generator/bitmaps/scissors.xbm
35
share/dotfile-2.0/Generator/helpfile.data
35
lib/dotfile-2.2/Generator/bitmaps/new.xbm
36
share/dotfile-2.0/Generator/help.tcl
36
lib/dotfile-2.2/Generator/bitmaps/GeneratorLogo.gif
37
share/dotfile-2.0/Generator/help.html
37
lib/dotfile-2.2/Generator/bitmaps/folder_center.xbm
38
share/dotfile-2.0/Generator/generatedHelp
38
lib/dotfile-2.2/Generator/bitmaps/Left
39
share/dotfile-2.0/Generator/generate.tcl
39
lib/dotfile-2.2/Generator/bitmaps/Right
40
share/dotfile-2.0/Generator/functions.tcl
40
lib/dotfile-2.2/Generator/bitmaps/Up
41
share/dotfile-2.0/Generator/TAGS
41
lib/dotfile-2.2/Generator/bitmaps/Down
42
share/dotfile-2.0/Generator/fillouts.tcl
42
lib/dotfile-2.2/Generator/bitmaps/ComboBox.xbm
43
share/dotfile-2.0/Generator/extOptMenu.tcl
43
lib/dotfile-2.2/Generator/util.tcl
44
share/dotfile-2.0/Generator/export.tcl
44
lib/dotfile-2.2/Generator/update-from-1.1.tcl
45
share/dotfile-2.0/Generator/edit.tcl
45
lib/dotfile-2.2/Generator/types.tcl
46
share/dotfile-2.0/Generator/dotfile.tcl
46
lib/dotfile-2.2/Generator/system.tcl.in
47
share/dotfile-2.0/Generator/dialog.tcl
47
lib/dotfile-2.2/Generator/system.tcl
48
share/dotfile-2.0/Generator/details.tcl
48
lib/dotfile-2.2/Generator/setup.tcl
49
share/dotfile-2.0/Generator/combo.tcl
49
lib/dotfile-2.2/Generator/setPages.tcl
50
share/dotfile-2.0/Generator/color.tcl
50
lib/dotfile-2.2/Generator/save.tcl
51
share/dotfile-2.0/Generator/bytecompile.tcl
51
lib/dotfile-2.2/Generator/parse.tcl
52
share/dotfile-2.0/Generator/browser.tcl
52
lib/dotfile-2.2/Generator/menus.tcl
53
share/dotfile-2.0/Generator/Warranty
53
lib/dotfile-2.2/Generator/makeHelp.tcl
54
share/dotfile-2.0/Generator/versionUpdate.tcl
54
lib/dotfile-2.2/Generator/makeHelp
55
share/dotfile-2.0/Generator/Copying
55
lib/dotfile-2.2/Generator/mail.tcl
56
share/dotfile-2.0/Generator/util.tcl
56
lib/dotfile-2.2/Generator/load.tcl
57
share/dotfile-2.0/fvwm2/save-files/distrib.save
57
lib/dotfile-2.2/Generator/import.tcl
58
share/dotfile-2.0/fvwm2/save-files/imada.save
58
lib/dotfile-2.2/Generator/helpfile.data
59
share/dotfile-2.0/fvwm2/exports/contents
59
lib/dotfile-2.2/Generator/help.tcl
60
share/dotfile-2.0/fvwm2/exports/distrib.export
60
lib/dotfile-2.2/Generator/help.html
61
share/dotfile-2.0/fvwm2/exports/imada.export
61
lib/dotfile-2.2/Generator/generatedHelp
62
share/dotfile-2.0/fvwm2/style.template
62
lib/dotfile-2.2/Generator/generate.tcl
63
share/dotfile-2.0/fvwm2/paths.template
63
lib/dotfile-2.2/Generator/functions.tcl
64
share/dotfile-2.0/fvwm2/mouse.template
64
lib/dotfile-2.2/Generator/TODO
65
share/dotfile-2.0/fvwm2/miscellaneous.template
65
lib/dotfile-2.2/Generator/fillouts.tcl
66
share/dotfile-2.0/fvwm2/menus.template
66
lib/dotfile-2.2/Generator/extOptMenu.tcl
67
share/dotfile-2.0/fvwm2/main.template
67
lib/dotfile-2.2/Generator/export.tcl
68
share/dotfile-2.0/fvwm2/keys.template
68
lib/dotfile-2.2/Generator/edit.tcl
69
share/dotfile-2.0/fvwm2/info
69
lib/dotfile-2.2/Generator/dotfile.tcl
70
share/dotfile-2.0/fvwm2/helpfile.data
70
lib/dotfile-2.2/Generator/dialog.tcl
71
share/dotfile-2.0/fvwm2/help.html
71
lib/dotfile-2.2/Generator/details.tcl
72
share/dotfile-2.0/fvwm2/generatedHelp
72
lib/dotfile-2.2/Generator/combo.tcl
73
share/dotfile-2.0/fvwm2/fvwmrc_convert.in.44
73
lib/dotfile-2.2/Generator/color.tcl
74
share/dotfile-2.0/fvwm2/fvwmrc_convert.in
74
lib/dotfile-2.2/Generator/bytecompile.tcl
75
share/dotfile-2.0/fvwm2/fvwmrc_convert
75
lib/dotfile-2.2/Generator/browser.tcl
76
share/dotfile-2.0/fvwm2/fvwm2parser.tcl
76
lib/dotfile-2.2/Generator/Warranty
77
share/dotfile-2.0/fvwm2/functions.template
77
lib/dotfile-2.2/Generator/TAGS
78
share/dotfile-2.0/fvwm2/font.tcl
78
lib/dotfile-2.2/Generator/Copying
79
share/dotfile-2.0/fvwm2/decor.template
79
lib/dotfile-2.2/Generator/versionUpdate.tcl
80
share/dotfile-2.0/fvwm2/colorsfonts.template
80
lib/dotfile-2.2/Generator/ChangeLog
81
share/dotfile-2.0/fvwm2/buttons.template
81
lib/dotfile-2.2/fvwm2/exports/contents
82
share/dotfile-2.0/fvwm2/README
82
lib/dotfile-2.2/fvwm2/exports/distrib.export
83
share/dotfile-2.0/fvwm2/FvwmWinList.template
83
lib/dotfile-2.2/fvwm2/exports/imada.export
84
share/dotfile-2.0/fvwm2/FvwmTalk.template
84
lib/dotfile-2.2/fvwm2/save-files/distrib.save
85
share/dotfile-2.0/fvwm2/FvwmScroll.template
85
lib/dotfile-2.2/fvwm2/save-files/imada.save
86
share/dotfile-2.0/fvwm2/FvwmPager.template
86
lib/dotfile-2.2/fvwm2/bytecompile
87
share/dotfile-2.0/fvwm2/FvwmIdent.template
87
lib/dotfile-2.2/fvwm2/style.template
88
share/dotfile-2.0/fvwm2/FvwmIconMan.template
88
lib/dotfile-2.2/fvwm2/paths.template
89
share/dotfile-2.0/fvwm2/FvwmIconBox.template
89
lib/dotfile-2.2/fvwm2/patch
90
share/dotfile-2.0/fvwm2/FvwmButtons.template
90
lib/dotfile-2.2/fvwm2/mouse.template
91
share/dotfile-2.0/fvwm2/FvwmBanner.template
91
lib/dotfile-2.2/fvwm2/miscellaneous.template
92
share/dotfile-2.0/fvwm2/FvwmBacker.template
92
lib/dotfile-2.2/fvwm2/menus.template
93
share/dotfile-2.0/fvwm2/FvwmAuto.template
93
lib/dotfile-2.2/fvwm2/main.template
94
share/dotfile-2.0/fvwm2/virtual.template
94
lib/dotfile-2.2/fvwm2/keys.template
95
share/dotfile-2.0/fvwm2/FvwmAudio.template
95
lib/dotfile-2.2/fvwm2/info
96
share/dotfile-2.0/fvwm2/tools.tcl
96
lib/dotfile-2.2/fvwm2/helpfile.data
97
share/dotfile-2.0/fvwm2/bytecompile
97
lib/dotfile-2.2/fvwm2/help.html
98
share/dotfile-2.0/bash/save-files/author-export-1.save
98
lib/dotfile-2.2/fvwm2/generatedHelp
99
share/dotfile-2.0/bash/save-files/author-export-2.save
99
lib/dotfile-2.2/fvwm2/fvwmrc_convert.in.44
100
share/dotfile-2.0/bash/exports/author-export-1.export
100
lib/dotfile-2.2/fvwm2/fvwmrc_convert.in
101
share/dotfile-2.0/bash/exports/author-export-2.export
101
lib/dotfile-2.2/fvwm2/fvwmrc_convert
102
share/dotfile-2.0/bash/exports/contents
102
lib/dotfile-2.2/fvwm2/fvwm2parser.tcl
103
share/dotfile-2.0/bash/sysLimits.template
103
lib/dotfile-2.2/fvwm2/functions.template
104
share/dotfile-2.0/bash/prompting.template
104
lib/dotfile-2.2/fvwm2/font.tcl
105
share/dotfile-2.0/bash/promptWidget.template
105
lib/dotfile-2.2/fvwm2/TAGS
106
share/dotfile-2.0/bash/path.template
106
lib/dotfile-2.2/fvwm2/decor.template
107
share/dotfile-2.0/bash/main.template
107
lib/dotfile-2.2/fvwm2/colorsfonts.template
108
share/dotfile-2.0/bash/mail.template
108
lib/dotfile-2.2/fvwm2/buttons.template
109
share/dotfile-2.0/bash/logo8.gif
109
lib/dotfile-2.2/fvwm2/README
110
share/dotfile-2.0/bash/logo1.gif
110
lib/dotfile-2.2/fvwm2/FvwmWinList.template
111
share/dotfile-2.0/bash/job.template
111
lib/dotfile-2.2/fvwm2/FvwmTalk.template
112
share/dotfile-2.0/bash/info
112
lib/dotfile-2.2/fvwm2/FvwmScroll.template
113
share/dotfile-2.0/bash/helpfile.data
113
lib/dotfile-2.2/fvwm2/FvwmPager.template
114
share/dotfile-2.0/bash/help.html
114
lib/dotfile-2.2/fvwm2/FvwmIdent.template
115
share/dotfile-2.0/bash/generatedHelp
115
lib/dotfile-2.2/fvwm2/FvwmIconMan.template
116
share/dotfile-2.0/bash/fileDir.template
116
lib/dotfile-2.2/fvwm2/FvwmIconBox.template
117
share/dotfile-2.0/bash/errorHandling.template
117
lib/dotfile-2.2/fvwm2/FvwmButtons.template
118
share/dotfile-2.0/bash/completion.template
118
lib/dotfile-2.2/fvwm2/FvwmBanner.template
119
share/dotfile-2.0/bash/commLine.template
119
lib/dotfile-2.2/fvwm2/FvwmBacker.template
120
share/dotfile-2.0/bash/commHist.template
120
lib/dotfile-2.2/fvwm2/FvwmAuto.template
121
share/dotfile-2.0/bash/bindKey.template
121
lib/dotfile-2.2/fvwm2/virtual.template
122
share/dotfile-2.0/bash/alias.template
122
lib/dotfile-2.2/fvwm2/FvwmAudio.template
123
share/dotfile-2.0/bash/TODO
123
lib/dotfile-2.2/fvwm2/tools.tcl
124
share/dotfile-2.0/bash/version.template
124
lib/dotfile-2.2/bash/save-files/author-export-1.save
125
share/dotfile-2.0/bash/README
125
lib/dotfile-2.2/bash/save-files/author-export-2.save
126
share/dotfile-2.0/bash/ttyApp.template
126
lib/dotfile-2.2/bash/exports/author-export-1.export
127
share/dotfile-2.0/bash/bytecompile
127
lib/dotfile-2.2/bash/exports/author-export-2.export
128
share/dotfile-2.0/tcsh/save-files/standard.save
128
lib/dotfile-2.2/bash/exports/contents
129
share/dotfile-2.0/tcsh/save-files/complete.save
129
lib/dotfile-2.2/bash/sysLimits.template
130
share/dotfile-2.0/tcsh/exports/contents
130
lib/dotfile-2.2/bash/prompting.template
131
share/dotfile-2.0/tcsh/exports/standard.export
131
lib/dotfile-2.2/bash/promptWidget.template
132
share/dotfile-2.0/tcsh/time.template
132
lib/dotfile-2.2/bash/path.template
133
share/dotfile-2.0/tcsh/promptWidget.template
133
lib/dotfile-2.2/bash/main.template
134
share/dotfile-2.0/tcsh/prompt.template
134
lib/dotfile-2.2/bash/mail.template
135
share/dotfile-2.0/tcsh/path.template
135
lib/dotfile-2.2/bash/logo8.gif
136
share/dotfile-2.0/tcsh/misc.template
136
lib/dotfile-2.2/bash/logo1.gif
137
share/dotfile-2.0/tcsh/main.template
137
lib/dotfile-2.2/bash/job.template
138
share/dotfile-2.0/tcsh/logout.template
138
lib/dotfile-2.2/bash/info
139
share/dotfile-2.0/tcsh/limit.template
139
lib/dotfile-2.2/bash/helpfile.data
140
share/dotfile-2.0/tcsh/jobs.template
140
lib/dotfile-2.2/bash/help.html
141
share/dotfile-2.0/tcsh/info
141
lib/dotfile-2.2/bash/generatedHelp
142
share/dotfile-2.0/tcsh/history.template
142
lib/dotfile-2.2/bash/fileDir.template
143
share/dotfile-2.0/tcsh/helpfile.data
143
lib/dotfile-2.2/bash/errorHandling.template
144
share/dotfile-2.0/tcsh/help.html
144
lib/dotfile-2.2/bash/completion.template
145
share/dotfile-2.0/tcsh/generatedHelp
145
lib/dotfile-2.2/bash/commLine.template
146
share/dotfile-2.0/tcsh/files.template
146
lib/dotfile-2.2/bash/commHist.template
147
share/dotfile-2.0/tcsh/editor.template
147
lib/dotfile-2.2/bash/bindKey.template
148
share/dotfile-2.0/tcsh/dirs.template
148
lib/dotfile-2.2/bash/alias.template
149
share/dotfile-2.0/tcsh/completion_user.template
149
lib/dotfile-2.2/bash/TODO
150
share/dotfile-2.0/tcsh/completion_misc.template
150
lib/dotfile-2.2/bash/version.template
151
share/dotfile-2.0/tcsh/bindings.template
151
lib/dotfile-2.2/bash/README
152
share/dotfile-2.0/tcsh/alias.template
152
lib/dotfile-2.2/bash/ttyApp.template
153
share/dotfile-2.0/tcsh/addset.template
153
lib/dotfile-2.2/bash/bytecompile
154
share/dotfile-2.0/tcsh/watch.template
154
lib/dotfile-2.2/tcsh/exports/contents
155
share/dotfile-2.0/tcsh/TAGS
155
lib/dotfile-2.2/tcsh/exports/standard.export
156
share/dotfile-2.0/tcsh/util.tcl
156
lib/dotfile-2.2/tcsh/exports/complete.export
157
share/dotfile-2.0/tcsh/bytecompile
157
lib/dotfile-2.2/tcsh/save-files/standard.save
158
share/dotfile-2.0/emacs/local/local.template
158
lib/dotfile-2.2/tcsh/save-files/complete.save
159
share/dotfile-2.0/emacs/save-files/Emacs.save
159
lib/dotfile-2.2/tcsh/time.template
160
share/dotfile-2.0/emacs/exports/Emacs.export
160
lib/dotfile-2.2/tcsh/promptWidget.template
161
share/dotfile-2.0/emacs/exports/contents
161
lib/dotfile-2.2/tcsh/prompt.template
162
share/dotfile-2.0/emacs/saving.template
162
lib/dotfile-2.2/tcsh/path.template
163
share/dotfile-2.0/emacs/python.template
163
lib/dotfile-2.2/tcsh/misc.template
164
share/dotfile-2.0/emacs/outline-mode.template
164
lib/dotfile-2.2/tcsh/main.template
165
share/dotfile-2.0/emacs/modes-general.template
165
lib/dotfile-2.2/tcsh/logout.template
166
share/dotfile-2.0/emacs/misc.template
166
lib/dotfile-2.2/tcsh/limit.template
167
share/dotfile-2.0/emacs/main.template
167
lib/dotfile-2.2/tcsh/jobs.template
168
share/dotfile-2.0/emacs/info
168
lib/dotfile-2.2/tcsh/info
169
share/dotfile-2.0/emacs/html-helper-mode.template
169
lib/dotfile-2.2/tcsh/history.template
170
share/dotfile-2.0/emacs/hilit-mode.template
170
lib/dotfile-2.2/tcsh/helpfile.data
171
share/dotfile-2.0/emacs/helpfile.data
171
lib/dotfile-2.2/tcsh/help.html
172
share/dotfile-2.0/emacs/helper.template
172
lib/dotfile-2.2/tcsh/generatedHelp
173
share/dotfile-2.0/emacs/help.html
173
lib/dotfile-2.2/tcsh/files.template
174
share/dotfile-2.0/emacs/generatedHelp
174
lib/dotfile-2.2/tcsh/editor.template
175
share/dotfile-2.0/emacs/comint-mode.template
175
lib/dotfile-2.2/tcsh/dot.tcsh
176
share/dotfile-2.0/emacs/c-mode.template
176
lib/dotfile-2.2/tcsh/dirs.template
177
share/dotfile-2.0/emacs/abbrev.template
177
lib/dotfile-2.2/tcsh/alias.template
178
share/dotfile-2.0/emacs/TAGS
178
lib/dotfile-2.2/tcsh/completion_user.template
179
share/dotfile-2.0/emacs/HELP
179
lib/dotfile-2.2/tcsh/completion_misc.template
180
share/dotfile-2.0/emacs/util.tcl
180
lib/dotfile-2.2/tcsh/bindings.template
181
share/dotfile-2.0/emacs/ChangeLog
181
lib/dotfile-2.2/tcsh/addset.template
182
share/dotfile-2.0/emacs/terminal.template
182
lib/dotfile-2.2/tcsh/watch.template
183
share/dotfile-2.0/emacs/tcl-mode.template
183
lib/dotfile-2.2/tcsh/TCSH.NOTE
184
share/dotfile-2.0/emacs/bytecompile
184
lib/dotfile-2.2/tcsh/util.tcl
185
share/dotfile-2.0/rtin/save-files/rtin.save
185
lib/dotfile-2.2/tcsh/bytecompile
186
share/dotfile-2.0/rtin/exports/contents
186
lib/dotfile-2.2/emacs/local/local.template
187
share/dotfile-2.0/rtin/exports/rtin.export
187
lib/dotfile-2.2/emacs/save-files/Emacs.save
188
share/dotfile-2.0/rtin/helpfile.data
188
lib/dotfile-2.2/emacs/exports/Emacs.export
189
share/dotfile-2.0/rtin/main.template
189
lib/dotfile-2.2/emacs/exports/contents
190
share/dotfile-2.0/rtin/info
190
lib/dotfile-2.2/emacs/saving.template
191
share/dotfile-2.0/rtin/rtin-mod.template
191
lib/dotfile-2.2/emacs/refcard
192
share/dotfile-2.0/rtin/help.html
192
lib/dotfile-2.2/emacs/python.template
193
share/dotfile-2.0/rtin/generatedHelp
193
lib/dotfile-2.2/emacs/outline-mode.template
194
share/dotfile-2.0/rtin/rtinparser.tcl
194
lib/dotfile-2.2/emacs/modes-general.template
195
share/dotfile-2.0/rtin/bytecompile
195
lib/dotfile-2.2/emacs/misc.template
196
share/dotfile-2.0/elm/README
196
lib/dotfile-2.2/emacs/main.template
197
share/dotfile-2.0/elm/viewingcharset.template
197
lib/dotfile-2.2/emacs/info
198
share/dotfile-2.0/elm/viewer.template
198
lib/dotfile-2.2/emacs/html-helper-mode.template
199
share/dotfile-2.0/elm/version.template
199
lib/dotfile-2.2/emacs/hilit-mode.template
200
share/dotfile-2.0/elm/textencoding.template
200
lib/dotfile-2.2/emacs/helpfile.data
201
share/dotfile-2.0/elm/signature.template
201
lib/dotfile-2.2/emacs/helper.template
202
share/dotfile-2.0/elm/quoting.template
202
lib/dotfile-2.2/emacs/help.html
203
share/dotfile-2.0/elm/optionmenu.template
203
lib/dotfile-2.2/emacs/generatedHelp
204
share/dotfile-2.0/elm/navigation.template
204
lib/dotfile-2.2/emacs/comint-mode.template
205
share/dotfile-2.0/elm/main.template
205
lib/dotfile-2.2/emacs/c-mode.template
206
share/dotfile-2.0/elm/layout.template
206
lib/dotfile-2.2/emacs/abbrev.template
207
share/dotfile-2.0/elm/info
207
lib/dotfile-2.2/emacs/TAGS
208
share/dotfile-2.0/elm/generel.template
208
lib/dotfile-2.2/emacs/HELP
209
share/dotfile-2.0/elm/folderdecision.template
209
lib/dotfile-2.2/emacs/util.tcl
210
share/dotfile-2.0/elm/foldercommunication.template
210
lib/dotfile-2.2/emacs/ChangeLog
211
share/dotfile-2.0/elm/elmrc
211
lib/dotfile-2.2/emacs/terminal.template
212
share/dotfile-2.0/elm/elm-parser.tcl
212
lib/dotfile-2.2/emacs/tcl-mode.template
213
share/dotfile-2.0/elm/editor.template
213
lib/dotfile-2.2/emacs/bytecompile
214
share/dotfile-2.0/elm/editingheaders.template
214
lib/dotfile-2.2/rtin/save-files/rtin.save
215
share/dotfile-2.0/elm/behavior.template
215
lib/dotfile-2.2/rtin/exports/contents
216
share/dotfile-2.0/elm/aliasmenu.template
216
lib/dotfile-2.2/rtin/exports/rtin.export
217
share/dotfile-2.0/elm/viewingheaders.template
217
lib/dotfile-2.2/rtin/helpfile.data
218
share/dotfile-2.0/elm/bytecompile
218
lib/dotfile-2.2/rtin/main.template
219
share/dotfile-2.0/fvwm1/save-files/system.save
219
lib/dotfile-2.2/rtin/info
220
share/dotfile-2.0/fvwm1/exports/contents
220
lib/dotfile-2.2/rtin/rtin-mod.template
221
share/dotfile-2.0/fvwm1/exports/system.export
221
lib/dotfile-2.2/rtin/help.html
222
share/dotfile-2.0/fvwm1/paths.template
222
lib/dotfile-2.2/rtin/generatedHelp
223
share/dotfile-2.0/fvwm1/modes.template
223
lib/dotfile-2.2/rtin/rtinparser.tcl
224
share/dotfile-2.0/fvwm1/menus.template
224
lib/dotfile-2.2/rtin/bytecompile
225
share/dotfile-2.0/fvwm1/main.template
225
lib/dotfile-2.2/elm/README
226
share/dotfile-2.0/fvwm1/info
226
lib/dotfile-2.2/elm/viewingcharset.template
227
share/dotfile-2.0/fvwm1/fonts.template
227
lib/dotfile-2.2/elm/viewer.template
228
share/dotfile-2.0/fvwm1/colors.template
228
lib/dotfile-2.2/elm/version.template
229
share/dotfile-2.0/fvwm1/tools.tcl
229
lib/dotfile-2.2/elm/textencoding.template
230
share/dotfile-2.0/fvwm1/README
230
lib/dotfile-2.2/elm/signature.template
231
share/dotfile-2.0/fvwm1/ressources.template
231
lib/dotfile-2.2/elm/quoting.template
232
share/dotfile-2.0/fvwm1/bytecompile
232
lib/dotfile-2.2/elm/optionmenu.template
233
lib/dotfile-2.2/elm/navigation.template
234
lib/dotfile-2.2/elm/main.template
235
lib/dotfile-2.2/elm/layout.template
236
lib/dotfile-2.2/elm/info
237
lib/dotfile-2.2/elm/generel.template
238
lib/dotfile-2.2/elm/folderdecision.template
239
lib/dotfile-2.2/elm/foldercommunication.template
240
lib/dotfile-2.2/elm/elmrc
241
lib/dotfile-2.2/elm/elm-parser.tcl
242
lib/dotfile-2.2/elm/editor.template
243
lib/dotfile-2.2/elm/editingheaders.template
244
lib/dotfile-2.2/elm/behavior.template
245
lib/dotfile-2.2/elm/aliasmenu.template
246
lib/dotfile-2.2/elm/viewingheaders.template
247
lib/dotfile-2.2/elm/bytecompile
248
lib/dotfile-2.2/fvwm1/save-files/system.save
249
lib/dotfile-2.2/fvwm1/exports/contents
250
lib/dotfile-2.2/fvwm1/exports/system.export
251
lib/dotfile-2.2/fvwm1/bytecompile
252
lib/dotfile-2.2/fvwm1/ressources.template
253
lib/dotfile-2.2/fvwm1/paths.template
254
lib/dotfile-2.2/fvwm1/modes.template
255
lib/dotfile-2.2/fvwm1/menus.template
256
lib/dotfile-2.2/fvwm1/main.template
257
lib/dotfile-2.2/fvwm1/info
258
lib/dotfile-2.2/fvwm1/fonts.template
259
lib/dotfile-2.2/fvwm1/colors.template
260
lib/dotfile-2.2/fvwm1/trace
261
lib/dotfile-2.2/fvwm1/README
262
lib/dotfile-2.2/fvwm1/tools.tcl
263
lib/dotfile-2.2/procmail/exports/contents
264
lib/dotfile-2.2/procmail/exports/examples.export
265
lib/dotfile-2.2/procmail/save-files/examples.save
266
lib/dotfile-2.2/procmail/bytecompile
267
lib/dotfile-2.2/procmail/config.log
268
lib/dotfile-2.2/procmail/config.status
269
lib/dotfile-2.2/procmail/configure.in.orig
270
lib/dotfile-2.2/procmail/configure.in~
271
lib/dotfile-2.2/procmail/filter
272
lib/dotfile-2.2/procmail/logcheck
273
lib/dotfile-2.2/procmail/mkdirhier
274
lib/dotfile-2.2/procmail/system.tcl
275
lib/dotfile-2.2/procmail/system.tcl.in
276
lib/dotfile-2.2/procmail/recipes.template
277
lib/dotfile-2.2/procmail/recipes-save.template
278
lib/dotfile-2.2/procmail/mkdirhier.in
279
lib/dotfile-2.2/procmail/main.template
280
lib/dotfile-2.2/procmail/logcheck.in
281
lib/dotfile-2.2/procmail/info
282
lib/dotfile-2.2/procmail/helpfile.data
283
lib/dotfile-2.2/procmail/help.html
284
lib/dotfile-2.2/procmail/generatedHelp
285
lib/dotfile-2.2/procmail/general.template
286
lib/dotfile-2.2/procmail/filter.in
287
lib/dotfile-2.2/procmail/files.template
288
lib/dotfile-2.2/procmail/configure.orig
289
lib/dotfile-2.2/procmail/TODO
290
lib/dotfile-2.2/procmail/configure.in
291
lib/dotfile-2.2/procmail/configure
292
lib/dotfile-2.2/procmail/backup.template
293
lib/dotfile-2.2/procmail/TDG-advertisment
294
lib/dotfile-2.2/procmail/util.tcl
295
lib/dotfile-2.2/procmail/Makefile
296
lib/dotfile-2.2/ipfwadm/allowhost.template
297
lib/dotfile-2.2/ipfwadm/masq.template
298
lib/dotfile-2.2/ipfwadm/main.template
299
lib/dotfile-2.2/ipfwadm/isp.template
300
lib/dotfile-2.2/ipfwadm/info
301
lib/dotfile-2.2/ipfwadm/general.template
302
lib/dotfile-2.2/ipfwadm/denyserviceglobal.template
303
lib/dotfile-2.2/ipfwadm/denyptp.template
304
lib/dotfile-2.2/ipfwadm/denylocalhost.template
305
lib/dotfile-2.2/ipfwadm/denyhost.template
306
lib/dotfile-2.2/ipfwadm/defaultinetpolicy.template
307
lib/dotfile-2.2/ipfwadm/allowserviceglobal.template
308
lib/dotfile-2.2/ipfwadm/allowptp.template
309
lib/dotfile-2.2/ipfwadm/allowlocalhost.template
310
lib/dotfile-2.2/ipfwadm/md5sums.asc
311
lib/dotfile-2.2/ipfwadm/bytecompile
312
@dirrm lib/dotfile-2.2/ipfwadm
313
@dirrm lib/dotfile-2.2/procmail/exports
314
@dirrm lib/dotfile-2.2/procmail/save-files
315
@dirrm lib/dotfile-2.2/procmail
316
@dirrm lib/dotfile-2.2/fvwm1/exports
317
@dirrm lib/dotfile-2.2/fvwm1/save-files
318
@dirrm lib/dotfile-2.2/fvwm1
319
@dirrm lib/dotfile-2.2/fvwm2/exports
320
@dirrm lib/dotfile-2.2/fvwm2/save-files
321
@dirrm lib/dotfile-2.2/fvwm2
322
@dirrm lib/dotfile-2.2/elm
323
@dirrm lib/dotfile-2.2/rtin/exports
324
@dirrm lib/dotfile-2.2/rtin/save-files
325
@dirrm lib/dotfile-2.2/rtin
326
@dirrm lib/dotfile-2.2/emacs/save-files
327
@dirrm lib/dotfile-2.2/emacs/local
328
@dirrm lib/dotfile-2.2/emacs/exports
329
@dirrm lib/dotfile-2.2/emacs
330
@dirrm lib/dotfile-2.2/tcsh/exports
331
@dirrm lib/dotfile-2.2/tcsh/save-files
332
@dirrm lib/dotfile-2.2/tcsh
333
@dirrm lib/dotfile-2.2/bash/exports
334
@dirrm lib/dotfile-2.2/bash/save-files
335
@dirrm lib/dotfile-2.2/bash
336
@dirrm lib/dotfile-2.2/Generator/bitmaps
337
@dirrm lib/dotfile-2.2/Generator
338
@dirrm share/doc/dotfile-2.2/procmail
339
@dirrm share/doc/dotfile-2.2/tcsh
340
@dirrm share/doc/dotfile-2.2/dotfile
341
@dirrm share/doc/dotfile-2.2
342
@dirrm lib/dotfile-2.2

Return to bug 5820